7c7b4ca9ea7d74dba5f0b766d30294638d66a34f
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_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    widget_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_WIDGET_UNZIP_H
23 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_WIDGET_UNZIP_H
24
25 #include <string>
26 #include <memory>
27
28 #include <dpl/zip_input.h>
29
30 class InstallerContext;
31
32 namespace Jobs {
33 namespace WidgetInstall {
34 class WidgetUnzip 
35 {
36   private:
37     // Installation context
38     std::string m_source;
39     std::string m_destPath;
40
41     // Unzip state
42     std::unique_ptr<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     void UnzipPrepare();
49     void UnzipProgress();
50
51   public:
52     WidgetUnzip(std::string m_source, std::string m_destPath);
53     void UnzipWidget();
54     void UnzipDRMWidget();
55 };
56 } //namespace WidgetInstall
57 } //namespace Jobs
58
59 #endif // INSTALLER_CORE_JOS_WIDGET_INSTALL_WIDGET_UNZIP_H