summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Shields <simon@lineageos.org>2018-08-08 17:17:21 +0200
committerlambdadroid <lambdadroid@gmail.com>2018-10-11 18:11:26 +0200
commit2e9747f5b2043f7cde3938228547eaf031cb214c (patch)
treea08710d7a6da6a6fe83f96f05f3b8ae9332f35ec
parentFix header file for property_get (diff)
downloadandroid_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar.gz
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar.bz2
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar.lz
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar.xz
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.tar.zst
android_bootable_recovery-2e9747f5b2043f7cde3938228547eaf031cb214c.zip
-rw-r--r--updater/install.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index 741d97014..2266127f2 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -97,6 +97,34 @@ static void uiPrint(State* state, const std::string& buffer) {
LOG(INFO) << buffer;
}
+static bool is_dir(const std::string& dirpath) {
+ struct stat st;
+ return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
+}
+
+// Create all parent directories of name, if necessary.
+static bool make_parents(const std::string& name) {
+ size_t prev_end = 0;
+ while (prev_end < name.size()) {
+ size_t next_end = name.find('/', prev_end + 1);
+ if (next_end == std::string::npos) {
+ break;
+ }
+ std::string dir_path = name.substr(0, next_end);
+ if (!is_dir(dir_path)) {
+ int result = mkdir(dir_path.c_str(), 0700);
+ if (result != 0) {
+ PLOG(ERROR) << "failed to mkdir " << dir_path << " when make parents for " << name;
+ return false;
+ }
+
+ LOG(INFO) << "created [" << dir_path << "]";
+ }
+ prev_end = next_end;
+ }
+ return true;
+}
+
void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
std::string error_msg;