DALi Version 2.0.53
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / asset-manager / asset-manager.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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
18 // CLASS HEADER
19 #include <dali-toolkit/devel-api/asset-manager/asset-manager.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/environment-variable.h>
23
24 namespace
25 {
26 #define TOKEN_STRING(x) #x
27
28 } // unnamed namespace
29
30 namespace Dali
31 {
32 namespace Toolkit
33 {
34 const std::string AssetManager::GetDaliImagePath()
35 {
36   /**
37    * @note DALI_IMAGE_DIR is a macro that can be defined either with a file system path or zero.
38    *       If it's defined as zero then the value is retrieved from an environment variable
39    *       named DALI_IMAGE_DIR.
40    */
41   return (nullptr == DALI_IMAGE_DIR) ? EnvironmentVariable::GetEnvironmentVariable(TOKEN_STRING(DALI_IMAGE_DIR)) : DALI_IMAGE_DIR;
42 }
43
44 const std::string AssetManager::GetDaliSoundPath()
45 {
46   /**
47    * @note DALI_SOUND_DIR is a macro that can be defined either with a file system path or zero.
48    *       If it's defined as zero then the value is retrieved from an environment variable
49    *       named DALI_SOUND_DIR.
50    */
51   return (nullptr == DALI_SOUND_DIR) ? EnvironmentVariable::GetEnvironmentVariable(TOKEN_STRING(DALI_SOUND_DIR)) : DALI_SOUND_DIR;
52 }
53
54 const std::string AssetManager::GetDaliStylePath()
55 {
56   /**
57    * @note DALI_STYLE_DIR is a macro that can be defined either with a file system path or zero.
58    *       If it's defined as zero then the value is retrieved from an environment variable
59    *       named DALI_STYLE_DIR.
60    */
61   return (nullptr == DALI_STYLE_DIR) ? EnvironmentVariable::GetEnvironmentVariable(TOKEN_STRING(DALI_STYLE_DIR)) : DALI_STYLE_DIR;
62 }
63
64 const std::string AssetManager::GetDaliStyleImagePath()
65 {
66   /**
67    * @note DALI_STYLE_IMAGE_DIR is a macro that can be defined either with a file system path or zero.
68    *       If it's defined as zero then the value is retrieved from an environment variable
69    *       named DALI_STYLE_IMAGE_DIR.
70    */
71   return (nullptr == DALI_STYLE_IMAGE_DIR) ? EnvironmentVariable::GetEnvironmentVariable(TOKEN_STRING(DALI_STYLE_IMAGE_DIR)) : DALI_STYLE_IMAGE_DIR;
72 }
73
74 const std::string AssetManager::GetDaliDataReadOnlyPath()
75 {
76   /**
77    * @note DALI_DATA_READ_ONLY_DIR is a macro that can be defined either with a file system path or zero.
78    *       If it's defined as zero then the value is retrieved from an environment variable
79    *       named DALI_DATA_READ_ONLY_DIR.
80    */
81   return (nullptr == DALI_DATA_READ_ONLY_DIR) ? EnvironmentVariable::GetEnvironmentVariable(TOKEN_STRING(DALI_DATA_READ_ONLY_DIR)) : DALI_DATA_READ_ONLY_DIR;
82 }
83
84 } // namespace Toolkit
85
86 } // namespace Dali