43d225fbb34d11776e778ef5754d70be8e2e2f6a
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / manifest.cc
1 // Copyright (c) 2012 The Chromium Authors. 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 #include "xwalk/application/common/manifest.h"
6
7 #include <list>
8
9 #include "base/basictypes.h"
10 #include "base/lazy_instance.h"
11 #include "base/logging.h"
12 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h"
14 #include "base/strings/string_split.h"
15 #include "base/strings/utf_string_conversions.h"
16 #include "xwalk/application/common/application_manifest_constants.h"
17 #include "xwalk/runtime/browser/xwalk_runner.h"
18
19 namespace errors = xwalk::application_manifest_errors;
20 namespace keys   = xwalk::application_manifest_keys;
21 namespace widget_keys = xwalk::application_widget_keys;
22
23 namespace xwalk {
24 namespace application {
25 namespace {
26 const char kLocaleUnlocalized[] = "@unlocalized";
27 #if defined(OS_TIZEN)
28 const char kLocaleAuto[] = "en-gb";
29 #else
30 const char kLocaleAuto[] = "en-us";
31 #endif
32 const char kLocaleFirstOne[] = "*";
33
34 const char kWidgetNamePath[] = "widget.name";
35 const char kWidgetDecriptionPath[] = "widget.description";
36 const char kWidgetLicensePath[] = "widget.license";
37
38 const char kPathConnectSymbol = '.';
39
40 typedef std::list<std::string> List;
41
42 std::string GetLocalizedKey(const std::string& key,
43                             const std::string& local) {
44   std::string lower_local = StringToLowerASCII(local);
45   if (lower_local.empty())
46     lower_local = kLocaleUnlocalized;
47   return key + kPathConnectSymbol + lower_local;
48 }
49
50 scoped_ptr<List> ExpandUserAgentLocalesList(const scoped_ptr<List>& list) {
51   scoped_ptr<List> expansion_list(new List);
52   for (List::const_iterator it = list->begin(); it != list->end(); ++it) {
53     std::string copy_locale(*it);
54     size_t position;
55     do {
56       expansion_list->push_back(copy_locale);
57       position = copy_locale.find_last_of("-");
58       copy_locale = copy_locale.substr(0, position);
59     } while (position != std::string::npos);
60   }
61   return expansion_list.Pass();
62 }
63
64 }  // namespace
65
66 Manifest::Manifest(SourceType source_type,
67         scoped_ptr<base::DictionaryValue> value)
68     : source_type_(source_type),
69       data_(value.Pass()),
70       i18n_data_(new base::DictionaryValue),
71       type_(TYPE_UNKNOWN) {
72   if (data_->Get(keys::kStartURLKey, NULL)) {
73     type_ = TYPE_PACKAGED_APP;
74   } else if (data_->HasKey(keys::kAppKey)) {
75     if (data_->Get(keys::kWebURLsKey, NULL) ||
76         data_->Get(keys::kLaunchWebURLKey, NULL)) {
77       type_ = TYPE_HOSTED_APP;
78     } else if (data_->Get(keys::kLaunchLocalPathKey, NULL)) {
79       type_ = TYPE_PACKAGED_APP;
80     }
81   }
82
83   if (data_->HasKey(widget_keys::kWidgetKey) &&
84       data_->Get(widget_keys::kWidgetKey, NULL))
85     ParseWGTI18n();
86
87   // Unittest may not have an xwalkrunner, so we should check here.
88   if (XWalkRunner* xwalk_runner = XWalkRunner::GetInstance())
89     SetSystemLocale(xwalk_runner->GetLocale());
90   else
91     SetSystemLocale(kLocaleUnlocalized);
92 }
93
94 Manifest::~Manifest() {
95 }
96
97 bool Manifest::ValidateManifest(
98     std::string* error,
99     std::vector<InstallWarning>* warnings) const {
100   // TODO(changbin): field 'manifest_version' of manifest.json is not clearly
101   // defined at present. Temporarily disable check of this field.
102   /*
103   *error = "";
104   if (type_ == Manifest::TYPE_PACKAGED_APP && GetManifestVersion() < 2) {
105     *error = errors::kPlatformAppNeedsManifestVersion2;
106     return false;
107   }
108   */
109
110   // TODO(xiang): support features validation
111   return true;
112 }
113
114 bool Manifest::HasKey(const std::string& key) const {
115   return CanAccessKey(key) && data_->HasKey(key);
116 }
117
118 bool Manifest::HasPath(const std::string& path) const {
119   base::Value* ignored = NULL;
120   return CanAccessPath(path) && data_->Get(path, &ignored);
121 }
122
123 bool Manifest::Get(
124     const std::string& path, const base::Value** out_value) const {
125   return CanAccessPath(path) && data_->Get(path, out_value);
126 }
127
128 bool Manifest::Get(
129     const std::string& path, base::Value** out_value) const {
130   return this->Get(
131       path,
132       const_cast<const base::Value**>(out_value));
133 }
134
135 bool Manifest::GetBoolean(
136     const std::string& path, bool* out_value) const {
137   return CanAccessPath(path) && data_->GetBoolean(path, out_value);
138 }
139
140 bool Manifest::GetInteger(
141     const std::string& path, int* out_value) const {
142   return CanAccessPath(path) && data_->GetInteger(path, out_value);
143 }
144
145 bool Manifest::GetString(
146     const std::string& path, std::string* out_value) const {
147   if (!CanAccessPath(path))
148     return false;
149
150   if (i18n_data_->Get(path, NULL)) {
151     List::const_iterator it = user_agent_locales_->begin();
152     for (; it != user_agent_locales_->end(); ++it) {
153       if (i18n_data_->GetString(GetLocalizedKey(path, *it), out_value))
154         return true;
155     }
156     return false;
157   }
158
159   return data_->GetString(path, out_value);
160 }
161
162 bool Manifest::GetString(
163     const std::string& path, base::string16* out_value) const {
164   if (!CanAccessPath(path))
165     return false;
166
167   if (i18n_data_->Get(path, NULL)) {
168     List::const_iterator it = user_agent_locales_->begin();
169     for (; it != user_agent_locales_->end(); ++it) {
170       if (i18n_data_->GetString(GetLocalizedKey(path, *it), out_value))
171         return true;
172     }
173     return false;
174   }
175
176   return data_->GetString(path, out_value);
177 }
178
179 bool Manifest::GetDictionary(
180     const std::string& path, const base::DictionaryValue** out_value) const {
181   return CanAccessPath(path) && data_->GetDictionary(path, out_value);
182 }
183
184 bool Manifest::GetList(
185     const std::string& path, const base::ListValue** out_value) const {
186   return CanAccessPath(path) && data_->GetList(path, out_value);
187 }
188
189 Manifest* Manifest::DeepCopy() const {
190   Manifest* manifest = new Manifest(
191       source_type_, scoped_ptr<base::DictionaryValue>(data_->DeepCopy()));
192   manifest->SetApplicationID(application_id_);
193   return manifest;
194 }
195
196 bool Manifest::Equals(const Manifest* other) const {
197   return other && data_->Equals(other->value());
198 }
199
200 int Manifest::GetManifestVersion() const {
201   int manifest_version = 1;
202   data_->GetInteger(keys::kManifestVersionKey, &manifest_version);
203   return manifest_version;
204 }
205
206 bool Manifest::CanAccessPath(const std::string& path) const {
207   return true;
208 }
209
210 bool Manifest::CanAccessKey(const std::string& key) const {
211   return true;
212 }
213
214 void Manifest::SetSystemLocale(const std::string& locale) {
215   scoped_ptr<List> list_for_expand(new List);
216   list_for_expand->push_back(locale);
217   list_for_expand->push_back(default_locale_);
218   list_for_expand->push_back(kLocaleUnlocalized);
219   list_for_expand->push_back(kLocaleAuto);
220   list_for_expand->push_back(kLocaleFirstOne);
221   user_agent_locales_ = ExpandUserAgentLocalesList(list_for_expand);
222 }
223
224 void Manifest::ParseWGTI18n() {
225   data_->GetString(application_widget_keys::kDefaultLocaleKey,
226                    &default_locale_);
227   default_locale_ = StringToLowerASCII(default_locale_);
228
229   ParseWGTI18nEachPath(kWidgetNamePath);
230   ParseWGTI18nEachPath(kWidgetDecriptionPath);
231   ParseWGTI18nEachPath(kWidgetLicensePath);
232 }
233
234 // We might get one element of a list of element from path,
235 // and we parse each element for fast access.
236 // For example config.xml is:
237 // <widget>
238 //   <name>unlocalized name</name>
239 //   <name xml:lang="zh-CN">zh-CN name</name>
240 //   <name xml:lang="en-US" short="en-US short">en-US name</name>
241 // </widget>
242 // The path for value in i18n_data_ are :
243 // "widget.name.#text.@unlocalized" => "unlocalized name".
244 // "widget.name.#text.zh-cn" => "zh-CN name".
245 // "widget.name.#text.en-us" => "en-US name".
246 // "widget.name.@short.en-us" => "en-US short".
247 // "widget.name.#text.*" => "unlocalized name". (the first one)
248 // "widget.name.@short.*" => "". (the first one do not have a short name)
249 void Manifest::ParseWGTI18nEachPath(const std::string& path) {
250   base::Value* value = NULL;
251   if (!data_->Get(path, &value))
252     return;
253
254   if (value->IsType(base::Value::TYPE_DICTIONARY)) {
255     ParseWGTI18nEachElement(value, path);
256     ParseWGTI18nEachElement(value, path, kLocaleFirstOne);
257   } else if (value->IsType(base::Value::TYPE_LIST)) {
258     base::ListValue* list;
259     value->GetAsList(&list);
260
261     bool get_first_one = false;
262     for (base::ListValue::iterator it = list->begin();
263         it != list->end(); ++it) {
264       ParseWGTI18nEachElement(*it, path);
265       if (!get_first_one)
266         get_first_one = ParseWGTI18nEachElement(*it, path, kLocaleFirstOne);
267     }
268   }
269 }
270
271 bool Manifest::ParseWGTI18nEachElement(base::Value* value,
272                                        const std::string& path,
273                                        const std::string& locale) {
274   base::DictionaryValue* dict;
275   if (!value->GetAsDictionary(&dict))
276     return false;
277
278   std::string xml_lang(locale);
279   if (locale.empty())
280     dict->GetString(application_widget_keys::kXmlLangKey, &xml_lang);
281
282   base::DictionaryValue::Iterator iter(*dict);
283   while (!iter.IsAtEnd()) {
284     std::string locale_key(
285         GetLocalizedKey(path + kPathConnectSymbol + iter.key(), xml_lang));
286     if (!i18n_data_->Get(locale_key, NULL))
287       i18n_data_->Set(locale_key, iter.value().DeepCopy());
288
289     iter.Advance();
290   }
291
292   return true;
293 }
294
295 }  // namespace application
296 }  // namespace xwalk