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 * This file have been implemented in compliance with W3C WARP SPEC.
18 * but there are some patent issue between W3C WARP SPEC and APPLE.
19 * so if you want to use this file, refer to the README file in root directory
22 * @file widget_parser.cpp
23 * @author Lukasz Wrzosek (l.wrzosek@samsung.com)
27 #include "widget_parser.h"
28 #include "ignoring_parser.h"
29 #include "deny_all_parser.h"
30 #include <dpl/wrt-dao-ro/config_parser_data.h>
31 #include "libiriwrapper.h"
32 #include <dpl/utils/warp_iri.h>
33 #include <dpl/utils/mime_type_utils.h>
34 #include <language_subtag_rst_tree.h>
37 #include <dpl/log/log.h>
38 #include <dpl/fast_delegate.h>
39 #include <dpl/foreach.h>
44 using namespace WrtDB;
47 static const DPL::String UTF_LRE = L"\x0202a";
48 static const DPL::String UTF_LRO = L"\x0202d";
49 static const DPL::String UTF_RLE = L"\x0202b";
50 static const DPL::String UTF_RLO = L"\x0202e";
51 static const DPL::String UTF_PDF = L"\x0202c";
53 Direction ParseDirAttribute(const XmlAttribute& attribute)
55 Assert(L"dir" == attribute.name);
56 if (L"ltr" == attribute.value) {
58 } else if (L"rtl" == attribute.value) {
60 } else if (L"lro" == attribute.value) {
62 } else if (L"rlo" == attribute.value) {
65 LogWarning("dir attribute has wrong value:" << attribute.value);
70 void UpdateTextWithDirectionMark(Direction direction,
76 *text = UTF_RLO + *text + UTF_PDF;
79 *text = UTF_RLE + *text + UTF_PDF;
82 *text = UTF_LRE + *text + UTF_PDF;
85 *text = UTF_LRO + *text + UTF_PDF;
93 } // namespace Unicode
95 class InnerElementsParser : public ElementParser
98 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
99 const DPL::String& /*name*/)
101 return DPL::MakeDelegate(this, &InnerElementsParser::Other);
104 virtual void Accept(const Element& /*element*/)
108 virtual void Accept(const Text& text)
110 if (m_text.IsNull()) {
113 m_text->value += text.value;
117 virtual void Accept(const XmlAttribute& attribute)
119 if (attribute.name == L"dir") {
120 m_textDirection = Unicode::ParseDirAttribute(attribute);
124 virtual void Verify()
126 if (!m_text.IsNull()) {
127 Unicode::UpdateTextWithDirectionMark(m_textDirection,
129 m_parentParser->Accept(*m_text);
133 InnerElementsParser(ElementParserPtr parent) :
134 m_parentParser(parent),
135 m_textDirection(Unicode::EMPTY)
139 ElementParserPtr Other()
141 return ElementParserPtr(new InnerElementsParser(
142 std::static_pointer_cast<ElementParser>(
143 shared_from_this())));
147 DPL::Optional<Text> m_text;
148 ElementParserPtr m_parentParser;
149 Unicode::Direction m_textDirection;
152 class NameParser : public ElementParser
155 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
156 const DPL::String& /*name*/)
158 return DPL::MakeDelegate(this, &NameParser::Other);
161 virtual void Accept(const Element& element)
163 m_lang = element.lang;
167 virtual void Accept(const Text& text)
169 if (m_name.IsNull()) {
172 *m_name += text.value;
176 virtual void Accept(const XmlAttribute& attribute)
178 if (attribute.name == L"short") {
179 if (m_shortName.IsNull()) {
180 m_shortName = attribute.value;
182 } else if (attribute.name == L"dir") {
183 m_textDirection = Unicode::ParseDirAttribute(attribute);
187 virtual void Verify()
189 ConfigParserData::LocalizedData& data = m_data.localizedDataSet[m_lang];
190 if (data.name.IsNull()) {
191 NormalizeString(m_name);
192 NormalizeString(m_shortName);
193 if (!m_name.IsNull()) {
194 Unicode::UpdateTextWithDirectionMark(m_textDirection, &*m_name);
197 if (!m_shortName.IsNull()) {
198 Unicode::UpdateTextWithDirectionMark(m_textDirection,
201 data.shortName = m_shortName;
205 NameParser(Unicode::Direction direction,
206 ConfigParserData& data) :
208 m_textDirection(direction)
212 ElementParserPtr Other()
214 return ElementParserPtr(new InnerElementsParser(
215 std::static_pointer_cast<ElementParser>(
216 shared_from_this())));
220 ConfigParserData& m_data;
221 DPL::OptionalString m_name;
222 DPL::OptionalString m_shortName;
223 DPL::OptionalString m_dir;
225 Unicode::Direction m_textDirection;
228 class AccessParser : public ElementParser
237 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
238 const DPL::String& /*name*/)
240 return DPL::MakeDelegate(this, &AccessParser::Other);
243 virtual void Accept(const Element& element)
245 // for tizen web apps WARP should be used
246 if (element.ns == ConfigurationNamespace::W3CWidgetNamespaceName ||
247 element.ns == ConfigurationNamespace::TizenWebAppNamespaceName)
249 m_standardType = STANDARD_TYPE_WARP;
253 virtual void Accept(const Text& /*text*/)
257 void AcceptWac(const XmlAttribute& attribute)
259 if (attribute.name == L"origin") {
260 m_strIRIOrigin = attribute.value;
261 NormalizeString(m_strIRIOrigin);
262 } else if (attribute.name == L"subdomains") {
263 DPL::String normalizedValue = attribute.value;
264 NormalizeString(normalizedValue);
266 if (normalizedValue == L"true") {
267 m_bSubDomainAccess = true;
268 } else if (normalizedValue == L"false") {
269 m_bSubDomainAccess = false;
274 virtual void Accept(const XmlAttribute& attribute)
276 switch (m_standardType) {
277 case STANDARD_TYPE_WARP:
278 AcceptWac(attribute);
281 LogError("Error in Access tag - unknown standard.");
288 iri.set(m_strIRIOrigin, false);
290 if (!iri.isAccessDefinition()) {
291 LogWarning("Access list element: " <<
293 " is not acceptable by WARP" <<
294 "standard and will be ignored!");
298 ConfigParserData::AccessInfo accessInfo(m_strIRIOrigin,
300 std::pair <ConfigParserData::AccessInfoSet::iterator, bool> ret =
301 m_data.accessInfoSet.insert(accessInfo);
304 virtual void Verify()
306 switch (m_standardType) {
307 case STANDARD_TYPE_WARP:
311 LogError("Error in Access tag - unknown standard.");
315 AccessParser(ConfigParserData& data) :
317 m_bSubDomainAccess(false),
318 m_standardType(STANDARD_TYPE_NONE),
324 ElementParserPtr Other()
326 return ElementParserPtr(new InnerElementsParser(
327 ElementParserPtr(shared_from_this())));
331 DPL::String m_strIRIOrigin;
332 bool m_bSubDomainAccess;
333 StandardType m_standardType;
335 ConfigParserData& m_data;
338 class DescriptionParser : public ElementParser
341 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
342 const DPL::String& /*name*/)
344 return DPL::MakeDelegate(this, &DescriptionParser::Other);
347 virtual void Accept(const Element& element)
349 m_lang = element.lang;
353 ElementParserPtr Other()
355 return ElementParserPtr(new InnerElementsParser(
356 std::static_pointer_cast<ElementParser>(
357 shared_from_this())));
360 virtual void Accept(const Text& text)
362 if (m_description.IsNull()) {
363 m_description = text.value;
365 *m_description += text.value;
369 virtual void Accept(const XmlAttribute& attribute)
371 if (attribute.name == L"dir") {
372 m_textDirection = Unicode::ParseDirAttribute(attribute);
376 virtual void Verify()
378 ConfigParserData::LocalizedData& data = m_data.localizedDataSet[m_lang];
379 if (data.description.IsNull()) {
380 if (!m_description.IsNull()) {
381 Unicode::UpdateTextWithDirectionMark(m_textDirection,
384 data.description = m_description;
388 DescriptionParser(Unicode::Direction direction,
389 ConfigParserData& data) :
393 m_textDirection(direction)
398 ConfigParserData& m_data;
400 DPL::OptionalString m_description;
401 Unicode::Direction m_textDirection;
404 class AuthorParser : public ElementParser
407 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
408 const DPL::String& /*name*/)
410 return DPL::MakeDelegate(this, &AuthorParser::Other);
413 AuthorParser(Unicode::Direction direction,
414 ConfigParserData& data) :
416 m_textDirection(direction)
420 virtual void Accept(const Element& /*element*/)
425 virtual void Accept(const Text& text)
427 *(m_authorName) += text.value;
430 virtual void Accept(const XmlAttribute& attribute)
432 if (attribute.name == L"href") {
433 //Validate href IRI and ignore it if invalid
434 //See also test: ta-argMozRiC-an
435 LibIri::Wrapper iri(DPL::ToUTF8String(attribute.value).c_str());
436 if (iri.Validate()) {
437 m_authorHref = attribute.value;
439 } else if (attribute.name == L"email") {
440 m_authorEmail = attribute.value;
441 } else if (attribute.name == L"dir") {
442 m_textDirection = Unicode::ParseDirAttribute(attribute);
446 virtual void Verify()
448 if (!m_data.authorName && !m_data.authorHref && !m_data.authorEmail) {
449 NormalizeString(m_authorName);
450 NormalizeString(m_authorHref);
451 NormalizeString(m_authorEmail);
452 if (!!m_authorName) {
453 Unicode::UpdateTextWithDirectionMark(m_textDirection,
455 m_data.authorName = m_authorName;
457 if (!!m_authorHref) {
458 m_data.authorHref = m_authorHref;
460 if (!!m_authorEmail) {
461 m_data.authorEmail = m_authorEmail;
466 ElementParserPtr Other()
468 return ElementParserPtr(new InnerElementsParser(
469 std::static_pointer_cast<ElementParser>(
470 shared_from_this())));
474 ConfigParserData& m_data;
475 DPL::OptionalString m_authorEmail;
476 DPL::OptionalString m_authorHref;
477 DPL::OptionalString m_authorName;
478 Unicode::Direction m_textDirection;
481 class LicenseParser : public ElementParser
484 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
485 const DPL::String& /*name*/)
487 return DPL::MakeDelegate(this, &LicenseParser::Other);
490 LicenseParser(Unicode::Direction direction,
491 ConfigParserData& data) :
494 m_textDirection(direction)
498 virtual void Accept(const Element& element)
500 if (m_license.IsNull()) {
501 m_lang = element.lang;
507 virtual void Accept(const Text& text)
510 *m_license += text.value;
514 virtual void Accept(const XmlAttribute& attribute)
517 if (attribute.name == L"href" && m_licenseHref.IsNull()) {
518 m_licenseHref = attribute.value;
519 } else if (attribute.name == L"file" && m_licenseFile.IsNull()) {
520 m_licenseFile = attribute.value;
521 } else if (attribute.name == L"dir") {
522 m_textDirection = Unicode::ParseDirAttribute(attribute);
527 virtual void Verify()
529 ConfigParserData::LocalizedData& data = m_data.localizedDataSet[m_lang];
530 if (data.license.IsNull()) {
531 if (!m_license.IsNull()) {
532 Unicode::UpdateTextWithDirectionMark(m_textDirection,
535 data.license = m_license;
536 data.licenseHref = m_licenseHref;
537 data.licenseFile = m_licenseFile;
541 ElementParserPtr Other()
543 return ElementParserPtr(new InnerElementsParser(
544 ElementParserPtr(shared_from_this())));
548 ConfigParserData& m_data;
552 DPL::OptionalString m_license;
553 DPL::OptionalString m_licenseFile;
554 DPL::OptionalString m_licenseHref;
555 Unicode::Direction m_textDirection;
558 class IconParser : public ElementParser
560 DECLARE_EXCEPTION_TYPE(ElementParser::Exception::ParseError, BadSrcError)
563 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
564 const DPL::String& /*name*/)
566 return &IgnoringParser::Create;
569 IconParser(ConfigParserData& data) : ElementParser(),
574 virtual void Accept(const Element& /*element*/)
578 virtual void Accept(const XmlAttribute& attribute)
580 if (attribute.name == L"src") {
581 if (attribute.value.size() > 0) {
582 m_src = attribute.value;
584 } else if (attribute.name == L"width") {
585 m_width = ParseSizeAttributeValue(attribute.value);
586 } else if (attribute.name == L"height") {
587 m_height = ParseSizeAttributeValue(attribute.value);
591 virtual void Accept(const Text& /*text*/)
593 ThrowMsg(Exception::ParseError, "Icon element must be empty");
596 virtual void Verify()
598 if (m_src.IsNull()) {
599 LogWarning("src attribute of icon element is mandatory - ignoring");
605 ConfigParserData::Icon icon(delocalizeSrcPath(*m_src));
606 icon.width = m_width;
607 icon.height = m_height;
609 ConfigParserData::IconsList::iterator it = std::find(
610 m_data.iconsList.begin(), m_data.iconsList.end(), icon);
611 if (it == m_data.iconsList.end()) {
612 m_data.iconsList.push_front(icon);
617 LogWarning("src attribute is invalid: " << m_src);
622 ConfigParserData& m_data;
623 DPL::OptionalString m_src;
624 DPL::OptionalInt m_width;
625 DPL::OptionalInt m_height;
627 static DPL::OptionalInt ParseSizeAttributeValue(const DPL::String& value)
629 DPL::OptionalString normalizedValue = value;
630 NormalizeString(normalizedValue);
631 if (!(*normalizedValue).empty()) {
635 strtol(DPL::ToUTF8String(value).c_str(), &reterr, 10);
637 std::string(reterr) == DPL::ToUTF8String(value) ||
639 return DPL::OptionalInt::Null;
644 return DPL::OptionalInt::Null;
648 * @brief delocalizePath removes locales folder from relative path if neccessary
649 * @param source source string
651 * @throw BadSrcError if string is bad value of src attribute
653 * @return corrected string
655 static DPL::String delocalizeSrcPath(const DPL::String & source)
657 static const DPL::String localeFolder(L"locales/");
658 static const int index = localeFolder.size();
660 DPL::String result = source;
662 if(source.substr(0,index) == localeFolder)
664 size_t pos = result.find_first_of('/',index);
665 if(pos != std::string::npos && pos + 1 < source.size())
667 result = result.substr(pos + 1,source.size());
678 class ContentParser : public ElementParser
681 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
682 const DPL::String& /*name*/)
684 return &IgnoringParser::Create;
687 ContentParser(ConfigParserData& data) :
693 virtual void Accept(const Element& /*element*/)
697 virtual void Accept(const Text& /*text*/)
701 virtual void Accept(const XmlAttribute& attribute)
703 DPL::String value = attribute.value;
704 NormalizeString(value);
706 if (attribute.name == L"src") {
708 } else if (attribute.name == L"type") {
710 MimeTypeUtils::MimeAttributes mimeAttributes =
711 MimeTypeUtils::getMimeAttributes(value);
712 if (mimeAttributes.count(L"charset") > 0) {
713 m_encoding = mimeAttributes[L"charset"];
715 } else if (attribute.name == L"encoding") {
716 if (!value.empty()) {
722 virtual void Verify()
724 if (m_data.startFileEncountered) {
725 LogWarning("This is not the first encountered "
726 "'content' element - ignoring.");
730 m_data.startFileEncountered = true;
732 //we're consciously setting startFile even if m_src is null or invalid.
733 //WidgetConfigurationManager will deal with this.
734 m_data.startFile = m_src;
737 m_data.startFileContentType = m_type;
739 m_data.startFileEncoding = m_encoding;
741 m_data.startFileEncoding = L"UTF-8";
747 DPL::OptionalString m_src;
748 DPL::OptionalString m_type;
749 DPL::OptionalString m_encoding;
750 ConfigParserData& m_data;
753 class FeatureParser : public ElementParser
756 struct ParamParser : public ElementParser
758 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
759 const DPL::String& /*name*/)
761 return &IgnoringParser::Create;
764 virtual void Accept(const XmlAttribute& attribute)
766 if (attribute.name == L"name") {
767 m_name = attribute.value;
768 NormalizeString(m_name);
769 } else if (attribute.name == L"value") {
770 m_value = attribute.value;
771 NormalizeString(m_value);
775 virtual void Accept(const Element& /*element*/)
779 virtual void Accept(const Text& /*text*/)
781 ThrowMsg(Exception::ParseError, "param element must be empty");
784 virtual void Verify()
786 if (m_name.IsNull() || *m_name == L"") {
789 if (m_value.IsNull() || *m_value == L"") {
793 ConfigParserData::Param param(*m_name);
794 param.value = *m_value;
796 if (m_data.paramsList.find(param) == m_data.paramsList.end()) {
797 m_data.paramsList.insert(param);
801 ParamParser(ConfigParserData::Feature& data) :
808 DPL::OptionalString m_name;
809 DPL::OptionalString m_value;
810 ConfigParserData::Feature& m_data;
813 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
814 const DPL::String& name)
816 if (name == L"param") {
817 return DPL::MakeDelegate(this, &FeatureParser::OnParamElement);
819 return &IgnoringParser::Create;
823 virtual void Accept(const Text& /*text*/)
827 virtual void Accept(const Element& /*element*/)
831 virtual void Accept(const XmlAttribute& attribute)
833 if (attribute.name == L"name") {
834 m_feature.name = attribute.value;
835 } else if (attribute.name == L"required") {
836 if (attribute.value == L"false") {
837 m_feature.required = false;
839 m_feature.required = true;
844 virtual void Verify()
846 LibIri::Wrapper iri(DPL::ToUTF8String(m_feature.name).c_str());
848 if (m_feature.name != L"") {
849 if (iri.Validate()) {
850 if (m_data.featuresList.find(m_feature) ==
851 m_data.featuresList.end()) {
852 m_data.featuresList.insert(m_feature);
854 LogDebug("Ignoring feature with name" <<
855 DPL::ToUTF8String(m_feature.name));
858 if (m_feature.required) {
859 //Throw only if required
860 ThrowMsg(Exception::ParseError, "invalid feature IRI");
866 ElementParserPtr OnParamElement()
868 return ElementParserPtr(new ParamParser(m_feature));
871 FeatureParser(ConfigParserData& data) :
879 ConfigParserData& m_data;
880 ConfigParserData::Feature m_feature;
883 class PreferenceParser : public ElementParser
886 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
887 const DPL::String& /*name*/)
889 return &IgnoringParser::Create;
892 virtual void Accept(const XmlAttribute& attribute)
894 if (attribute.name == L"name") {
895 m_name = attribute.value;
896 } else if (attribute.name == L"value") {
897 m_value = attribute.value;
898 } else if (attribute.name == L"readonly") {
899 if (attribute.value == L"true") {
907 virtual void Accept(const Element& /*element*/)
911 virtual void Accept(const Text& /*text*/)
913 ThrowMsg(Exception::ParseError, "param element must be empty");
916 virtual void Verify()
918 if (m_name.IsNull()) {
919 LogWarning("preference element must have name attribute");
922 NormalizeString(m_name);
923 NormalizeString(m_value);
924 ConfigParserData::Preference preference(*m_name, m_required);
925 preference.value = m_value;
926 if (m_data.preferencesList.find(preference) ==
927 m_data.preferencesList.end()) {
928 m_data.preferencesList.insert(preference);
932 PreferenceParser(ConfigParserData& data) :
940 DPL::OptionalString m_name;
941 DPL::OptionalString m_value;
943 ConfigParserData& m_data;
946 class LinkParser : public ElementParser
949 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
950 const DPL::String& /*name*/)
952 return &DenyAllParser::Create;
955 virtual void Accept(const XmlAttribute& attribute)
957 if (m_properNamespace) {
958 LogDebug("attribute");
959 if (attribute.name == L"rel") {
960 if (attribute.value != L"describedby") {
961 ThrowMsg(Exception::ParseError,
962 "rel attribute must have describedby value");
964 } else if (attribute.name == L"type") {
965 } else if (attribute.name == L"href") {
966 LogDebug("here is href");
967 m_href = attribute.value;
969 ThrowMsg(Exception::ParseError,
970 "unknown attribute '" +
971 DPL::ToUTF8String(attribute.name) +
972 "' in link element");
977 virtual void Accept(const Element& element)
980 ConfigurationNamespace::WacWidgetNamespaceNameForLinkElement)
982 m_properNamespace = true;
987 virtual void Accept(const Text&)
989 if (m_properNamespace) {
991 ThrowMsg(Exception::ParseError, "link element must be empty");
995 virtual void Verify()
998 ThrowMsg(Exception::ParseError,
999 "link element must have href attribute");
1002 LibIri::Wrapper iri(DPL::ToUTF8String(*m_href).c_str());
1003 if (!iri.Validate()) { // TODO: Better uri validator ?
1004 ThrowMsg(Exception::ParseError,
1005 "href attribute must be a valid iri/uri/url");
1009 LinkParser(ConfigParserData& data) :
1011 m_properNamespace(false),
1013 m_href(DPL::OptionalString::Null)
1018 bool m_properNamespace;
1019 ConfigParserData& m_data;
1020 DPL::OptionalString m_href;
1023 class SettingParser : public ElementParser
1026 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1027 const DPL::String& /*name*/)
1029 return &IgnoringParser::Create;
1032 virtual void Accept(const Text& /*text*/)
1036 virtual void Accept(const Element& /*element*/)
1040 virtual void Accept(const XmlAttribute& attribute)
1042 m_setting.m_name = attribute.name;
1043 m_setting.m_value = attribute.value;
1044 m_data.settingsList.insert(m_setting);
1047 virtual void Verify()
1051 SettingParser(ConfigParserData& data) :
1059 ConfigParserData& m_data;
1060 ConfigParserData::Setting m_setting;
1063 class AppControlParser : public ElementParser
1066 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1067 const DPL::String& /*name*/)
1069 return &IgnoringParser::Create;
1072 virtual void Accept(const XmlAttribute& attribute)
1074 if (attribute.name == L"src") {
1075 m_src = attribute.value;
1076 } else if (attribute.name == L"operation") {
1077 m_operation = attribute.value;
1078 } else if (attribute.name == L"scheme") {
1079 m_scheme = attribute.value;
1080 } else if (attribute.name == L"mime") {
1081 m_mime = attribute.value;
1085 virtual void Accept(const Element& element)
1087 LogWarning("namespace for app service = " << element.ns);
1088 if (element.ns == ConfigurationNamespace::W3CWidgetNamespaceName) {
1089 ThrowMsg(Exception::ParseError,
1090 "Wrong xml namespace for widget element");
1094 virtual void Accept(const Text& /*text*/)
1096 ThrowMsg(Exception::ParseError, "param element must be empty");
1099 virtual void Verify()
1101 if (m_src.IsNull()) {
1102 LogWarning("service element must have target attribute");
1104 } else if (m_operation.IsNull()) {
1105 LogWarning("service element must have operation attribute");
1108 NormalizeString(m_src);
1109 NormalizeString(m_operation);
1110 NormalizeString(m_scheme);
1111 NormalizeString(m_mime);
1113 // verify duplicate element
1114 DPL::String wildString(L"*/*");
1115 DPL::String nullString(L"");
1116 ConfigParserData::ServiceInfo serviceInfo(
1117 m_src.IsNull() ? nullString:*m_src,
1118 m_operation.IsNull() ? nullString:*m_operation,
1119 m_scheme.IsNull() ? nullString:*m_scheme,
1120 m_mime.IsNull() ? nullString:*m_mime);
1122 FOREACH(iterator, m_data.appServiceList) {
1123 if (iterator->m_operation == serviceInfo.m_operation &&
1125 (iterator->m_scheme == serviceInfo.m_scheme ||
1126 // check input scheme is "*/*" case
1127 (iterator->m_scheme == wildString &&
1128 serviceInfo.m_scheme != nullString) ||
1129 // check iterator scheme is "*/*" case
1130 (serviceInfo.m_scheme == wildString &&
1131 iterator->m_scheme != nullString)) &&
1133 (iterator->m_mime == serviceInfo.m_mime ||
1134 // check input mime is "*/*" case
1135 (iterator->m_mime == wildString &&
1136 serviceInfo.m_mime != nullString) ||
1137 // check iterator mime is "*/*" case
1138 (serviceInfo.m_mime == wildString &&
1139 iterator->m_mime != nullString)))
1141 ThrowMsg(Exception::ParseError,
1142 "service operation is duplicated " +
1143 DPL::ToUTF8String(*m_operation));
1146 m_data.appServiceList.push_back(serviceInfo);
1149 AppControlParser(ConfigParserData& data) :
1151 m_src(DPL::OptionalString::Null),
1152 m_operation(DPL::OptionalString::Null),
1153 m_scheme(DPL::OptionalString::Null),
1154 m_mime(DPL::OptionalString::Null),
1160 DPL::OptionalString m_src;
1161 DPL::OptionalString m_operation;
1162 DPL::OptionalString m_scheme;
1163 DPL::OptionalString m_mime;
1164 ConfigParserData& m_data;
1167 class ApplicationParser : public ElementParser
1170 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1171 const DPL::String& /*name*/)
1173 return &IgnoringParser::Create;
1176 virtual void Accept(const Text& text)
1178 if (m_properNamespace) {
1180 ThrowMsg(Exception::ParseError, "application element must be empty");
1184 virtual void Accept(const Element& element)
1187 ConfigurationNamespace::TizenWebAppNamespaceName)
1189 m_properNamespace = true;
1191 LogDebug("element");
1194 virtual void Accept(const XmlAttribute& attribute)
1196 if (m_properNamespace) {
1197 LogDebug("attribute");
1198 if (attribute.name == L"id") {
1199 m_id = attribute.value;
1200 } else if (attribute.name == L"required_version") {
1201 m_version = attribute.value;
1202 NormalizeString(m_version);
1204 ThrowMsg(Exception::ParseError,
1205 "unknown attribute '" +
1206 DPL::ToUTF8String(attribute.name) +
1207 "' in application element");
1212 virtual void Verify()
1215 ThrowMsg(Exception::ParseError,
1216 "application element must have id attribute");
1220 ThrowMsg(Exception::ParseError,
1221 "application element must have required_version attribute");
1224 //TODO check if id and version format is right
1225 m_data.tizenId = m_id;
1226 m_data.tizenMinVersionRequired = m_version;
1229 ApplicationParser(ConfigParserData& data) :
1232 m_id(DPL::OptionalString::Null),
1233 m_version(DPL::OptionalString::Null),
1234 m_properNamespace(false)
1239 ConfigParserData& m_data;
1240 DPL::OptionalString m_id;
1241 DPL::OptionalString m_version;
1242 bool m_properNamespace;
1245 class SplashParser : public ElementParser
1248 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1249 const DPL::String& /*name*/)
1251 return &IgnoringParser::Create;
1254 virtual void Accept(const XmlAttribute& attribute)
1256 if (attribute.name == L"src") {
1257 if (attribute.value.size() > 0) {
1258 m_src = attribute.value;
1263 virtual void Accept(const Element& element)
1267 virtual void Accept(const Text& /*text*/)
1271 virtual void Verify()
1273 if (m_src.IsNull()) {
1274 LogWarning("src attribute of splash element is mandatory - ignoring");
1278 m_data.splashImgSrc = m_src;
1281 SplashParser(ConfigParserData& data) :
1288 DPL::OptionalString m_src;
1289 ConfigParserData& m_data;
1292 class BackgroundParser : public ElementParser
1295 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1296 const DPL::String& /*name*/)
1298 return &IgnoringParser::Create;
1301 virtual void Accept(const XmlAttribute& attribute)
1303 if (attribute.name == L"src") {
1304 if (attribute.value.size() > 0) {
1305 m_src = attribute.value;
1310 virtual void Accept(const Element& /*element*/)
1314 virtual void Accept(const Text& /*text*/)
1318 virtual void Verify()
1320 if (m_src.IsNull()) {
1321 LogWarning("src attribute of background element is mandatory - ignoring");
1325 m_data.backgroundPage = m_src;
1328 explicit BackgroundParser(ConfigParserData& data) :
1334 DPL::OptionalString m_src;
1335 ConfigParserData& m_data;
1338 class PrivilegeParser : public ElementParser
1341 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1342 const DPL::String& name)
1344 return &IgnoringParser::Create;
1347 virtual void Accept(const Text& /*text*/)
1351 virtual void Accept(const Element& element)
1354 ConfigurationNamespace::TizenWebAppNamespaceName)
1356 m_properNamespace = true;
1358 LogDebug("element");
1361 virtual void Accept(const XmlAttribute& attribute)
1363 if (m_properNamespace) {
1364 if (attribute.name == L"name") {
1365 m_feature.name = attribute.value;
1366 m_privilege.name = attribute.value;
1369 m_feature.required = true;
1372 virtual void Verify()
1374 LibIri::Wrapper iri(DPL::ToUTF8String(m_feature.name).c_str());
1376 if (m_feature.name != L"") {
1377 if (iri.Validate()) {
1378 if (m_data.featuresList.find(m_feature) ==
1379 m_data.featuresList.end()) {
1380 m_data.featuresList.insert(m_feature);
1382 LogDebug("Ignoring feature with name" <<
1383 DPL::ToUTF8String(m_feature.name));
1388 LibIri::Wrapper iriPrivilege(
1389 DPL::ToUTF8String(m_privilege.name).c_str());
1391 if (m_privilege.name != L"") {
1392 if (iriPrivilege.Validate()) {
1393 if (m_data.privilegeList.find(m_privilege) ==
1394 m_data.privilegeList.end()) {
1395 m_data.privilegeList.insert(m_privilege);
1397 LogDebug("Ignoring privilege with name" <<
1398 DPL::ToUTF8String(m_privilege.name));
1404 PrivilegeParser(ConfigParserData& data) :
1409 m_properNamespace(false)
1414 ConfigParserData& m_data;
1415 ConfigParserData::Feature m_feature;
1416 ConfigParserData::Privilege m_privilege;
1417 bool m_properNamespace;
1420 class CategoryParser : public ElementParser
1423 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1424 const DPL::String& /*name*/)
1426 return &IgnoringParser::Create;
1429 virtual void Accept(const XmlAttribute& attribute)
1431 if (attribute.name == L"name") {
1432 if (attribute.value.size() > 0) {
1433 m_name = attribute.value;
1438 virtual void Accept(const Element& /*element*/)
1442 virtual void Accept(const Text& /*text*/)
1446 virtual void Verify()
1448 if (m_name.IsNull()) {
1449 LogWarning("name attribute of category element is mandatory - ignoring");
1453 if (m_data.categoryList.find(*m_name) ==
1454 m_data.categoryList.end()) {
1455 m_data.categoryList.insert(*m_name);
1459 explicit CategoryParser(ConfigParserData& data) :
1465 DPL::OptionalString m_name;
1466 ConfigParserData& m_data;
1469 class LiveboxParser : public ElementParser
1473 struct BoxLabelParser : public ElementParser
1475 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1476 const DPL::String& /*name*/)
1478 return &IgnoringParser::Create;
1481 virtual void Accept(const XmlAttribute& attribute)
1485 virtual void Accept(const Element& element)
1488 ConfigurationNamespace::TizenWebAppNamespaceName)
1490 m_properNamespace = true;
1494 virtual void Accept(const Text& text)
1496 if(m_properNamespace)
1497 m_label = text.value;
1500 virtual void Verify()
1502 m_data.m_label = m_label;
1505 BoxLabelParser(ConfigParserData::LiveboxInfo& data) :
1507 m_properNamespace(false),
1513 DPL::String m_label;
1514 bool m_properNamespace;
1515 ConfigParserData::LiveboxInfo& m_data;
1518 struct BoxIconParser : public ElementParser
1520 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1521 const DPL::String& /*name*/)
1523 return &IgnoringParser::Create;
1526 virtual void Accept(const XmlAttribute& attribute)
1528 if(m_properNamespace) {
1529 if (attribute.name == L"src") {
1530 m_icon = attribute.value;
1535 virtual void Accept(const Element& element)
1538 ConfigurationNamespace::TizenWebAppNamespaceName)
1540 m_properNamespace = true;
1544 virtual void Accept(const Text& /*text*/)
1548 virtual void Verify()
1550 m_data.m_icon = m_icon;
1553 explicit BoxIconParser(ConfigParserData::LiveboxInfo& data) :
1555 m_properNamespace(false),
1562 bool m_properNamespace;
1563 ConfigParserData::LiveboxInfo& m_data;
1566 struct BoxContentParser : public ElementParser
1568 struct BoxSizeParser : public ElementParser
1570 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1571 const DPL::String& /*name*/)
1573 return &IgnoringParser::Create;
1576 virtual void Accept(const XmlAttribute& attribute)
1578 if(m_properNamespace) {
1579 if (attribute.name == L"preview") {
1580 m_preview = attribute.value;
1585 virtual void Accept(const Element& element)
1588 ConfigurationNamespace::TizenWebAppNamespaceName)
1590 m_properNamespace = true;
1594 virtual void Accept(const Text& text)
1596 if(m_properNamespace)
1597 m_size = text.value;
1600 virtual void Verify()
1602 std::pair<DPL::String, DPL::String> boxSize;
1603 boxSize.first = m_size;
1604 boxSize.second = m_preview;
1605 m_data.m_boxSize.push_back(boxSize);
1608 explicit BoxSizeParser(ConfigParserData::LiveboxInfo::BoxContentInfo& data) :
1616 DPL::String m_preview;
1617 bool m_properNamespace;
1618 ConfigParserData::LiveboxInfo::BoxContentInfo& m_data;
1621 struct PdParser : public ElementParser
1623 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1624 const DPL::String& name)
1626 return &IgnoringParser::Create;
1629 virtual void Accept(const XmlAttribute& attribute)
1631 if(m_properNamespace) {
1632 if (attribute.name == L"src") {
1633 m_src = attribute.value;
1634 } else if (attribute.name == L"width") {
1635 m_width = attribute.value;
1636 } else if (attribute.name == L"height") {
1637 m_height = attribute.value;
1642 virtual void Accept(const Element& element)
1645 ConfigurationNamespace::TizenWebAppNamespaceName)
1647 m_properNamespace = true;
1651 virtual void Accept(const Text& /*text*/)
1655 virtual void Verify()
1657 m_data.m_pdSrc = m_src;
1658 m_data.m_pdWidth = m_width;
1659 m_data.m_pdHeight = m_height;
1662 explicit PdParser(ConfigParserData::LiveboxInfo::BoxContentInfo& data) :
1664 m_properNamespace(false),
1671 DPL::String m_width;
1672 DPL::String m_height;
1674 bool m_properNamespace;
1675 ConfigParserData::LiveboxInfo::BoxContentInfo& m_data;
1678 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1679 const DPL::String& name)
1681 if (name == L"box-size") {
1682 return DPL::MakeDelegate(this, &LiveboxParser::BoxContentParser::OnBoxSizeElement);
1683 } else if (name == L"pd") {
1684 return DPL::MakeDelegate(this, &LiveboxParser::BoxContentParser::OnPdElement);
1686 ThrowMsg(Exception::ParseError, "No element parser for name: " << name);
1690 virtual void Accept(const XmlAttribute& attribute)
1692 if (m_properNamespace) {
1693 if (attribute.name == L"src")
1694 m_box.m_boxSrc = attribute.value;
1698 virtual void Accept(const Element& element)
1701 ConfigurationNamespace::TizenWebAppNamespaceName)
1703 m_properNamespace = true;
1707 virtual void Accept(const Text& /*text*/)
1711 virtual void Verify()
1713 m_data.m_boxInfo = m_box;
1716 explicit BoxContentParser(ConfigParserData::LiveboxInfo& data) :
1718 m_properNamespace(false),
1723 ElementParserPtr OnBoxSizeElement()
1725 return ElementParserPtr(new BoxSizeParser(m_box));
1728 ElementParserPtr OnPdElement()
1730 return ElementParserPtr(new PdParser(m_box));
1735 bool m_properNamespace;
1736 ConfigParserData::LiveboxInfo& m_data;
1737 ConfigParserData::LiveboxInfo::BoxContentInfo m_box;
1740 virtual ActionFunc GetElementParser(const DPL::String& /*ns*/,
1741 const DPL::String& name)
1743 if (name == L"box-label") {
1744 return DPL::MakeDelegate(this, &LiveboxParser::OnBoxLabelElement);
1745 } else if (name == L"box-icon") {
1746 return DPL::MakeDelegate(this, &LiveboxParser::OnBoxIconElement);
1747 } else if (name == L"box-content") {
1748 return DPL::MakeDelegate(this, &LiveboxParser::OnBoxContentElement);
1750 return &IgnoringParser::Create;
1754 virtual void Accept(const XmlAttribute& attribute)
1756 if (m_properNamespace) {
1757 if (attribute.name == L"id") {
1758 m_liveboxId = attribute.value;
1759 } else if (attribute.name == L"primary") {
1760 m_primary = attribute.value;
1761 } else if (attribute.name == L"auto-launch") {
1762 m_autoLaunch = attribute.value;
1763 } else if (attribute.name == L"update-period") {
1764 m_updatePeriod = attribute.value;
1769 virtual void Accept(const Element& element)
1772 ConfigurationNamespace::TizenWebAppNamespaceName)
1774 m_properNamespace = true;
1778 virtual void Accept(const Text& /*text*/)
1782 virtual void Verify()
1784 m_livebox.m_liveboxId = m_liveboxId;
1785 m_livebox.m_primary = m_primary;
1786 m_livebox.m_autoLaunch = m_autoLaunch;
1787 m_livebox.m_updatePeriod = m_updatePeriod;
1789 m_data.m_livebox.push_back(m_livebox);
1792 explicit LiveboxParser(ConfigParserData& data) :
1795 m_properNamespace(false)
1797 m_livebox = ConfigParserData::LiveboxInfo();
1800 ElementParserPtr OnBoxLabelElement()
1802 return ElementParserPtr(new BoxLabelParser(m_livebox));
1805 ElementParserPtr OnBoxIconElement()
1807 return ElementParserPtr(new BoxIconParser(m_livebox));
1810 ElementParserPtr OnBoxContentElement()
1812 return ElementParserPtr(new BoxContentParser(m_livebox));
1816 ConfigParserData& m_data;
1817 ConfigParserData::LiveboxInfo m_livebox;
1818 DPL::String m_liveboxId;
1819 DPL::String m_primary;
1820 DPL::String m_autoLaunch;
1821 DPL::String m_updatePeriod;
1822 bool m_properNamespace;
1826 ElementParser::ActionFunc WidgetParser::GetElementParser(const DPL::String& /*ns*/,
1827 const DPL::String& name)
1829 FuncMap::const_iterator it = m_map.find(name);
1830 if (it != m_map.end()) {
1833 return &IgnoringParser::Create;
1837 WidgetParser::WidgetParser(ConfigParserData& data) :
1839 m_textDirection(Unicode::EMPTY)
1841 m_map[L"name"] = DPL::MakeDelegate(this, &WidgetParser::OnNameElement);
1842 m_map[L"access"] = DPL::MakeDelegate(this, &WidgetParser::OnAccessElement);
1843 m_map[L"description"] =
1844 DPL::MakeDelegate(this, &WidgetParser::OnDescriptionElement);
1845 m_map[L"author"] = DPL::MakeDelegate(this, &WidgetParser::OnAuthorElement);
1847 DPL::MakeDelegate(this, &WidgetParser::OnLicenseElement);
1848 m_map[L"icon"] = DPL::MakeDelegate(this, &WidgetParser::OnIconElement);
1850 DPL::MakeDelegate(this, &WidgetParser::OnContentElement);
1852 DPL::MakeDelegate(this, &WidgetParser::OnFeatureElement);
1853 m_map[L"preference"] =
1854 DPL::MakeDelegate(this, &WidgetParser::OnPreferenceElement);
1855 m_map[L"link"] = DPL::MakeDelegate(this, &WidgetParser::OnLinkElement);
1857 DPL::MakeDelegate(this, &WidgetParser::OnSettingElement);
1858 // TODO: appservice will be removed
1859 m_map[L"appservice"] = DPL::MakeDelegate(this, &WidgetParser::OnAppControlElement);
1860 m_map[L"application"] = DPL::MakeDelegate(this, &WidgetParser::OnApplicationElement);
1861 m_map[L"splash"] = DPL::MakeDelegate(this, &WidgetParser::OnSplashElement);
1862 m_map[L"background"] = DPL::MakeDelegate(this, &WidgetParser::OnBackgroundElement);
1863 m_map[L"privilege"] = DPL::MakeDelegate(this, &WidgetParser::OnPrivilegeElement);
1864 m_map[L"appcontrol"] = DPL::MakeDelegate(this,
1865 &WidgetParser::OnAppControlElement);
1866 m_map[L"category"] = DPL::MakeDelegate(this,
1867 &WidgetParser::OnCategoryElement);
1868 m_map[L"livebox"] = DPL::MakeDelegate(this, &WidgetParser::OnLiveboxElement);
1872 ElementParserPtr WidgetParser::OnNameElement()
1874 return ElementParserPtr(new NameParser(m_textDirection, m_data));
1877 ElementParserPtr WidgetParser::OnAccessElement()
1879 return ElementParserPtr(new AccessParser(m_data));
1882 ElementParserPtr WidgetParser::OnDescriptionElement()
1884 return ElementParserPtr(new DescriptionParser(m_textDirection, m_data));
1887 ElementParserPtr WidgetParser::OnAuthorElement()
1889 return ElementParserPtr(new AuthorParser(m_textDirection, m_data));
1892 ElementParserPtr WidgetParser::OnLicenseElement()
1894 return ElementParserPtr(new LicenseParser(m_textDirection, m_data));
1897 ElementParserPtr WidgetParser::OnIconElement()
1899 return ElementParserPtr(new IconParser(m_data));
1902 ElementParserPtr WidgetParser::OnContentElement()
1904 return ElementParserPtr(new ContentParser(m_data));
1907 ElementParserPtr WidgetParser::OnFeatureElement()
1909 return ElementParserPtr(new FeatureParser(m_data));
1912 ElementParserPtr WidgetParser::OnPreferenceElement()
1914 return ElementParserPtr(new PreferenceParser(m_data));
1917 ElementParserPtr WidgetParser::OnLinkElement()
1919 return ElementParserPtr(new LinkParser(m_data));
1922 ElementParserPtr WidgetParser::OnSettingElement()
1924 return ElementParserPtr(new SettingParser(m_data));
1927 ElementParserPtr WidgetParser::OnApplicationElement()
1929 return ElementParserPtr(new ApplicationParser(m_data));
1932 ElementParserPtr WidgetParser::OnSplashElement()
1934 return ElementParserPtr(new SplashParser(m_data));
1937 ElementParserPtr WidgetParser::OnBackgroundElement()
1939 return ElementParserPtr(new BackgroundParser(m_data));
1942 ElementParserPtr WidgetParser::OnPrivilegeElement()
1944 return ElementParserPtr(new PrivilegeParser(m_data));
1947 ElementParserPtr WidgetParser::OnAppControlElement()
1949 return ElementParserPtr(new AppControlParser(m_data));
1952 ElementParserPtr WidgetParser::OnCategoryElement()
1954 return ElementParserPtr(new CategoryParser(m_data));
1957 ElementParserPtr WidgetParser::OnLiveboxElement()
1959 return ElementParserPtr(new LiveboxParser(m_data));
1962 void WidgetParser::Accept(const Element& element)
1964 if (element.ns != ConfigurationNamespace::W3CWidgetNamespaceName &&
1965 element.ns != ConfigurationNamespace::TizenWebAppNamespaceName)
1967 ThrowMsg(Exception::ParseError,
1968 "Wrong xml namespace for widget element");
1972 void WidgetParser::Accept(const Text& /*text*/)
1974 ThrowMsg(Exception::ParseError, "widged element must be empty");
1977 void WidgetParser::Accept(const XmlAttribute& attribute)
1979 if (attribute.name == L"id") {
1980 LibIri::Wrapper iri(DPL::ToUTF8String(attribute.value).c_str());
1981 //If may important tests starts to fail this test we will have
1982 //to consider commenting this test out again.
1983 if (iri.Validate()) {
1984 m_data.widget_id = attribute.value;
1985 NormalizeString(m_data.widget_id);
1987 LogWarning("Widget id validation failed: " << attribute.value);
1989 } else if (attribute.name == L"version") {
1990 m_version = attribute.value;
1991 NormalizeString(m_version);
1992 } else if (attribute.name == L"min-version") {
1993 LogInfo("min-version attribute was found. Value: " << attribute.value);
1994 m_minVersion = attribute.value;
1995 NormalizeString(m_minVersion);
1996 m_data.minVersionRequired = m_minVersion;
1997 } else if (attribute.name == L"height") {
1998 DPL::OptionalString value = attribute.value;
1999 NormalizeString(value);
2000 std::string v = DPL::ToUTF8String(*value);
2003 unsigned char c = v.c_str()[0];
2004 if (c >= '0' && c <= '9') {
2006 for (size_t i = 0; i < v.size(); ++i) {
2008 if (c >= '0' && c <= '9') {
2015 m_data.height = val;
2018 } else if (attribute.name == L"width") {
2019 DPL::OptionalString value = attribute.value;
2020 NormalizeString(value);
2021 std::string v = DPL::ToUTF8String(*value);
2024 unsigned char c = v.c_str()[0];
2025 if (c >= '0' && c <= '9') {
2027 for (size_t i = 0; i < v.size(); ++i) {
2029 if (c >= '0' && c <= '9') {
2039 } else if (attribute.name == L"viewmodes") {
2040 DPL::Tokenize(attribute.value,
2042 std::inserter(m_windowModes,
2043 m_windowModes.end()),
2045 } else if (attribute.name == L"dir") {
2046 m_textDirection = Unicode::ParseDirAttribute(attribute);
2047 } else if (L"defaultlocale" == attribute.name) {
2048 if (!m_defaultlocale) {
2049 m_defaultlocale = attribute.value;
2050 NormalizeString(m_defaultlocale);
2051 if (!LanguageSubtagRstTreeSingleton::Instance().ValidateLanguageTag(
2052 DPL::ToUTF8String(*m_defaultlocale))) {
2053 LogWarning("Language tag: " <<
2054 m_defaultlocale << " is not valid");
2055 m_defaultlocale = DPL::OptionalString::Null;
2058 LogDebug("Default Locale Found " << m_defaultlocale);
2060 LogWarning("Ignoring subsequent default locale");
2063 //Any other value consider as a namespace definition
2064 } else if (attribute.name == L"xmlns" || attribute.prefix == L"xmlns") {
2065 LogInfo("Namespace domain: " << attribute.name);
2066 LogInfo("Namespace value: " << attribute.value);
2067 m_nameSpaces[attribute.name] = attribute.value;
2069 LogError("Unknown attirbute: namespace=" << attribute.ns <<
2070 ", name=" << attribute.name <<
2071 ", value=" << attribute.value);
2075 void WidgetParser::Verify()
2077 FOREACH(mode, m_windowModes) {
2078 if (L"windowed" == *mode || L"floating" == *mode ||
2079 L"fullscreen" == *mode || L"maximized" == *mode ||
2080 L"minimized" == *mode) {
2081 m_data.windowModes.insert(*mode);
2084 if (!m_version.IsNull()) {
2085 Unicode::UpdateTextWithDirectionMark(m_textDirection, &*m_version);
2086 m_data.version = m_version;
2088 m_data.defaultlocale = m_defaultlocale;
2089 FOREACH(ns, m_nameSpaces) {
2090 m_data.nameSpaces.insert(ns->second);