Source code formating unification
[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 inline std::string GetWidgetBasePath(DPL::String tzPkgId)
35 {
36     return PathBuilder()
37                .Append(GlobalConfig::GetWidgetUserDataPath())
38                .Append(DPL::ToUTF8String(tzPkgId))
39                .GetFullPath();
40 }
41
42 inline std::string GetWidgetWebLocalStoragePath(DPL::String tzPkgId)
43 {
44     return PathBuilder(GetWidgetBasePath(tzPkgId))
45                .Append(GlobalConfig::GetWidgetLocalStoragePath())
46                .GetFullPath();
47 }
48
49 inline std::string GetWidgetPersistentStoragePath(DPL::String tzPkgId)
50 {
51     return PathBuilder(GetWidgetBasePath(tzPkgId))
52                .Append(GlobalConfig::GetWidgetPrivateStoragePath())
53                .GetFullPath();
54 }
55
56 inline std::string GetWidgetTemporaryStoragePath(DPL::String tzPkgId)
57 {
58     return PathBuilder()
59                .Append(GlobalConfig::GetTmpDirPath())
60                .Append(DPL::ToUTF8String(tzPkgId))
61                .GetFullPath();
62 }
63
64 inline std::string GetWidgetDesktopFilePath(DPL::String tzPkgId)
65 {
66     return PathBuilder()
67                .Append(GlobalConfig::GetUserWidgetDesktopPath())
68                .Append(DPL::ToUTF8String(tzPkgId))
69                .Concat(".desktop")
70                .GetFullPath();
71 }
72 } // namespace WidgetConfig
73 } // namespace WrtDB
74
75 #endif