Font configuration filename retreived from spec file
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / tizen-platform-abstraction.cpp
1 /*
2  * Copyright (c) 2015 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 #include "tizen-platform-abstraction.h"
19
20 #ifndef DALI_PROFILE_UBUNTU
21 #include <vconf.h>
22 #endif // DALI_PROFILE_UBUNTU
23 #include <dirent.h>
24
25 #include <dali/integration-api/debug.h>
26 #include <dali/integration-api/bitmap.h>
27 #include <dali/integration-api/resource-types.h>
28
29 // INTERNAL INCLUDES
30 #include "resource-loader/resource-loader.h"
31 #include "tizen-font-configuration-parser.h"
32 #include "image-loaders/image-loader.h"
33 #include "portable/file-closer.h"
34
35 namespace Dali
36 {
37
38 Integration::PlatformAbstraction* CreatePlatformAbstraction()
39 {
40   return new TizenPlatform::TizenPlatformAbstraction();
41 }
42
43
44 namespace TizenPlatform
45 {
46
47 namespace
48 {
49 const unsigned int NANOSECS_TO_MICROSECS( 1000 );               ///< 1000 nanoseconds = 1 microsecond
50 }
51
52 TizenPlatformAbstraction::TizenPlatformAbstraction()
53 : mResourceLoader(new ResourceLoader),
54   mDataStoragePath( "" )
55 {
56 }
57
58 TizenPlatformAbstraction::~TizenPlatformAbstraction()
59 {
60   delete mResourceLoader;
61 }
62
63 void TizenPlatformAbstraction::GetTimeMicroseconds(unsigned int &seconds, unsigned int &microSeconds)
64 {
65   timespec time;
66   clock_gettime(CLOCK_MONOTONIC, &time);
67   seconds = time.tv_sec;
68   microSeconds = time.tv_nsec / NANOSECS_TO_MICROSECS;
69 }
70
71 void TizenPlatformAbstraction::Suspend()
72 {
73   if (mResourceLoader)
74   {
75     mResourceLoader->Pause();
76   }
77 }
78
79 void TizenPlatformAbstraction::Resume()
80 {
81   if (mResourceLoader)
82   {
83     mResourceLoader->Resume();
84   }
85 }
86
87 void TizenPlatformAbstraction::GetDefaultFontDescription( std::string& fontFamily, std::string& fontStyle ) const
88 {
89   FontConfigurationParser::Parse(FONT_CONFIGURATION_FILE, fontFamily, fontStyle);
90 }
91
92 int TizenPlatformAbstraction::GetDefaultFontSize() const
93 {
94   int fontSize( -1 );
95
96 #ifndef DALI_PROFILE_UBUNTU
97   vconf_get_int( VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE, &fontSize );
98 #endif // DALI_PROFILE_UBUNTU
99
100   return fontSize;
101 }
102
103 ImageDimensions TizenPlatformAbstraction::GetClosestImageSize( const std::string& filename,
104                                                                ImageDimensions size,
105                                                                FittingMode::Type fittingMode,
106                                                                SamplingMode::Type samplingMode,
107                                                                bool orientationCorrection )
108 {
109   return ImageLoader::GetClosestImageSize( filename, size, fittingMode, samplingMode, orientationCorrection );
110 }
111
112 ImageDimensions TizenPlatformAbstraction::GetClosestImageSize( Integration::ResourcePointer resourceBuffer,
113                                                                ImageDimensions size,
114                                                                FittingMode::Type fittingMode,
115                                                                SamplingMode::Type samplingMode,
116                                                                bool orientationCorrection )
117 {
118   return ImageLoader::GetClosestImageSize( resourceBuffer, size, fittingMode, samplingMode, orientationCorrection );
119 }
120
121 void TizenPlatformAbstraction::LoadResource(const Integration::ResourceRequest& request)
122 {
123   if (mResourceLoader)
124   {
125     mResourceLoader->LoadResource(request);
126   }
127 }
128
129 Integration::ResourcePointer TizenPlatformAbstraction::LoadResourceSynchronously(const Integration::ResourceType& resourceType, const std::string& resourcePath)
130 {
131   return ImageLoader::LoadResourceSynchronously( resourceType, resourcePath );
132 }
133
134 Integration::BitmapPtr TizenPlatformAbstraction::DecodeBuffer( const Integration::ResourceType& resourceType, uint8_t * buffer, size_t size )
135 {
136   Integration::BitmapPtr bitmap = 0;
137
138   Dali::Internal::Platform::FileCloser fileCloser( buffer, size, "rb" );
139   FILE * const fp = fileCloser.GetFile();
140   if( fp )
141   {
142     bool result = ImageLoader::ConvertStreamToBitmap( resourceType, "", fp, StubbedResourceLoadingClient(), bitmap );
143     if ( !result || !bitmap )
144     {
145       bitmap.Reset();
146       DALI_LOG_WARNING( "Unable to decode bitmap supplied as in-memory blob.\n" );
147     }
148   }
149
150   return bitmap;
151 }
152
153 void TizenPlatformAbstraction::CancelLoad(Integration::ResourceId id, Integration::ResourceTypeId typeId)
154 {
155   if (mResourceLoader)
156   {
157     mResourceLoader->CancelLoad(id, typeId);
158   }
159 }
160
161 void TizenPlatformAbstraction::GetResources(Integration::ResourceCache& cache)
162 {
163   if (mResourceLoader)
164   {
165     mResourceLoader->GetResources(cache);
166   }
167 }
168
169 bool TizenPlatformAbstraction::LoadFile( const std::string& filename, Dali::Vector< unsigned char >& buffer ) const
170 {
171   bool result = false;
172
173   if( mResourceLoader )
174   {
175     result = mResourceLoader->LoadFile( filename, buffer );
176   }
177
178   return result;
179 }
180
181 std::string TizenPlatformAbstraction::LoadFile( const std::string& filename )
182 {
183   std::string result;
184   if (mResourceLoader)
185   {
186     result = mResourceLoader->LoadFile(filename);
187   }
188
189   return result;
190 }
191
192 void TizenPlatformAbstraction::JoinLoaderThreads()
193 {
194   delete mResourceLoader;
195   mResourceLoader = NULL;
196 }
197
198 bool TizenPlatformAbstraction::LoadShaderBinaryFile( const std::string& filename, Dali::Vector< unsigned char >& buffer ) const
199 {
200   bool result = false;
201
202 #ifdef SHADERBIN_CACHE_ENABLED
203   std::string path;
204
205   // First check the system location where shaders are stored at install time:
206   if( mResourceLoader )
207   {
208     path = DALI_SHADERBIN_DIR;
209     path += filename;
210     result = mResourceLoader->LoadFile( path, buffer );
211   }
212
213   // Fallback to the cache of shaders stored after previous runtime compilations:
214   // On desktop this looks in the current working directory that the app was launched from.
215   if( mResourceLoader && result == false )
216   {
217     path = mDataStoragePath;
218     path += filename;
219     result = mResourceLoader->LoadFile( path, buffer );
220   }
221 #endif
222
223   return result;
224 }
225
226 bool TizenPlatformAbstraction::SaveShaderBinaryFile( const std::string& filename, const unsigned char * buffer, unsigned int numBytes ) const
227 {
228   bool result = false;
229
230 #ifdef SHADERBIN_CACHE_ENABLED
231
232     // Fallback to the cache of shaders stored after previous runtime compilations:
233     // On desktop this looks in the current working directory that the app was launched from.
234     if( mResourceLoader )
235     {
236       std::string path = mDataStoragePath;
237       path += filename;
238       result = mResourceLoader->SaveFile( path, buffer, numBytes );
239     }
240 #endif
241
242   return result;
243 }
244
245 void TizenPlatformAbstraction::SetDataStoragePath( const std::string& path )
246 {
247   mDataStoragePath = path;
248 }
249
250 }  // namespace TizenPlatform
251
252 }  // namespace Dali