25e12931aec3a712b708f1351dd10ef0a0c557bc
[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 WIDGET_UNZIP_H
23 #define WIDGET_UNZIP_H
24
25 #include <string>
26
27 #include <dpl/zip_input.h>
28
29 namespace Jobs {
30 namespace WidgetInstall {
31 class WidgetUnzip 
32 {
33   public:
34       void unzipWgtFile(const std::string &source, const std::string &destination);
35
36   private:
37     // Unzip state
38     std::unique_ptr<DPL::ZipInput> m_zip;
39     DPL::ZipInput::const_iterator m_zipIterator;
40
41     void unzipProgress(const std::string &destination);
42     void ExtractFile(DPL::ZipInput::File *input, const std::string
43             &destFileName);
44     bool isDRMPackage(const std::string &source);
45     bool decryptDRMPackage(const std::string &source, const std::string
46             &decryptedSource);
47     std::string getDecryptedPackage(const std::string &source);
48
49 };
50
51 } //namespace WidgetInstall
52 } //namespace Jobs
53
54 #endif // WIDGET_UNZIP_H