e1e9235b02ad0eaa131559b07eaf0f3d0922e3d0
[framework/web/wrt-installer.git] / src_mobile / jobs / widget_install / task_pkg_info_update.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file       task_pkg_info_update.h
18  * @author     soyoung kim (sy037.kim@samsung.com)
19  * @version    1.0
20  */
21
22 #ifndef SRC_JOBS_WIDGET_INSTALL_TASK_PKG_INFO_UPDATE_H_
23 #define SRC_JOBS_WIDGET_INSTALL_TASK_PKG_INFO_UPDATE_H_
24
25 #include <dpl/task.h>
26 #include <string>
27 #include <pkgmgr_installer.h>
28
29 class InstallerContext;
30
31 namespace Jobs {
32 namespace WidgetInstall {
33 class TaskPkgInfoUpdate : public DPL::TaskDecl<TaskPkgInfoUpdate>
34 {
35   private:
36     // Installation context
37     InstallerContext &m_context;
38
39     void StepPkgInfo();
40     void StepSetCertiInfo();
41     void SetCertiInfo(int source);
42     void StepSetEndofInstallation();
43
44     void stepAbortParseManifest();
45     void StepAbortCertiInfo();
46
47     void StartStep();
48     void EndStep();
49
50     pkgmgr_instcertinfo_h m_pkgHandle;
51     std::string m_manifest;
52
53   public:
54     explicit TaskPkgInfoUpdate(InstallerContext &installerContext);
55 };
56 } // namespace WidgetInstall
57 } // namespace Jobs
58 #endif /* SRC_JOBS_WIDGET_INSTALL_TASK_PKG_INFO_UPDATE_H_ */