Merge "fix: use EINA_* booleans instread of TRUE/FALSE" into tizen
[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/wrt-dao-ro/widget_config.h>
27 #include <dpl/log/log.h>
28 #include <dpl/optional_typedefs.h>
29 // to apply widget default locales instead of calling localizeWidgetModel()
30 #include <dpl/localization/LanguageTagsProvider.h>
31
32 namespace Domain {
33 std::string getTimestamp()
34 {
35     struct timeval tv;
36     char buff[128];
37
38     gettimeofday(&tv, NULL);
39     sprintf(buff, "%lf", (double)tv.tv_sec + (double)tv.tv_usec / 1000000.0f);
40     LogDebug("timestamp: " << buff);
41     return std::string(buff);
42 }
43
44 std::shared_ptr<WidgetModel> deserializeWidgetModel(const std::string& tizenId)
45 {
46     std::shared_ptr<WidgetModel> model;
47     DPL::String dplTizenId(DPL::FromUTF8String(tizenId));
48     if (WrtDB::WidgetDAOReadOnly::isWidgetInstalled(dplTizenId)) {
49         LogDebug("Widget installed - creating model");
50         model.reset(new WidgetModel(tizenId));
51
52         WrtDB::WidgetDAOReadOnly dao(dplTizenId);
53         DPL::String pkgId = dao.getTizenPkgId();
54         model->PersistentStoragePath.Set(
55             DPL::FromUTF8String(
56                 WrtDB::WidgetConfig::GetWidgetPersistentStoragePath(pkgId)));
57         model->TemporaryStoragePath.Set(
58             DPL::FromUTF8String(
59                 WrtDB::WidgetConfig::GetWidgetTemporaryStoragePath(pkgId)));
60
61         DPL::Optional<DPL::String> defloc = model->defaultlocale.Get();
62         if (!defloc.IsNull()) {
63             LanguageTagsProviderSingleton::Instance().addWidgetDefaultLocales(
64                 *defloc);
65         }
66
67         WrtDB::WidgetAccessInfoList widgetAccessInfoList;
68         // widgetAccessInfoList is output parameter
69         dao.getWidgetAccessInfo(widgetAccessInfoList);
70         model->AccessList.Set(widgetAccessInfoList);
71
72         // Widget app-control information data
73         WrtDB::WidgetAppControlList widgetApplicationControlList;
74         // widgetApplicationControlList is output parameter
75         dao.getAppControlList(widgetApplicationControlList);
76         model->AppControlList.Set(widgetApplicationControlList);
77
78         // Set Widget Settings
79         WrtDB::WidgetSettings widgetSettings;
80         dao.getWidgetSettings(widgetSettings);
81         model->SettingList.Set(widgetSettings);
82     } else {
83         LogError("Widget is not installed - model not created");
84     }
85     return model;
86 }
87
88 } //Namespace Domain
89