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
void AppInstaller::SendProgress(int progress) {
// send START signal as soon as possible if not sent
- if (!SendStartIfNotSent())
+ if (!SendStartIfNotSent(true))
return;
// send installation progress
}
void AppInstaller::SendFinished(Step::Status process_status) {
- if (!SendStartIfNotSent())
+ if (!SendStartIfNotSent(false))
return;
pi_->SendFinished(process_status,
// 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,