Conversion to Apache 2.0 license
[platform/core/uifw/dali-core.git] / dali / integration-api / platform-abstraction.h
1 #ifndef __DALI_INTEGRATION_PLATFORM_ABSTRACTION_H__
2 #define __DALI_INTEGRATION_PLATFORM_ABSTRACTION_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <stdint.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/integration-api/resource-cache.h>
26 #include <dali/integration-api/glyph-set.h>
27
28 namespace Dali
29 {
30
31 typedef std::vector<uint32_t> TextArray;
32
33 namespace Integration
34 {
35
36 class Bitmap;
37 class DynamicsFactory;
38
39 /**
40  * PlatformAbstraction is an abstract interface, used by Dali to access platform specific services.
41  * A concrete implementation must be created for each platform, and provided when creating the
42  * Dali::Integration::Core object.
43  */
44 class DALI_IMPORT_API PlatformAbstraction
45 {
46 public:
47
48   // Dali Lifecycle
49
50   /**
51    * Get the monotonic time since an unspecified reference point.
52    * This is used by Dali to calculate time intervals during animations; the interval is
53    * recalculated when Dali is resumed with Dali::Integration::Core::Resume().
54    * Multi-threading note: this method may be called from either the main or rendering thread.
55    * @param[out] seconds The time in seconds since the reference point.
56    * @param[out] microSeconds The remainder in microseconds.
57    */
58   virtual void GetTimeMicroseconds(unsigned int& seconds, unsigned int& microSeconds) = 0;
59
60   /**
61    * Tell the platform abstraction that Dali is ready to pause, such as when the
62    * application enters a background state.
63    * Allows background threads to pause their work until Resume() is called.
64    * This is a good time to release recreatable data such as memory caches
65    * to cooperate with other apps and reduce the chance of this one being
66    * force-killed in a low memory situation.
67    */
68   virtual void Suspend() {} ///!ToDo: Make pure virtual once dali-adaptor patch is in place = 0;
69
70   /**
71    * Tell the platform abstraction that Dali is resuming from a pause, such as
72    * when it has transitioned from a background state to a foreground one.
73    * It is time to wake up sleeping background threads and recreate memory
74    * caches and other temporary data.
75    */
76   virtual void Resume() {} ///!ToDo: Make pure virtual once dali-adaptor patch is in place = 0;
77
78   // Resource Loading
79
80   /**
81    * Determine the size of an image the resource loaders will provide when given the same
82    * image attributes.
83    * This is a synchronous request.
84    * This function is used to determine the size of an image before it has loaded.
85    * @param[in] filename name of the image.
86    * @param[in] attributes The attributes used to load the image
87    * @param[out] closestSize Size of the image that will be loaded.
88    */
89   virtual void GetClosestImageSize( const std::string& filename,
90                                     const ImageAttributes& attributes,
91                                     Vector2& closestSize ) = 0;
92
93   /**
94    * Determine the size of an image the resource loaders will provide when given the same
95    * image attributes.
96    * This is a synchronous request.
97    * This function is used to determine the size of an image before it has loaded.
98    * @param[in] resourceBuffer A pointer to an encoded image buffer
99    * @param[in] attributes The attributes used to load the image
100    * @param[out] closestSize Size of the image that will be loaded.
101    */
102   virtual void GetClosestImageSize( ResourcePointer resourceBuffer,
103                                     const ImageAttributes& attributes,
104                                     Vector2& closestSize ) = 0;
105
106   /**
107    * Request a resource from the native filesystem. This is an asynchronous request.
108    * After this method returns, FillResourceCache() will be called to retrieve the result(s) of the
109    * resource loading operation. Loading resources in separate worker thread is recommended.
110    * Multi-threading note: this method will be called from the main thread only i.e. not
111    * from within the Core::Render() method.
112    * @param[in] request A unique resource request. This is not guaranteed to survive after LoadResource
113    * returns; the loading process should take a copy.
114    */
115   virtual void LoadResource(const ResourceRequest& request) = 0;
116
117   /**
118    * Request a resource from the native filesystem. This is a synchronous request, i.e.
119    * it will block the main loop whilst executing. It should therefore be used sparingly.
120    *
121    * Multi-threading note: this method will be called from the main thread only i.e. not
122    * from within the Core::Render() method.
123    * @param[in] resourceType The type of resource to load
124    * @param[in] resourcePath The path to the resource
125    * @return A pointer to a ref-counted resource
126    */
127   virtual ResourcePointer LoadResourceSynchronously( const ResourceType& resourceType, const std::string& resourcePath ) = 0;
128
129   /**
130    * Request that a resource be saved to the native filesystem.
131    * This is an asynchronous request.
132    */
133   virtual void SaveResource(const ResourceRequest& request) = 0;
134   /**
135    * Cancel an ongoing LoadResource() request.
136    * Multi-threading note: this method will be called from the main thread only i.e. not
137    * from within the Core::Render() method.
138    * @param[in] id The ID of the resource to cancel.
139    * @param[in] typeId The ID type of the resource to cancel.
140    */
141   virtual void CancelLoad(ResourceId id, ResourceTypeId typeId) = 0;
142
143   /**
144    * Query whether any asynchronous LoadResource() requests are ongoing.
145    * Multi-threading note: this method may be called from either the main or rendering thread.
146    * @return True if resources are being loaded.
147    */
148   virtual bool IsLoading() = 0;
149
150   /**
151    * Retrieve newly loaded resources.
152    * If no resources have finished loading, then this method returns immediately.
153    * Multi-threading note: this method will be called from the update thread, from within
154    * the UpdateManager::Update() method.
155    * @param[in] cache The resource cache to fill.
156    */
157   virtual void GetResources(ResourceCache& cache) = 0;
158
159   /**
160    * Waits for the asynchronous loader threads (if any) to finish.
161    * This will be only be called before Core destruction; no resource loading requests will be
162    * made following this method.
163    */
164   virtual void JoinLoaderThreads() = 0;
165
166   // Font Queries
167
168   /**
169    * Called by Dali to retrieve the default font family for the platform.
170    * Multi-threading note: this method will be called from the main thread only i.e. not
171    * from within the Core::Render() method.
172    * @return The default font family.
173    */
174   virtual std::string GetDefaultFontFamily() const = 0;
175
176   /**
177    * Called by Dali to retrieve the default font size for the platform in points.
178    * Multi-threading note: this method will be called from the main thread only i.e. not
179    * from within the Core::Render() method.
180    * @return The default font size.
181    */
182   virtual const float GetDefaultFontSize() const = 0;
183
184   /**
185    * Gets a font line height to match a given caps-height
186    * @param[in] fontFamily The name of the font's family
187    * @param[in] fontStyle  The style of the font
188    * @param[in] capsHeight The caps-height in pixels
189    */
190   virtual const PixelSize GetFontLineHeightFromCapsHeight(const std::string& fontFamily, const std::string& fontStyle, const CapsHeight& capsHeight) const = 0;
191
192   /**
193    * Called by Font objects to synchronously query glyph data.
194    * @note Font's style goes inside the textRequest parameter
195    * @param[in] textRequest  Resource request. Includes font's style.
196    * @param[in] fontFamily   The name of the font's family
197    * @param[in] getBitmap    Whether to load bitmaps for the symbols as well
198    * @return A GlyphSet pointer with a list of the requested glyph metrics.
199    */
200   virtual Integration::GlyphSet* GetGlyphData ( const Integration::TextResourceType& textRequest,
201                                                 const std::string& fontFamily,
202                                                 bool getBitmap) const = 0;
203
204   /**
205    * Called by GlyphResourceManager to synchronously load glyph data.
206    * @param[in] textRequest     resource request
207    * @param[in] fontFamily      name of the font's family
208    * @return A GlyphSet pointer containing the requested glyph bitmaps.
209    */
210   virtual Integration::GlyphSet* GetCachedGlyphData( const TextResourceType& textRequest,
211                                                      const std::string& fontFamily ) const = 0;
212
213   /**
214    * Called by Font objects to synchronously query global font metrics.
215    * @param[in] fontFamily     The name of the font's family
216    * @param[in] fontStyle      The style of the font
217    * @param[out] globalMetrics font requested global metrics.
218    */
219   virtual void GetGlobalMetrics( const std::string& fontFamily,
220                                  const std::string& fontStyle,
221                                  Integration::GlobalMetrics& globalMetrics ) const = 0;
222
223   /**
224    * Sets horizontal and vertical pixels per inch value that is used by the display
225    * @param[in] dpiHorizontal horizontal dpi value
226    * @param[in] dpiVertical   vertical dpi value
227    */
228   virtual void SetDpi (unsigned int dpiHorizontal, unsigned int dpiVertical) = 0;
229
230   /**
231    * Returns the name of the font's family for displayed text.
232    * If possible, the returned font name should be able to display all characters in text.
233    * Otherwise returns closest match.
234    * @param[in] charsRequested displayed text
235    */
236   virtual std::string GetFontFamilyForChars(const TextArray& charsRequested) const = 0;
237
238   /**
239    * Checks whether all characters of text could be displayed with specified font family.
240    * @param[in] fontFamily     The name of the font's family
241    * @param[in] fontStyle      The style of the font
242    * @param[in] text     displayed text
243    */
244   virtual bool AllGlyphsSupported(const std::string& fontFamily, const std::string& fontStyle, const TextArray& text) const = 0;
245
246   /**
247    * Checks whether fontName is a valid font family name.
248    * closestMatch is always set to the best matching font or the system default font if no near match is detected.
249    * @param[in] fontFamily     The name of the font's family
250    * @param[in] fontStyle      The style of the font
251    * @param[out] isDefaultSystemFont Whether this font has been created with a default system font.
252    * @param[out] closestFontFamilyMatch Name of the font's family found based on the user input family's name
253    * @param[out] closestFontStyleMatch  Name of the font's style found based on the user input font's style
254    * @return     true if fontName is valid, false otherwise
255    */
256   virtual bool ValidateFontFamilyName(const std::string& fontFamily, const std::string& fontStyle, bool& isDefaultSystemFont, std::string& closestFontFamilyMatch, std::string& closestFontStyleMatch) const = 0;
257
258   /**
259    * The mode for GetFontList()
260    */
261   enum FontListMode
262   {
263     LIST_SYSTEM_FONTS,
264     LIST_APPLICATION_FONTS,
265     LIST_ALL_FONTS
266   };
267
268   /**
269    * Gets a list of fonts installed on the system.
270    * @param fontListMode which fonts to include in the list
271    * @return a list of font family names
272    */
273   virtual std::vector<std::string> GetFontList( FontListMode mode ) const = 0;
274
275   /**
276    * Load a file into a buffer
277    * @param[in] filename The filename to load
278    * @param[out] buffer  A buffer to receive the file.
279    *                     The buffer is implemeneted with a std::vector which is resized to fit the file.
280    * @result             true if the file is loaded.
281    */
282   virtual bool LoadFile( const std::string& filename, std::vector< unsigned char >& buffer ) const = 0;
283
284   /**
285    * Load a file into a buffer
286    * @param[in] filename The filename to save
287    * @param[out] buffer  A buffer containing some data
288    *                     The buffer is implemeneted with a std::vector. The size() member specifies the buffer length.
289    * @result             true if the file is saved.
290    */
291   virtual bool SaveFile(const std::string& filename, std::vector< unsigned char >& buffer) const = 0;
292
293   /**
294    * This method re-loads the device defaults that Dali uses. Adaptor will call this
295    * when devices settings change.
296    */
297   virtual void UpdateDefaultsFromDevice() = 0;
298
299   /**
300    * Get a pointer to the DynamicsFactory.
301    */
302   virtual DynamicsFactory* GetDynamicsFactory() = 0;
303
304   /**
305    * Read from the metrics cache into the global metrics parameter
306    * @param[in] fontFamily The name of the font family
307    * @param[in] fontStyle The name of the font style
308    * @param[out] globalMetrics The data store to write into
309    * @return \e true if the operation succeeded
310    */
311   virtual bool ReadGlobalMetricsFromCache( const std::string& fontFamily,
312                                            const std::string& fontStyle,
313                                            Integration::GlobalMetrics& globalMetrics ) = 0;
314
315   /**
316    * Write the global metrics parameter to the metrics cache
317    * @param[in] fontFamily The name of the font family
318    * @param[in] fontStyle The name of the font style
319    * @param[out] globalMetrics The data store to write
320    */
321   virtual void WriteGlobalMetricsToCache( const std::string& fontFamily,
322                                           const std::string& fontStyle,
323                                           const Integration::GlobalMetrics& globalMetrics ) = 0;
324
325   /**
326    * Read the metrics from the cache into the supplied vector
327    * @param[in] fontFamily The name of the font family
328    * @param[in] fontStyle The name of the font style
329    * @param[out] glyphMetricsContainer The vector of metrics to write
330    * @return true if the operation succeeded
331    */
332   virtual bool ReadMetricsFromCache( const std::string& fontFamily,
333                                      const std::string& fontStyle,
334                                      std::vector<Integration::GlyphMetrics>& glyphMetricsContainer ) = 0;
335
336   /**
337    * Write the metrics to the cache
338    * @param[in] fontFamily The name of the font family
339    * @param[in] fontStyle The name of the font style
340    * @param[in] glyphSet The set of metrics to write
341    */
342   virtual void WriteMetricsToCache( const std::string& fontFamily,
343                                     const std::string& fontStyle,
344                                     const Integration::GlyphSet& glyphSet ) = 0;
345
346   /**
347    * Retrieves file names from the given directory.
348    *
349    * @param[in] directoryName The directory name.
350    * @param[out] fileNames The file names in the given directory.
351    */
352   virtual void GetFileNamesFromDirectory( const std::string& directoryName,
353                                           std::vector<std::string>& fileNames ) = 0;
354
355   /**
356    * Retrieves the glyph image which represents the character.
357    *
358    * @param[in] fontFamily The font's family name.
359    * @param[in] fontStyle The font's style.
360    * @param[in] fontSize The font's size (in points).
361    * @param[in] character The given character.
362    *
363    * @return A bitmap representing the character.
364    */
365   virtual Integration::BitmapPtr GetGlyphImage( const std::string& fontFamily, const std::string& fontStyle, float fontSize, uint32_t character ) const = 0;
366
367 }; // class PlatformAbstraction
368
369 } // namespace Integration
370
371 } // namespace Dali
372
373 #endif // __DALI_INTEGRATION_PLATFORM_ABSTRACTION_H__