dd98ae3b2a90f2e48b544082bd28378ef577eaa9
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / image-loader / async-image-loader-impl.cpp
1 /*
2  * Copyright (c) 2019 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 uint32_t AsyncImageLoader::ApplyMask( Devel::PixelBuffer pixelBuffer,
70                                       Devel::PixelBuffer maskPixelBuffer,
71                                       float contentScale,
72                                       bool cropToMask )
73 {
74   if( !mIsLoadThreadStarted )
75   {
76     mLoadThread.Start();
77     mIsLoadThreadStarted = true;
78   }
79   mLoadThread.AddTask( new LoadingTask( ++mLoadTaskId, pixelBuffer, maskPixelBuffer, contentScale, cropToMask ) );
80
81   return mLoadTaskId;
82 }
83
84 Toolkit::AsyncImageLoader::ImageLoadedSignalType& AsyncImageLoader::ImageLoadedSignal()
85 {
86   return mLoadedSignal;
87 }
88
89 Toolkit::DevelAsyncImageLoader::PixelBufferLoadedSignalType& AsyncImageLoader::PixelBufferLoadedSignal()
90 {
91   return mPixelBufferLoadedSignal;
92 }
93
94 bool AsyncImageLoader::Cancel( uint32_t loadingTaskId )
95 {
96   return mLoadThread.CancelTask( loadingTaskId );
97 }
98
99 void AsyncImageLoader::CancelAll()
100 {
101   mLoadThread.CancelAll();
102 }
103
104 void AsyncImageLoader::ProcessLoadedImage()
105 {
106   while( LoadingTask *next = mLoadThread.NextCompletedTask() )
107   {
108     if( mPixelBufferLoadedSignal.GetConnectionCount() > 0 )
109     {
110       mPixelBufferLoadedSignal.Emit( next->id, next->pixelBuffer, next->isMaskTask );
111     }
112     else if( mLoadedSignal.GetConnectionCount() > 0 )
113     {
114       PixelData pixelData;
115       if( next->pixelBuffer )
116       {
117         pixelData = Devel::PixelBuffer::Convert( next->pixelBuffer );
118       }
119       mLoadedSignal.Emit( next->id, pixelData );
120     }
121
122     delete next;
123   }
124 }
125
126 } // namespace Internal
127
128 } // namespace Toolkit
129
130 } // namespace Dali