Installation mode and request mode - naming cleanup 81/57881/1
authorTomasz Iwanek <t.iwanek@samsung.com>
Mon, 25 Jan 2016 15:06:31 +0000 (16:06 +0100)
committerTomasz Iwanek <t.iwanek@samsung.com>
Mon, 25 Jan 2016 15:06:37 +0000 (16:06 +0100)
Installation mode:
 - online,
 - offline.

Request mode (type of pkgmgr request):
 - install,
 - update,
 - uninstall,
 - ...

Change-Id: I610062f136c5b7442a7f87be7b556d6848129a1a

src/common/step/step_configure.cc
src/common/step/step_parse_manifest.h
src/common/step/step_recovery.h

index ee45cd4..313f6b8 100644 (file)
@@ -97,7 +97,7 @@ Step::Status StepConfigure::process() {
       break;
   }
 
-  // Record recovery file for update and installation modes
+  // Record recovery file for update and request modes
   if (pkgmgr_->GetRequestType() == RequestType::Install ||
       pkgmgr_->GetRequestType() == RequestType::Update) {
     std::unique_ptr<recovery::RecoveryFile> recovery_file =
@@ -128,7 +128,7 @@ Step::Status StepConfigure::precheck() {
     }
   } else {
     LOG(INFO) << "Allowing installation from root user for"
-                 "manifest direct installation mode.";
+                 "manifest direct request mode.";
   }
   return Status::OK;
 }
index 749a3a0..4a8dfb7 100644 (file)
@@ -31,7 +31,7 @@ namespace parse {
  *  - where to look for manifest file
  *  - where to store information from manifest in context structure
  *
- * Different installation mode will choose different ManifestLocation and
+ * Different request mode will choose different ManifestLocation and
  * StoreLocation for its purpose but main goal of this step parsing tpk
  * manifest doesn't change.
  */
index 678472f..b6ee696 100644 (file)
@@ -16,7 +16,7 @@ namespace recovery {
  * @brief The StepRecovery class
  *
  * Common base of all steps that performs recovery. Recover is supported for
- * new and update installation modes. Each step that performs recovery needs
+ * new and update request modes. Each step that performs recovery needs
  * to override methods:
  *  - RecoveryNew(),
  *  - RecoveryUpdate(),