From 27556d089f8496c2acb72182ce7add94938eb749 Mon Sep 17 00:00:00 2001 From: Tianjie Xu Date: Wed, 22 May 2019 14:48:35 -0700 Subject: Some clean ups to the updater Remove some unnecessary includes or forward declarations. And include the correct headers to build host executables. Bug: 131911365 Test: unit tests pass Change-Id: I62e75f60678159fe24619a4bd386b1416f1a5b5d --- tests/unit/updater_test.cpp | 4 +++- updater/blockimg.cpp | 12 ++++++++---- updater/include/updater/updater.h | 4 ---- updater/include/updater/updater_runtime.h | 1 - updater/install.cpp | 5 ++++- updater/updater.cpp | 4 +--- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/tests/unit/updater_test.cpp b/tests/unit/updater_test.cpp index 81229f50a..8993dd8b7 100644 --- a/tests/unit/updater_test.cpp +++ b/tests/unit/updater_test.cpp @@ -85,7 +85,7 @@ static void expect(const char* expected, const std::string& expr_str, CauseCode } static void expect(const char* expected, const std::string& expr_str, CauseCode cause_code) { - Updater updater; + Updater updater(std::make_unique(nullptr)); expect(expected, expr_str, cause_code, &updater); } @@ -133,6 +133,8 @@ static Value* BlobToString(const char* name, State* state, class UpdaterTestBase { protected: + UpdaterTestBase() : updater_(std::make_unique(nullptr)) {} + void SetUp() { RegisterBuiltins(); RegisterInstallFunctions(); diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 55218b023..2d41f610b 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -49,7 +49,6 @@ #include #include #include -#include #include #include @@ -63,10 +62,15 @@ #include "private/commands.h" #include "updater/install.h" -// Set this to 0 to interpret 'erase' transfers to mean do a -// BLKDISCARD ioctl (the normal behavior). Set to 1 to interpret -// erase to mean fill the region with zeroes. +#ifdef __ANDROID__ +#include +// Set this to 0 to interpret 'erase' transfers to mean do a BLKDISCARD ioctl (the normal behavior). +// Set to 1 to interpret erase to mean fill the region with zeroes. #define DEBUG_ERASE 0 +#else +#define DEBUG_ERASE 1 +#define AID_SYSTEM -1 +#endif // __ANDROID__ static constexpr size_t BLOCKSIZE = 4096; static constexpr mode_t STASH_DIRECTORY_MODE = 0700; diff --git a/updater/include/updater/updater.h b/updater/include/updater/updater.h index 7bbecbc57..08816bf36 100644 --- a/updater/include/updater/updater.h +++ b/updater/include/updater/updater.h @@ -30,15 +30,11 @@ #include "otautil/error_code.h" #include "otautil/sysutil.h" -class UpdaterRuntime; - class Updater : public UpdaterInterface { public: explicit Updater(std::unique_ptr run_time) : runtime_(std::move(run_time)) {} - Updater(); - ~Updater() override; // Memory-maps the OTA package and opens it as a zip file. Also sets up the command pipe and diff --git a/updater/include/updater/updater_runtime.h b/updater/include/updater/updater_runtime.h index 6cd0ffb48..e97eb49b1 100644 --- a/updater/include/updater/updater_runtime.h +++ b/updater/include/updater/updater_runtime.h @@ -25,7 +25,6 @@ #include "edify/updater_runtime_interface.h" struct selabel_handle; -struct Partition; class UpdaterRuntime : public UpdaterRuntimeInterface { public: diff --git a/updater/install.cpp b/updater/install.cpp index 6b15eaa3a..c82351ec4 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -53,7 +53,6 @@ #include #include #include -#include #include #include "edify/expr.h" @@ -65,6 +64,10 @@ #include "otautil/print_sha1.h" #include "otautil/sysutil.h" +#ifndef __ANDROID__ +#include // for strlcpy +#endif + static bool UpdateBlockDeviceNameForPartition(UpdaterInterface* updater, Partition* partition) { CHECK(updater); std::string name = updater->FindBlockDeviceName(partition->name); diff --git a/updater/updater.cpp b/updater/updater.cpp index dbfa2f426..426c6dce0 100644 --- a/updater/updater.cpp +++ b/updater/updater.cpp @@ -24,9 +24,7 @@ #include #include -#include "updater/updater_runtime.h" - -Updater::Updater() : Updater(std::make_unique(nullptr)) {} +#include "edify/updater_runtime_interface.h" Updater::~Updater() { if (package_handle_) { -- cgit v1.2.3