update wrt_0.8.107
[platform/framework/web/wrt.git] / src / domain / widget_localize_model.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 /**
17  * @file    widget_localize_model.cpp
18  * @author  Piotr Marcinkiewicz (p.marcinkiew@samsung.com)
19  * @version 1.0
20  * @brief   Widget localize localizes WidgetModel from system configuration
21  */
22
23 #include <dpl/foreach.h>
24 #include <dpl/log/log.h>
25 #include <dpl/optional_typedefs.h>
26 #include <dpl/localization/LanguageTagsProvider.h>
27
28 namespace Domain {
29
30 //TODO this should be moved and renamed in LanguageTagsProviderSingleton
31 void localizeWidgetModel(const DPL::OptionalString& defaultLocale)
32 {
33     LogDebug("Default locale for widget: " << defaultLocale);
34     LanguageTags tags = LanguageTagsProviderSingleton::Instance().getLanguageTags();
35     if (!!defaultLocale &&
36         std::find(tags.begin(), tags.end(), *defaultLocale) == tags.end())
37     {
38         if (tags.size() < 2) {
39             tags.push_front(*defaultLocale);
40         } else {
41             LanguageTags::iterator placeToInsert = tags.end();
42             --placeToInsert;
43             if (*placeToInsert != L"") { ++placeToInsert; }
44             tags.insert(placeToInsert, *defaultLocale);
45         }
46     }
47     LogDebug("Setting runtime widget locale:");
48     FOREACH(it, tags) {
49         LogDebug("Locale: " << *it);
50     }
51     LanguageTagsProviderSingleton::Instance().setLanguageTags(tags);
52 }
53
54 } //Namespace Domain