2751a11e1342bf51e9f00eef847a266e57b29dbc
[platform/framework/web/crosswalk-tizen.git] / src / common / resource_manager.h
1 // Copyright 2015 Samsung Electronics Co, Ltd. 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 WRT_COMMON_RESOURCE_MANAGER_H_
6 #define WRT_COMMON_RESOURCE_MANAGER_H_
7
8 #include <string>
9 #include <map>
10 #include <memory>
11
12 namespace wgt {
13
14 namespace parse {
15
16 class AppControlInfo;
17
18 }  // namespace parse
19
20 }  // namespace wgt
21
22 namespace wrt {
23
24 class ApplicationData;
25 class LocaleManager;
26 class AppControl;
27
28 class ResourceManager {
29  public:
30   class Resource {
31    public:
32     explicit Resource(const std::string& uri);
33     Resource(const std::string& uri, const std::string& mime);
34     Resource(const std::string& uri, const std::string& mime,
35              bool should_reset);
36     Resource(const Resource& res);
37     ~Resource() {}
38
39     Resource& operator=(const Resource& res);
40     bool operator==(const Resource& res);
41
42     void set_uri(const std::string& uri) { uri_ = uri; }
43     void set_mime(const std::string& mime) { mime_ = mime; }
44     void set_should_reset(bool should_reset) { should_reset_ = should_reset; }
45
46     std::string uri() const { return uri_; }
47     std::string mime() const { return mime_; }
48     bool should_reset() const { return should_reset_; }
49
50    private:
51     std::string uri_;
52     std::string mime_;
53     bool should_reset_;
54   };
55
56   ResourceManager(ApplicationData* application_data,
57                   LocaleManager* locale_manager);
58   ~ResourceManager() {}
59
60   // input : file:///..... , app://[appid]/....
61   // output : /[system path]/.../locales/.../
62   std::string GetLocalizedPath(const std::string& origin);
63   std::unique_ptr<Resource> GetStartResource(const AppControl* app_control);
64
65   void set_base_resource_path(const std::string& base_path);
66
67  private:
68   std::string GetMatchedSrcOrUri(const wgt::parse::AppControlInfo&);
69   std::string GetDefaultOrEmpty();
70   // for localization
71   bool Exists(const std::string& path);
72
73   std::string resource_base_path_;
74   std::string appid_;
75   std::map<const std::string, bool> file_existed_cache_;
76   std::map<const std::string, std::string> locale_cache_;
77
78   ApplicationData* application_data_;
79   LocaleManager* locale_manager_;
80 };
81
82 }  // namespace wrt
83
84 #endif  // WRT_COMMON_RESOURCE_MANAGER_H_