Fix the behavior sending the signal 09/240509/1
authorIlho Kim <ilho159.kim@samsung.com>
Fri, 7 Aug 2020 03:52:01 +0000 (12:52 +0900)
committerIlho Kim <ilho159.kim@samsung.com>
Fri, 7 Aug 2020 03:55:56 +0000 (12:55 +0900)
If the installer failed to parse package's id
installer should send start signal with empty pkgid

Change-Id: I861c4b3b723035e75d364f11e899228f8a3d7bc0
Signed-off-by: Ilho Kim <ilho159.kim@samsung.com>
src/common/installer/app_installer.cc
src/common/installer/app_installer.h

index a8d0b6b8de3d5c4764d4b8197ee039ecae38b7da..cf6e88f32d16854713e6b52aaedbe288c25dda1d 100644 (file)
@@ -833,12 +833,12 @@ void AppInstaller::HandleStepError(Step::Status result,
                  context_->pkgid.get());
 }
 
-bool AppInstaller::SendStartIfNotSent() {
+bool AppInstaller::SendStartIfNotSent(bool is_skippable) {
   if (!pi_)
     return false;
 
-  if (pi_->state() != PkgmgrSignal::State::NOT_SENT ||
-      context_->pkgid.get().empty())
+  if ((pi_->state() != PkgmgrSignal::State::NOT_SENT ||
+      context_->pkgid.get().empty()) && is_skippable)
     return true;
 
   // set request type before sending start signal
@@ -852,7 +852,7 @@ bool AppInstaller::SendStartIfNotSent() {
 
 void AppInstaller::SendProgress(int progress) {
   // send START signal as soon as possible if not sent
-  if (!SendStartIfNotSent())
+  if (!SendStartIfNotSent(true))
     return;
 
   // send installation progress
@@ -861,7 +861,7 @@ void AppInstaller::SendProgress(int progress) {
 }
 
 void AppInstaller::SendFinished(Step::Status process_status) {
-  if (!SendStartIfNotSent())
+  if (!SendStartIfNotSent(false))
     return;
 
   pi_->SendFinished(process_status,
index 8996fb8c55643b80cbd90258cef2f1686c381470..b0e917d8c666363ef68675661c62f7813160e601 100644 (file)
@@ -291,7 +291,7 @@ class AppInstaller {
   // data used to send signal
   std::unique_ptr<PkgmgrSignal> pi_;
 
-  bool SendStartIfNotSent();
+  bool SendStartIfNotSent(bool is_skippable);
   void SendProgress(int progress);
   void SendFinished(Step::Status status);
   Step::Status SafeExecute(std::unique_ptr<Step> const& step_ptr,