From: Sangyoon Jang Date: Wed, 15 Jul 2020 07:15:26 +0000 (+0900) Subject: Fix logging installation history X-Git-Tag: submit/tizen/20200717.052111~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9faa337126507fd02bb285cdf5d02ab60ac27d38;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Fix logging installation history Add additional log when starting installation process. Change-Id: I29aa5ea082756851d1858c9caf132bee55a02e5b Signed-off-by: Sangyoon Jang --- diff --git a/src/common/installer/app_installer.cc b/src/common/installer/app_installer.cc index c3fcd078..e5636fb5 100644 --- a/src/common/installer/app_installer.cc +++ b/src/common/installer/app_installer.cc @@ -219,7 +219,18 @@ AppInstaller::Result AppInstaller::Run() { return result_; } -void AppInstaller::LogHistory(bool success) { +void AppInstaller::LogHistoryStart() { + std::shared_ptr history_logger = + std::shared_ptr(new utils::FileLogBackend( + kHistoryFileName, kLogRotationSize, kLogMaximumRotation)); + std::string history = "pkgid:" + context_->pkgid.get() + "|mode:" + + GetRequestTypeString(context_->request_type.get()); + history += "|START"; + history_logger->WriteLog(::utils::LogLevel::LOG_INFO, "", history); + history_logger->WriteLogToFile(); +} + +void AppInstaller::LogHistoryEnd(bool success) { std::shared_ptr history_logger = std::shared_ptr(new utils::FileLogBackend( kHistoryFileName, kLogRotationSize, kLogMaximumRotation)); @@ -283,7 +294,7 @@ AppInstaller::Result AppInstaller::Undo() { status_ = Step::Status::ERROR; SendFinished(status_); - LogHistory(false); + LogHistoryEnd(false); return result_; } @@ -308,7 +319,7 @@ AppInstaller::Result AppInstaller::Clean() { } while (it_-- != steps_.begin()); sync(); - LogHistory(true); + LogHistoryEnd(true); return result_; } @@ -835,6 +846,8 @@ bool AppInstaller::SendStartIfNotSent() { pi_->SetRequestType(context_->request_type.get()); pi_->SendStarted(context_->pkg_type.get(), context_->pkgid.get()); + LogHistoryStart(); + return true; } diff --git a/src/common/installer/app_installer.h b/src/common/installer/app_installer.h index ce225de4..8996fb8c 100644 --- a/src/common/installer/app_installer.h +++ b/src/common/installer/app_installer.h @@ -302,7 +302,8 @@ class AppInstaller { std::shared_ptr failure_logger_; Step::Status status_; Result result_; - void LogHistory(bool success); + void LogHistoryStart(); + void LogHistoryEnd(bool success); int index_;