- Fix some minor coding rule.
- Fix storage requirement calculation logic to reduce unnecessary if statement.
- Remove unnecessary dlerror() call.
- Integrate some if statements.
- Remove implementation of undo function info header.
- Apply return early pattern.
- Remove unnecessary constructor implementation.
Change-Id: Iffddaa6fe5e0803883393174cf9805ceeb5802af
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
LOG(WARNING) << "Cannot open handle: " << dlerror();
return;
}
- dlerror();
}
App2ExtDynamicService::~App2ExtDynamicService() {
}
std::shared_ptr<app2ext_handle> App2ExtDynamicService::getInterfaceHandle() {
- if (app2ext_handler)
- return app2ext_handler;
- if (ProperlyLoaded()) {
+ if (!app2ext_handler && ProperlyLoaded()) {
app2ext_handler = std::shared_ptr<app2ext_handle>(InitLibrary(),
std::bind(&App2ExtDynamicService::DeinitLibrary,
this, std::placeholders::_1));
- if (!app2ext_handler) {
+ if (!app2ext_handler)
LOG(ERROR) "app2ext_init() failed.";
- }
}
return app2ext_handler;
}
uid_(uid),
move_type_(-1),
handle_(nullptr) {
- if (package_type_ == kWgtType) {
+ if (package_type_ == kWgtType)
external_dirs_.push_back(kExternalDirForWgt);
- } else {
+ else
external_dirs_ = kExternalDirsForTpk;
- }
}
ExternalStorage::ExternalStorage(RequestType type,
application_root_(application_root),
uid_(uid),
handle_(nullptr) {
- if (package_type_ == kWgtType) {
+ if (package_type_ == kWgtType)
external_dirs_.push_back(kExternalDirForWgt);
- } else {
+ else
external_dirs_ = kExternalDirsForTpk;
- }
+
if (is_external_move)
move_type_ = APP2EXT_MOVE_TO_EXT;
else
}
} else {
// for wgt whole content of package goes to res/
- external_size =
+ external_size +=
SizeInMB(GetDirectorySize(space_requirement));
}
}
- if (external_size == 0)
- external_size = 1;
-
handle_ = service.getInterfaceHandle();
if (!handle_) {
LOG(ERROR) << "app2ext_init() failed";
continue;
for (application_x* app : GListRange<application_x*>(
context_->old_manifest_data.get()->application)) {
- if (app->icon) {
- bf::path filename = iter->path().filename();
- filename.replace_extension();
- std::string id = filename.string();
- if (id == app->appid) {
- bf::path icon_backup = GetBackupPathForIconFile(iter->path());
- icons_.emplace_back(iter->path(), icon_backup);
- }
+ if (!app->icon)
+ continue;
+ bf::path filename = iter->path().filename();
+ filename.replace_extension();
+ std::string id = filename.string();
+ if (id == app->appid) {
+ bf::path icon_backup = GetBackupPathForIconFile(iter->path());
+ icons_.emplace_back(iter->path(), icon_backup);
}
}
}
return Status::OK;
}
-common_installer::Step::Status StepCopyStorageDirectories::undo() {
- return Status::OK;
-}
-
bool StepCopyStorageDirectories::CacheDir() {
bs::error_code error_code;
bf::path cache_path = context_->GetPkgPath() / kCache;
*/
Status process() override;
Status clean() override { return Status::OK; }
-
- /**
- * \brief restores original content of data and shared dirs
- *
- * \return Status::OK if success, Status::ERROR otherwise
- */
- Status undo() override;
+ Status undo() override { return Status::OK; }
/**
* \brief checks if needed paths/data are provided
namespace filesystem {
Step::Status StepCreateIcons::undo() {
- for (auto& icon : icons_) {
+ for (auto& icon : icons_)
RemoveAll(icon);
- }
+
return Status::OK;
}
GListRange<application_x*>(context_->manifest_data.get()->application)) {
// TODO(t.iwanek): this ignores icon locale as well in same way as other
// steps -> icons should be localized
- if (app->icon) {
- icon_x* icon = reinterpret_cast<icon_x*>(app->icon->data);
- bf::path source(icon->text);
- if (bf::exists(source)) {
- bf::path destination_path = destination / app->appid;
- if (source.has_extension())
- destination_path += source.extension();
- else
- destination_path += ".png";
- bf::copy_file(source, destination_path,
- bf::copy_option::overwrite_if_exists, error);
- if (error) {
- LOG(ERROR) << "Cannot create package icon: " << destination_path
- << " , error: " << error;
- return Status::ICON_ERROR;
- }
- icons_.push_back(destination_path);
- }
+ if (!app->icon)
+ continue;
+
+ icon_x* icon = reinterpret_cast<icon_x*>(app->icon->data);
+ bf::path source(icon->text);
+ if (!bf::exists(source))
+ continue;
+
+ bf::path destination_path = destination / app->appid;
+ if (source.has_extension())
+ destination_path += source.extension();
+ else
+ destination_path += ".png";
+ bf::copy_file(source, destination_path,
+ bf::copy_option::overwrite_if_exists, error);
+ if (error) {
+ LOG(ERROR) << "Cannot create package icon: " << destination_path
+ << " , error: " << error;
+ return Status::ICON_ERROR;
}
+ icons_.push_back(destination_path);
}
LOG(DEBUG) << "Icon files created";
return Status::OK;
}
Step::Status StepOptionalAcquireExternalStorage::process() {
- Storage storage = Storage::INTERNAL;
-
PkgQueryInterface pkg_query(context_->pkgid.get(), context_->uid.get());
std::string storage_str = pkg_query.StorageForPkgId();
- if (!strcmp(storage_str.c_str(), kInstalledExternally))
- storage = Storage::EXTERNAL;
- else
- storage = Storage::INTERNAL;
-
- if (storage == Storage::EXTERNAL)
- context_->external_storage =
- ExternalStorage::AcquireExternalStorage(context_->request_type.get(),
- context_->root_application_path.get(),
- context_->pkgid.get(),
- context_->pkg_type.get(),
- context_->unpacked_dir_path.get(),
- context_->uid.get());
-
- if (storage == Storage::EXTERNAL && !context_->external_storage)
+
+ if (strcmp(storage_str.c_str(), kInstalledExternally))
+ return Status::OK;
+
+ context_->external_storage =
+ ExternalStorage::AcquireExternalStorage(context_->request_type.get(),
+ context_->root_application_path.get(),
+ context_->pkgid.get(),
+ context_->pkg_type.get(),
+ context_->unpacked_dir_path.get(),
+ context_->uid.get());
+
+ if (!context_->external_storage)
LOG(WARNING) << "Cannot initialize external storage "
<< "for uninstalled package";
Step::Status StepRemoveFiles::process() {
// Use RootAppPath + Pkgid because of ReadonlyUpdateUninstall
- bf::path pkg_path =
- context_->root_application_path.get() / context_->pkgid.get();
+ bf::path pkg_path = context_->GetPkgPath();
// We need to unmount external storage before removing package directory
// because mount point is inside
}
Step::Status StepUpdatePkgDisableInfo::undo() {
- if (action_type_ == ActionType::Disable) {
+ if (action_type_ == ActionType::Disable) {
if (!EnablePkgInPkgmgr(context_->pkgid.get(), context_->uid.get(),
context_->request_mode.get())) {
LOG(ERROR) << "Failed to update pkg info to enable : "
} // namespace
-StepRevokeTrustAnchor::StepRevokeTrustAnchor(InstallerContext* context)
- : Step(context) {
-}
-
Step::Status StepRevokeTrustAnchor::undo() {
manifest_x* manifest = context_->old_manifest_data.get();
if (!manifest) {
UPDATE // Update trust anchor with existing package
};
- explicit StepRevokeTrustAnchor(common_installer::InstallerContext* context);
-
using Step::Step;
Status process() override { return Status::OK; }