[SRUK] Initial copy from Tizen 2.2 version
[platform/core/uifw/dali-core.git] / dali / internal / event / images / encoded-buffer-image-impl.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // CLASS HEADER
18 #include <dali/internal/event/images/encoded-buffer-image-impl.h>
19
20 // INTERNAL INCLUDES
21 #include <dali/internal/event/common/thread-local-storage.h>
22 #include <dali/internal/event/resources/resource-client.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28
29 Dali::EncodedBufferImage EncodedBufferImage::New( const uint8_t * const encodedImage,
30                    const std::size_t encodedImageByteCount,
31                    const ImageAttributes& attributes,
32                    const ReleasePolicy releasePol )
33 {
34   DALI_ASSERT_DEBUG( encodedImage && "Null image pointer passed-in for decoding from memory." );
35   DALI_ASSERT_DEBUG( encodedImageByteCount > 0U && "Zero size passed for image resource in memory buffer." );
36   DALI_ASSERT_ALWAYS( encodedImage && (encodedImageByteCount != 0) );
37   // SEGV early before we allocate anything if the caller passed in an invalid
38   // input buffer by reading both ends of it:
39   DALI_ASSERT_ALWAYS( static_cast<int>( encodedImage[0] + encodedImage[encodedImageByteCount-1] ) != -1 );
40
41   EncodedBufferImage* const image = new EncodedBufferImage( releasePol );
42   // Make sure that this image object cannot leak if we throw:
43   Dali::EncodedBufferImage publicImage(image);
44
45   // Replicate the functionality of ImageFactory::load() without the filesystem caching:
46   Dali::Integration::BitmapResourceType resourceType( attributes );
47   RequestBufferPtr buffer( new RequestBuffer );
48   buffer->GetVector().Resize( encodedImageByteCount );
49   // Resize() won't throw on failure, so avoid a SEGV if the allocation failed:
50   DALI_ASSERT_ALWAYS( buffer->GetVector().Size() >= encodedImageByteCount );
51
52   memcpy( &(buffer->GetVector()[0]), encodedImage, encodedImageByteCount );
53   ResourceClient &resourceClient = ThreadLocalStorage::Get().GetResourceClient();
54   ResourceTicketPtr ticket = resourceClient.DecodeResource( resourceType, buffer );
55   if( ticket )
56   {
57     DALI_ASSERT_DEBUG( dynamic_cast<ImageTicket*>( ticket.Get() ) && "Resource ticket returned for image resource has to be an ImageTicket subclass.\n" );
58     ImageTicket * const imageTicket = static_cast<ImageTicket*>( ticket.Get() );
59
60     image->mTicket = imageTicket;
61     imageTicket->AddObserver( *image );
62   }
63
64   return publicImage;
65 }
66
67 } // namespace Internal
68
69 } // namespace Dali