diff options
author | Tao Bao <tbao@google.com> | 2016-10-05 08:16:22 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-10-05 08:16:22 +0200 |
commit | e68d829f74504046f40015aa8d768ab72644d21f (patch) | |
tree | bf579ed887938e33abc935e07712480ac6700ccc /edify/expr.h | |
parent | Merge "recovery: drop log/logger.h" am: 38b923ff6c (diff) | |
parent | Merge "edify: Move State.script and State.errmsg to std::string." (diff) | |
download | android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar.gz android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar.bz2 android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar.lz android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar.xz android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.tar.zst android_bootable_recovery-e68d829f74504046f40015aa8d768ab72644d21f.zip |
Diffstat (limited to '')
-rw-r--r-- | edify/expr.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/edify/expr.h b/edify/expr.h index 886347991..f045d9386 100644 --- a/edify/expr.h +++ b/edify/expr.h @@ -18,6 +18,7 @@ #define _EXPRESSION_H #include <unistd.h> +#include <string> #include "error_code.h" #include "yydefs.h" @@ -26,20 +27,20 @@ typedef struct Expr Expr; -typedef struct { +struct State { + State(const std::string& script, void* cookie); + + // The source of the original script. + const std::string& script; + // Optional pointer to app-specific data; the core of edify never // uses this value. void* cookie; - // The source of the original script. Must be NULL-terminated, - // and in writable memory (Evaluate may make temporary changes to - // it but will restore it when done). - char* script; - // The error message (if any) returned if the evaluation aborts. - // Should be NULL initially, will be either NULL or a malloc'd - // pointer after Evaluate() returns. - char* errmsg; + // Should be empty initially, will be either empty or a string that + // Evaluate() returns. + std::string errmsg; // error code indicates the type of failure (e.g. failure to update system image) // during the OTA process. @@ -50,8 +51,7 @@ typedef struct { CauseCode cause_code = kNoCause; bool is_retry = false; - -} State; +}; #define VAL_STRING 1 // data will be NULL-terminated; size doesn't count null #define VAL_BLOB 2 |