summaryrefslogtreecommitdiffstats
path: root/edify/expr.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-10-04 03:06:46 +0200
committerTao Bao <tbao@google.com>2016-10-04 23:24:32 +0200
commit59dcb9cbea8fb70ab933fd10d35582b08cd13f37 (patch)
tree64a8c1e78aa282460aebf39d3f4147d00ffa0fcc /edify/expr.h
parentMerge "recovery: drop log/logger.h" (diff)
downloadandroid_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar.gz
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar.bz2
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar.lz
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar.xz
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.tar.zst
android_bootable_recovery-59dcb9cbea8fb70ab933fd10d35582b08cd13f37.zip
Diffstat (limited to '')
-rw-r--r--edify/expr.h22
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