summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-07-29 23:21:49 +0200
committerTianjie Xu <xunchang@google.com>2019-08-15 22:40:16 +0200
commitb63a2215b5e3fc9c7254aa783c7857ede79e6f4e (patch)
treed3f55900426e7a80991070abd0fdc9f7f33d6e58 /common.h
parentMerge "bootloader_message: Remove global std::string" (diff)
downloadandroid_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar.gz
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar.bz2
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar.lz
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar.xz
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.tar.zst
android_bootable_recovery-b63a2215b5e3fc9c7254aa783c7857ede79e6f4e.zip
Diffstat (limited to '')
-rw-r--r--otautil/include/otautil/boot_state.h (renamed from common.h)21
1 files changed, 16 insertions, 5 deletions
diff --git a/common.h b/otautil/include/otautil/boot_state.h
index 128a69d9b..6c877baef 100644
--- a/common.h
+++ b/otautil/include/otautil/boot_state.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2007 The Android Open Source Project
+ * Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,9 +17,20 @@
#pragma once
#include <string>
+#include <string_view>
-// The current stage, e.g. "1/2".
-extern std::string stage;
+class BootState {
+ public:
+ BootState(std::string_view reason, std::string_view stage) : reason_(reason), stage_(stage) {}
-// The reason argument provided in "--reason=".
-extern const char* reason;
+ std::string reason() const {
+ return reason_;
+ }
+ std::string stage() const {
+ return stage_;
+ }
+
+ private:
+ std::string reason_; // The reason argument provided in "--reason=".
+ std::string stage_; // The current stage, e.g. "1/2".
+};