5f668def14f81e45129c8013801245aacbf8b873
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / 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_COMMON_INSTALLER_PACKAGE_H_
6 #define XWALK_APPLICATION_COMMON_INSTALLER_PACKAGE_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/files/file_path.h"
12 #include "base/files/scoped_file.h"
13 #include "base/files/scoped_temp_dir.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   enum Type {
26     WGT,
27     XPK
28   };
29
30   virtual ~Package();
31   bool IsValid() const { return is_valid_; }
32   const std::string& Id() const { return id_; }
33   Type type() const { return type_; }
34   // Factory method for creating a package
35   static scoped_ptr<Package> Create(const base::FilePath& path);
36   // The function will unzip the XPK/WGT file and return the target path where
37   // to decompress by the parameter |target_path|.
38   virtual bool Extract(base::FilePath* target_path);
39
40  protected:
41   explicit Package(const base::FilePath& source_path);
42   scoped_ptr<base::ScopedFILE> file_;
43   bool is_valid_;
44   std::string id_;
45   // Unzipping of the zipped file happens in a temporary directory
46   bool CreateTempDirectory();
47   base::FilePath source_path_;
48   // Temporary directory for unpacking.
49   base::ScopedTempDir temp_dir_;
50   // Represent if the package has been extracted.
51   bool is_extracted_;
52   Type type_;
53 };
54
55 }  // namespace application
56 }  // namespace xwalk
57
58 #endif  // XWALK_APPLICATION_COMMON_INSTALLER_PACKAGE_H_