tizen beta release
[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
30 class InstallerContext;
31
32 namespace Jobs {
33 namespace WidgetInstall {
34 class TaskUnzip :
35     public DPL::TaskDecl<TaskUnzip>
36 {
37   private:
38     // Installation context
39     InstallerContext &m_installerContext;
40
41     // Unzip state
42     DPL::ScopedPtr<DPL::ZipInput> m_zip;
43     DPL::ZipInput::const_iterator m_zipIterator;
44
45     void ExtractFile(DPL::ZipInput::File *input,
46             const std::string &destFileName);
47
48     // Steps
49     void StepCreateTempPath();
50
51     void StepUnzipPrepare();
52     void StepUnzipProgress();
53     void StepUnzipFinished();
54     void StepAbort();
55
56   public:
57     TaskUnzip(InstallerContext &installerContext);
58 };
59 } //namespace WidgetInstall
60 } //namespace Jobs
61
62 #endif // INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H