Move MultiplyColorByAlpha() from main thread to resource thread
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / image-loader / async-image-loader-impl.cpp
1 /*
2  * Copyright (c) 2016 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 "async-image-loader-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/adaptors/adaptor.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal
31 {
32
33 AsyncImageLoader::AsyncImageLoader()
34 : mLoadedSignal(),
35   mLoadThread( new EventThreadCallback( MakeCallback( this, &AsyncImageLoader::ProcessLoadedImage ) ) ),
36   mLoadTaskId( 0u ),
37   mIsLoadThreadStarted( false )
38 {
39 }
40
41 AsyncImageLoader::~AsyncImageLoader()
42 {
43   mLoadThread.CancelAll();
44 }
45
46 IntrusivePtr<AsyncImageLoader> AsyncImageLoader::New()
47 {
48   IntrusivePtr<AsyncImageLoader> internal = new AsyncImageLoader();
49   return internal;
50 }
51
52 uint32_t AsyncImageLoader::Load( const VisualUrl& url,
53                                  ImageDimensions dimensions,
54                                  FittingMode::Type fittingMode,
55                                  SamplingMode::Type samplingMode,
56                                  bool orientationCorrection,
57                                  DevelAsyncImageLoader::PreMultiplyOnLoad preMultiplyOnLoad)
58 {
59   if( !mIsLoadThreadStarted )
60   {
61     mLoadThread.Start();
62     mIsLoadThreadStarted = true;
63   }
64   mLoadThread.AddTask( new LoadingTask( ++mLoadTaskId, url, dimensions, fittingMode, samplingMode, orientationCorrection, preMultiplyOnLoad ) );
65
66   return mLoadTaskId;
67 }
68
69 Toolkit::AsyncImageLoader::ImageLoadedSignalType& AsyncImageLoader::ImageLoadedSignal()
70 {
71   return mLoadedSignal;
72 }
73
74 Toolkit::DevelAsyncImageLoader::PixelBufferLoadedSignalType& AsyncImageLoader::PixelBufferLoadedSignal()
75 {
76   return mPixelBufferLoadedSignal;
77 }
78
79 bool AsyncImageLoader::Cancel( uint32_t loadingTaskId )
80 {
81   return mLoadThread.CancelTask( loadingTaskId );
82 }
83
84 void AsyncImageLoader::CancelAll()
85 {
86   mLoadThread.CancelAll();
87 }
88
89 void AsyncImageLoader::ProcessLoadedImage()
90 {
91   while( LoadingTask *next = mLoadThread.NextCompletedTask() )
92   {
93     if( mPixelBufferLoadedSignal.GetConnectionCount() > 0 )
94     {
95       mPixelBufferLoadedSignal.Emit( next->id, next->pixelBuffer );
96     }
97     else if( mLoadedSignal.GetConnectionCount() > 0 )
98     {
99       PixelData pixelData;
100       if( next->pixelBuffer )
101       {
102         pixelData = Devel::PixelBuffer::Convert( next->pixelBuffer );
103       }
104       mLoadedSignal.Emit( next->id, pixelData );
105     }
106
107     delete next;
108   }
109 }
110
111 } // namespace Internal
112
113 } // namespace Toolkit
114
115 } // namespace Dali