9cb8339805c678372aec39eb2dd0e3d42bc31064
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_unzip.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_unzip.cpp
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer task unzip
21  */
22 #ifndef INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H
23 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H
24
25 #include <dpl/zip_input.h>
26 #include <dpl/scoped_ptr.h>
27 #include <dpl/task.h>
28 #include <string>
29 #include <dpl/encryption/resource_encryption.h>
30
31 class InstallerContext;
32
33 namespace Jobs {
34 namespace WidgetInstall {
35 class TaskUnzip :
36     public DPL::TaskDecl<TaskUnzip>
37 {
38   private:
39     // Installation context
40     InstallerContext &m_installerContext;
41
42     // Unzip state
43     DPL::ScopedPtr<DPL::ZipInput> m_zip;
44     DPL::ZipInput::const_iterator m_zipIterator;
45
46     WRTEncryptor::ResourceEncryptor *m_resEnc;
47
48     void ExtractFile(DPL::ZipInput::File *input,
49             const std::string &destFileName);
50
51     void EncryptionFile(const std::string &fileName);
52
53     // Steps
54     void StepCreateTempPath();
55
56     void StepUnzipPrepare();
57     void StepUnzipProgress();
58     void StepUnzipFinished();
59     void StepAbort();
60
61   public:
62     TaskUnzip(InstallerContext &installerContext);
63 };
64 } //namespace WidgetInstall
65 } //namespace Jobs
66
67 #endif // INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H