2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file task_unzip.cpp
18 * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
20 * @brief Implementation file for installer task unzip
22 #ifndef INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H
23 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H
28 #include <dpl/zip_input.h>
30 #include <dpl/encryption/resource_encryption.h>
32 class InstallerContext;
35 namespace WidgetInstall {
37 public DPL::TaskDecl<TaskUnzip>
40 // Installation context
41 InstallerContext &m_installerContext;
44 std::unique_ptr<DPL::ZipInput> m_zip;
45 DPL::ZipInput::const_iterator m_zipIterator;
47 WRTEncryptor::ResourceEncryptor *m_resEnc;
49 void ExtractFile(DPL::ZipInput::File *input,
50 const std::string &destFileName);
52 void EncryptionFile(const std::string &fileName);
55 void StepUnzipPrepare();
56 void StepUnzipProgress();
57 void StepUnzipFinished();
60 TaskUnzip(InstallerContext &installerContext);
62 } //namespace WidgetInstall
65 #endif // INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UNZIP_H