Upstream version 6.34.113.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / browser / installer / package.h
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef XWALK_APPLICATION_BROWSER_INSTALLER_PACKAGE_H_
6 #define XWALK_APPLICATION_BROWSER_INSTALLER_PACKAGE_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/files/file_path.h"
12 #include "base/files/scoped_temp_dir.h"
13 #include "base/memory/scoped_handle.h"
14 #include "base/memory/scoped_ptr.h"
15
16 namespace xwalk {
17 namespace application {
18
19 // Base class for all types of packages (right now .wgt and .xpk)
20 // The actual zip file, id, is_valid_, source_path_ are common in all packages
21 // specifics like signature checking for XPK are taken care of in
22 //  XPKPackage::Validate()
23 class Package {
24  public:
25   virtual ~Package();
26   bool IsValid() const { return is_valid_; }
27   const std::string& Id() const { return id_; }
28   // Factory method for creating a package
29   static scoped_ptr<Package> Create(const base::FilePath& path);
30   // The function will unzip the XPK/WGT file and return the target path where
31   // to decompress by the parameter |target_path|.
32   virtual bool Extract(base::FilePath* target_path);
33  protected:
34   explicit Package(const base::FilePath& source_path);
35   scoped_ptr<ScopedStdioHandle> file_;
36   bool is_valid_;
37   std::string id_;
38   // Unzipping of the zipped file happens in a temporary directory
39   bool CreateTempDirectory();
40   base::FilePath source_path_;
41   // Temporary directory for unpacking.
42   base::ScopedTempDir temp_dir_;
43   // Represent if the package has been extracted.
44   bool is_extracted_;
45 };
46
47 }  // namespace application
48 }  // namespace xwalk
49
50 #endif  // XWALK_APPLICATION_BROWSER_INSTALLER_PACKAGE_H_