5b27d0bbde0626d807ee3ffd6e55d16b20c27e4e
[platform/core/uifw/dali-core.git] / dali / internal / update / resources / resource-manager-declarations.h
1 #ifndef __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_H__
2 #define __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_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 // INTERNAL INCLUDES
22 #include <dali/devel-api/threading/mutex.h>
23 #include <dali/integration-api/resource-cache.h>
24 #include <dali/internal/update/common/double-buffered.h>
25 #include <dali/public-api/common/dali-vector.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 typedef Integration::ResourceId ResourceId;
34
35 /**
36  * Post processing required on the resource after the resource has been modified by the render thread
37  * Should only be handled by update thread
38  */
39
40 typedef Dali::Vector< ResourceId > TextureUploadedQueue;
41
42 class LockedResourceQueue
43 {
44
45 public:
46   void PushBack( ResourceId request )
47   {
48     Dali::Mutex::ScopedLock lock( mMutex );
49     mQueue.PushBack( request );
50   }
51
52   bool IsEmpty() const
53   {
54     Dali::Mutex::ScopedLock lock( mMutex );
55     return mQueue.Empty();
56   }
57
58   void SwapQueue( TextureUploadedQueue& list )
59   {
60     Dali::Mutex::ScopedLock lock( mMutex );
61     list.Clear();
62     mQueue.Swap( list );
63   }
64
65 private:
66
67   TextureUploadedQueue mQueue;
68   mutable Dali::Mutex mMutex;
69 };
70
71
72 } // Internal
73 } // Dali
74
75 #endif // __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_H__