Revert "[4.0] Exposing Exif Image metadata"
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / image-loaders / image-loader.cpp
1 /*
2  * Copyright (c) 2017 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 #include "image-loader.h"
18
19 #include <dali/devel-api/common/ref-counted-dali-vector.h>
20 #include <dali/integration-api/bitmap.h>
21 #include <dali/integration-api/debug.h>
22
23 #include "loader-astc.h"
24 #include "loader-bmp.h"
25 #include "loader-gif.h"
26 #include "loader-ico.h"
27 #include "loader-jpeg.h"
28 #include "loader-ktx.h"
29 #include "loader-png.h"
30 #include "loader-wbmp.h"
31 #include "image-operations.h"
32 #include "image-loader-input.h"
33 #include "portable/file-reader.h"
34
35 using namespace Dali::Integration;
36
37 namespace Dali
38 {
39 namespace TizenPlatform
40 {
41
42 namespace
43 {
44 typedef bool (*LoadBitmapFunction)( const ImageLoader::Input& input, Integration::Bitmap& bitmap );
45 typedef bool (*LoadBitmapHeaderFunction)( const ImageLoader::Input& input, unsigned int& width, unsigned int& height );
46
47 #if defined(DEBUG_ENABLED)
48 Integration::Log::Filter* gLogFilter = Debug::Filter::New( Debug::Concise, false, "LOG_IMAGE_LOADING" );
49 #endif
50
51 /**
52  * Stores the magic bytes, and the loader and header functions used for each image loader.
53  */
54 struct BitmapLoader
55 {
56   unsigned char magicByte1;        ///< The first byte in the file should be this
57   unsigned char magicByte2;        ///< The second byte in the file should be this
58   LoadBitmapFunction loader;       ///< The function which decodes the file
59   LoadBitmapHeaderFunction header; ///< The function which decodes the header of the file
60   Bitmap::Profile profile;         ///< The kind of bitmap to be created
61                                    ///  (addressable packed pixels or an opaque compressed blob).
62 };
63
64 /**
65  * Enum for file formats, has to be in sync with BITMAP_LOADER_LOOKUP_TABLE
66  */
67 enum FileFormats
68 {
69   // Unknown file format
70   FORMAT_UNKNOWN = -1,
71
72   // formats that use magic bytes
73   FORMAT_PNG = 0,
74   FORMAT_JPEG,
75   FORMAT_BMP,
76   FORMAT_GIF,
77   FORMAT_KTX,
78   FORMAT_ASTC,
79   FORMAT_ICO,
80   FORMAT_MAGIC_BYTE_COUNT,
81
82   // formats after this one do not use magic bytes
83   FORMAT_WBMP = FORMAT_MAGIC_BYTE_COUNT,
84   FORMAT_TOTAL_COUNT
85 };
86
87 /**
88  * A lookup table containing all the bitmap loaders with the appropriate information.
89  * Has to be in sync with enum FileFormats
90  */
91 const BitmapLoader BITMAP_LOADER_LOOKUP_TABLE[FORMAT_TOTAL_COUNT] =
92 {
93   { Png::MAGIC_BYTE_1,  Png::MAGIC_BYTE_2,  LoadBitmapFromPng,  LoadPngHeader,  Bitmap::BITMAP_2D_PACKED_PIXELS },
94   { Jpeg::MAGIC_BYTE_1, Jpeg::MAGIC_BYTE_2, LoadBitmapFromJpeg, LoadJpegHeader, Bitmap::BITMAP_2D_PACKED_PIXELS },
95   { Bmp::MAGIC_BYTE_1,  Bmp::MAGIC_BYTE_2,  LoadBitmapFromBmp,  LoadBmpHeader,  Bitmap::BITMAP_2D_PACKED_PIXELS },
96   { Gif::MAGIC_BYTE_1,  Gif::MAGIC_BYTE_2,  LoadBitmapFromGif,  LoadGifHeader,  Bitmap::BITMAP_2D_PACKED_PIXELS },
97   { Ktx::MAGIC_BYTE_1,  Ktx::MAGIC_BYTE_2,  LoadBitmapFromKtx,  LoadKtxHeader,  Bitmap::BITMAP_COMPRESSED       },
98   { Astc::MAGIC_BYTE_1, Astc::MAGIC_BYTE_2, LoadBitmapFromAstc, LoadAstcHeader, Bitmap::BITMAP_COMPRESSED       },
99   { Ico::MAGIC_BYTE_1,  Ico::MAGIC_BYTE_2,  LoadBitmapFromIco,  LoadIcoHeader,  Bitmap::BITMAP_2D_PACKED_PIXELS },
100   { 0x0,                0x0,                LoadBitmapFromWbmp, LoadWbmpHeader, Bitmap::BITMAP_2D_PACKED_PIXELS },
101 };
102
103 const unsigned int MAGIC_LENGTH = 2;
104
105 /**
106  * This code tries to predict the file format from the filename to help with format picking.
107  */
108 struct FormatExtension
109 {
110   const std::string extension;
111   FileFormats format;
112 };
113
114 const FormatExtension FORMAT_EXTENSIONS[] =
115 {
116  { ".png",  FORMAT_PNG  },
117  { ".jpg",  FORMAT_JPEG },
118  { ".bmp",  FORMAT_BMP  },
119  { ".gif",  FORMAT_GIF  },
120  { ".ktx",  FORMAT_KTX  },
121  { ".astc", FORMAT_ASTC },
122  { ".ico",  FORMAT_ICO  },
123  { ".wbmp", FORMAT_WBMP }
124 };
125
126 const unsigned int FORMAT_EXTENSIONS_COUNT = sizeof(FORMAT_EXTENSIONS) / sizeof(FormatExtension);
127
128 FileFormats GetFormatHint( const std::string& filename )
129 {
130   FileFormats format = FORMAT_UNKNOWN;
131
132   for ( unsigned int i = 0; i < FORMAT_EXTENSIONS_COUNT; ++i )
133   {
134     unsigned int length = FORMAT_EXTENSIONS[i].extension.size();
135     if ( ( filename.size() > length ) &&
136          ( 0 == filename.compare( filename.size() - length, length, FORMAT_EXTENSIONS[i].extension ) ) )
137     {
138       format = FORMAT_EXTENSIONS[i].format;
139       break;
140     }
141   }
142
143   return format;
144 }
145
146 /**
147  * Checks the magic bytes of the file first to determine which Image decoder to use to decode the
148  * bitmap.
149  * @param[in]   fp      The file to decode
150  * @param[in]   format  Hint about what format to try first
151  * @param[out]  loader  Set with the function to use to decode the image
152  * @param[out]  header  Set with the function to use to decode the header
153  * @param[out]  profile The kind of bitmap to hold the bits loaded for the bitmap.
154  * @return true, if we can decode the image, false otherwise
155  */
156 bool GetBitmapLoaderFunctions( FILE *fp,
157                                FileFormats format,
158                                LoadBitmapFunction& loader,
159                                LoadBitmapHeaderFunction& header,
160                                Bitmap::Profile& profile )
161 {
162   unsigned char magic[MAGIC_LENGTH];
163   size_t read = fread(magic, sizeof(unsigned char), MAGIC_LENGTH, fp);
164
165   // Reset to the start of the file.
166   if( fseek(fp, 0, SEEK_SET) )
167   {
168     DALI_LOG_ERROR("Error seeking to start of file\n");
169   }
170
171   if (read != MAGIC_LENGTH)
172   {
173     return false;
174   }
175
176   bool loaderFound = false;
177   const BitmapLoader *lookupPtr = BITMAP_LOADER_LOOKUP_TABLE;
178   ImageLoader::Input defaultInput( fp );
179
180   // try hinted format first
181   if ( format != FORMAT_UNKNOWN )
182   {
183     lookupPtr = BITMAP_LOADER_LOOKUP_TABLE + format;
184     if ( format >= FORMAT_MAGIC_BYTE_COUNT ||
185          ( lookupPtr->magicByte1 == magic[0] && lookupPtr->magicByte2 == magic[1] ) )
186     {
187       unsigned int width = 0;
188       unsigned int height = 0;
189       loaderFound = lookupPtr->header( fp, width, height );
190     }
191   }
192
193   // then try to get a match with formats that have magic bytes
194   if ( false == loaderFound )
195   {
196     for ( lookupPtr = BITMAP_LOADER_LOOKUP_TABLE;
197           lookupPtr < BITMAP_LOADER_LOOKUP_TABLE + FORMAT_MAGIC_BYTE_COUNT;
198           ++lookupPtr )
199     {
200       if ( lookupPtr->magicByte1 == magic[0] && lookupPtr->magicByte2 == magic[1] )
201       {
202         // to seperate ico file format and wbmp file format
203         unsigned int width = 0;
204         unsigned int height = 0;
205         loaderFound = lookupPtr->header(fp, width, height);
206       }
207       if (loaderFound)
208       {
209         break;
210       }
211     }
212   }
213
214   // finally try formats that do not use magic bytes
215   if ( false == loaderFound )
216   {
217     for ( lookupPtr = BITMAP_LOADER_LOOKUP_TABLE + FORMAT_MAGIC_BYTE_COUNT;
218           lookupPtr < BITMAP_LOADER_LOOKUP_TABLE + FORMAT_TOTAL_COUNT;
219           ++lookupPtr )
220     {
221       // to seperate ico file format and wbmp file format
222       unsigned int width = 0;
223       unsigned int height = 0;
224       loaderFound = lookupPtr->header(fp, width, height);
225       if (loaderFound)
226       {
227         break;
228       }
229     }
230   }
231
232   // if a loader was found set the outputs
233   if ( loaderFound )
234   {
235     loader  = lookupPtr->loader;
236     header  = lookupPtr->header;
237     profile = lookupPtr->profile;
238   }
239
240   // Reset to the start of the file.
241   if( fseek(fp, 0, SEEK_SET) )
242   {
243     DALI_LOG_ERROR("Error seeking to start of file\n");
244   }
245
246   return loaderFound;
247 }
248
249 } // anonymous namespace
250
251
252 namespace ImageLoader
253 {
254
255 bool ConvertStreamToBitmap( const BitmapResourceType& resource, std::string path, FILE * const fp, BitmapPtr& ptr )
256 {
257   DALI_LOG_TRACE_METHOD( gLogFilter );
258
259   bool result = false;
260   BitmapPtr bitmap = 0;
261
262   if (fp != NULL)
263   {
264     LoadBitmapFunction function;
265     LoadBitmapHeaderFunction header;
266     Bitmap::Profile profile;
267
268     if ( GetBitmapLoaderFunctions( fp,
269                                    GetFormatHint( path ),
270                                    function,
271                                    header,
272                                    profile ) )
273     {
274       bitmap = Bitmap::New( profile, ResourcePolicy::OWNED_DISCARD );
275
276       DALI_LOG_SET_OBJECT_STRING( bitmap, path );
277       const ScalingParameters scalingParameters( resource.size, resource.scalingMode, resource.samplingMode );
278       const ImageLoader::Input input( fp, scalingParameters, resource.orientationCorrection );
279
280       // Run the image type decoder:
281       result = function( input, *bitmap );
282
283       if (!result)
284       {
285         DALI_LOG_WARNING( "Unable to convert %s\n", path.c_str() );
286         bitmap = 0;
287       }
288
289       bitmap = Internal::Platform::ApplyAttributesToBitmap( bitmap, resource.size, resource.scalingMode, resource.samplingMode );
290     }
291     else
292     {
293       DALI_LOG_WARNING( "Image Decoder for %s unavailable\n", path.c_str() );
294     }
295   }
296
297   ptr.Reset( bitmap.Get() );
298   return result;
299 }
300
301 ResourcePointer LoadImageSynchronously( const Integration::BitmapResourceType& resource, const std::string& path )
302 {
303   ResourcePointer result;
304   BitmapPtr bitmap = 0;
305
306   Internal::Platform::FileReader fileReader( path );
307   FILE * const fp = fileReader.GetFile();
308   if( fp != NULL )
309   {
310     bool success = ConvertStreamToBitmap( resource, path, fp, bitmap );
311     if( success && bitmap )
312     {
313       result.Reset(bitmap.Get());
314     }
315   }
316   return result;
317 }
318
319 ///@ToDo: Rename GetClosestImageSize() functions. Make them use the orientation correction and scaling information. Requires jpeg loader to tell us about reorientation. [Is there still a requirement for this functionality at all?]
320 ImageDimensions  GetClosestImageSize( const std::string& filename,
321                                       ImageDimensions size,
322                                       FittingMode::Type fittingMode,
323                                       SamplingMode::Type samplingMode,
324                                       bool orientationCorrection )
325 {
326   unsigned int width = 0;
327   unsigned int height = 0;
328
329   Internal::Platform::FileReader fileReader( filename );
330   FILE *fp = fileReader.GetFile();
331   if (fp != NULL)
332   {
333     LoadBitmapFunction loaderFunction;
334     LoadBitmapHeaderFunction headerFunction;
335     Bitmap::Profile profile;
336
337     if ( GetBitmapLoaderFunctions( fp,
338                                    GetFormatHint(filename),
339                                    loaderFunction,
340                                    headerFunction,
341                                    profile ) )
342     {
343       const ImageLoader::Input input( fp, ScalingParameters( size, fittingMode, samplingMode ), orientationCorrection );
344
345       const bool read_res = headerFunction( input, width, height );
346       if(!read_res)
347       {
348         DALI_LOG_WARNING("Image Decoder failed to read header for %s\n", filename.c_str());
349       }
350     }
351     else
352     {
353       DALI_LOG_WARNING("Image Decoder for %s unavailable\n", filename.c_str());
354     }
355   }
356   return ImageDimensions( width, height );
357 }
358
359 ImageDimensions GetClosestImageSize( Integration::ResourcePointer resourceBuffer,
360                                      ImageDimensions size,
361                                      FittingMode::Type fittingMode,
362                                      SamplingMode::Type samplingMode,
363                                      bool orientationCorrection )
364 {
365   unsigned int width = 0;
366   unsigned int height = 0;
367
368   // Get the blob of binary data that we need to decode:
369   DALI_ASSERT_DEBUG( resourceBuffer );
370   Dali::RefCountedVector<uint8_t>* const encodedBlob = reinterpret_cast<Dali::RefCountedVector<uint8_t>*>( resourceBuffer.Get() );
371
372   if( encodedBlob != 0 )
373   {
374     if( encodedBlob->GetVector().Size() )
375     {
376       // Open a file handle on the memory buffer:
377       Internal::Platform::FileReader fileReader( encodedBlob->GetVector() );
378       FILE *fp = fileReader.GetFile();
379       if ( fp != NULL )
380       {
381         LoadBitmapFunction loaderFunction;
382         LoadBitmapHeaderFunction headerFunction;
383         Bitmap::Profile profile;
384
385         if ( GetBitmapLoaderFunctions( fp,
386                                        FORMAT_UNKNOWN,
387                                        loaderFunction,
388                                        headerFunction,
389                                        profile ) )
390         {
391           const ImageLoader::Input input( fp, ScalingParameters( size, fittingMode, samplingMode ), orientationCorrection );
392           const bool read_res = headerFunction( input, width, height );
393           if( !read_res )
394           {
395             DALI_LOG_WARNING( "Image Decoder failed to read header for resourceBuffer\n" );
396           }
397         }
398       }
399     }
400   }
401   return ImageDimensions( width, height );
402 }
403
404 } // ImageLoader
405 } // TizenPlatform
406 } // Dali