Source code formating unification
[platform/framework/web/wrt.git] / src / domain / widget_deserialize_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_deserialize_model.h
18  * @author  Piotr Marcinkiewicz (p.marcinkiew@samsung.com)
19  * @version 1.0
20  * @brief   Widget deserialization creates WidgetModel from WidgetDAOReadOnly
21  */
22
23 #include "widget_model.h"
24
25 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
26 #include <dpl/log/log.h>
27 // to apply widget default locales instead of calling localizeWidgetModel()
28 #include <dpl/localization/LanguageTagsProvider.h>
29
30 namespace Domain {
31 std::shared_ptr<WidgetModel> deserializeWidgetModel(const std::string& tizenId)
32 {
33     std::shared_ptr<WidgetModel> model;
34     DPL::String dplTizenId(DPL::FromUTF8String(tizenId));
35     if (WrtDB::WidgetDAOReadOnly::isWidgetInstalled(dplTizenId)) {
36         LogDebug("Widget installed - creating model");
37         model.reset(new WidgetModel(tizenId));
38
39         WrtDB::WidgetDAOReadOnly dao(dplTizenId);
40         DPL::Optional<DPL::String> defloc = model->defaultlocale.Get();
41         if (!defloc.IsNull()) {
42             LanguageTagsProviderSingleton::Instance().addWidgetDefaultLocales(
43                 *defloc);
44         }
45
46         WrtDB::WidgetAccessInfoList widgetAccessInfoList;
47         // widgetAccessInfoList is output parameter
48         dao.getWidgetAccessInfo(widgetAccessInfoList);
49         model->AccessList.Set(widgetAccessInfoList);
50
51         // Widget application service information data
52         WidgetApplicationServiceList widgetApplicationServiceList;
53         // widgetApplicationServiceList is output parameter
54         dao.getAppServiceList(widgetApplicationServiceList);
55         model->AppServiceList.Set(widgetApplicationServiceList);
56
57         // Set Widget Settings
58         WidgetSettings widgetSettings;
59         dao.getWidgetSettings(widgetSettings);
60         model->SettingList.Set(widgetSettings);
61     } else {
62         LogError("Widget is not installed - model not created");
63     }
64     return model;
65 }
66 } //Namespace Domain
67