Update User Agent String
[framework/web/wrt-commons.git] / modules / widget_dao / include / dpl / wrt-dao-ro / widget_config.h
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_config.h
18  * @author  Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for widget config.
21  */
22 #ifndef SRC_DOMAIN_WIDGET_CONFIG_H
23 #define SRC_DOMAIN_WIDGET_CONFIG_H
24
25 #include <string>
26 #include <dpl/string.h>
27
28 #include <dpl/wrt-dao-ro/global_config.h>
29 #include <dpl/wrt-dao-ro/path_builder.h>
30 #include <dpl/wrt-dao-ro/common_dao_types.h>
31
32 namespace WrtDB {
33 namespace WidgetConfig {
34
35 inline std::string GetWidgetBasePath(DPL::String pkgName)
36 {
37     return PathBuilder()
38                .Append(GlobalConfig::GetUserInstalledWidgetPath())
39                .Append(DPL::ToUTF8String(pkgName))
40                .GetFullPath();
41 }
42
43 inline std::string GetWidgetWebLocalStoragePath(DPL::String pkgName)
44 {
45     return PathBuilder(GetWidgetBasePath(pkgName))
46                .Append(GlobalConfig::GetWidgetLocalStoragePath())
47                .GetFullPath();
48 }
49
50 inline std::string GetWidgetPersistentStoragePath(DPL::String pkgName)
51 {
52     return PathBuilder(GetWidgetBasePath(pkgName))
53                .Append(GlobalConfig::GetWidgetPrivateStoragePath())
54                .GetFullPath();
55 }
56
57 inline std::string GetWidgetTemporaryStoragePath(DPL::String pkgName)
58 {
59     return PathBuilder()
60                .Append(GlobalConfig::GetTmpDirPath())
61                .Append(DPL::ToUTF8String(pkgName))
62                .GetFullPath();
63 }
64
65 inline std::string GetWidgetDesktopFilePath(DPL::String pkgName)
66 {
67     return PathBuilder()
68                .Append(GlobalConfig::GetUserWidgetDesktopPath())
69                .Append(DPL::ToUTF8String(pkgName))
70                .Concat(".desktop")
71                .GetFullPath();
72 }
73 } // namespace WidgetConfig
74 } // namespace WrtDB
75
76 #endif