[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_delete_certificates.cpp
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_delete_certificates.cpp
18  * @author  Leerang Song(leerang.song@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for uninstaller delete certi info from pkgmgr
21  */
22
23 #include <widget_uninstall/task_delete_certificates.h>
24 #include <widget_uninstall/job_widget_uninstall.h>
25 #include <widget_uninstall/widget_uninstall_errors.h>
26 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
27 #include <pkgmgr_installer.h>
28 #include <dpl/assert.h>
29
30 namespace Jobs {
31 namespace WidgetUninstall {
32 TaskDeleteCertificates::TaskDeleteCertificates(
33     UninstallerContext& context) :
34     DPL::TaskDecl<TaskDeleteCertificates>(this),
35     m_context(context)
36 {
37     AddStep(&TaskDeleteCertificates::StartStep);
38     AddStep(&TaskDeleteCertificates::StepDeleteCertificates);
39     AddStep(&TaskDeleteCertificates::EndStep);
40 }
41
42 TaskDeleteCertificates::~TaskDeleteCertificates()
43 {}
44
45 void TaskDeleteCertificates::StepDeleteCertificates()
46 {
47     if ((pkgmgr_installer_delete_certinfo(
48              const_cast<char*>((m_context.tzAppid).c_str()))) < 0)
49     {
50         LogError("pkgmgr_installer_delete_certinfo fail");
51     }
52 }
53
54 void TaskDeleteCertificates::StartStep()
55 {
56     LogDebug("--------- <TaskDeleteCertificates> : START ----------");
57 }
58
59 void TaskDeleteCertificates::EndStep()
60 {
61     LogDebug("--------- <TaskDeleteCertificates> : END ----------");
62 }
63 } //namespace WidgetUninstall
64 } //namespace Jobs