c0e887432ffcd5e2d1f2505bf524f30f429a367d
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / color-controller-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 <dali/internal/system/common/color-controller-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dlfcn.h>
23 #include <dali/integration-api/debug.h>
24 #include <dali/public-api/object/type-registry.h>
25
26 // INTERNAL INCLUDES
27 #include <dali/internal/system/common/singleton-service-impl.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 namespace // unnamed namespace
39 {
40 const char* COLOR_CONTROLLER_PLUGIN_SO( "libdali-color-controller-plugin.so" );
41 }
42
43 Dali::ColorController ColorController::Get()
44 {
45   Dali::ColorController colorController;
46
47   Dali::SingletonService service( SingletonService::Get() );
48   if ( service )
49   {
50     // Check whether the singleton is already created
51     Dali::BaseHandle handle = service.GetSingleton( typeid( Dali::ColorController ) );
52     if(handle)
53     {
54       // If so, downcast the handle
55       colorController = Dali::ColorController( dynamic_cast< ColorController* >( handle.GetObjectPtr() ) );
56     }
57     else
58     {
59       colorController = Dali::ColorController( new ColorController( ) );
60       service.Register( typeid( colorController ), colorController );
61     }
62   }
63
64   return colorController;
65 }
66
67 ColorController::ColorController()
68 : mLibHandle( NULL ),
69   mPlugin( NULL ),
70   mCreateColorControllerPtr( NULL )
71 {
72   Initialize();
73 }
74
75 ColorController::~ColorController()
76 {
77 }
78
79 void ColorController::Initialize()
80 {
81   mLibHandle = dlopen( COLOR_CONTROLLER_PLUGIN_SO, RTLD_LAZY );
82
83   char* error = dlerror();
84   if( mLibHandle == NULL || error != NULL )
85   {
86     DALI_LOG_ERROR( "ColorController::Initialize: dlopen error [%s]\n", error );
87     return;
88   }
89
90   // load plugin
91   mCreateColorControllerPtr = reinterpret_cast< CreateColorControllerFunction >( dlsym( mLibHandle, "CreateColorControllerPlugin" ) );
92
93   error = dlerror();
94   if( mCreateColorControllerPtr == NULL || error != NULL )
95   {
96     DALI_LOG_ERROR( "ColorController::Initialize: Cannot load symbol CreateColorControllerPlugin(): %s\n", error );
97     return;
98   }
99
100   mPlugin = mCreateColorControllerPtr();
101   if( !mPlugin )
102   {
103     DALI_LOG_ERROR("ColorController::Initialize: Plugin creation failed\n");
104     return;
105   }
106 }
107
108 bool ColorController::RetrieveColor( const std::string& colorCode, Vector4& colorValue )
109 {
110   if( mPlugin )
111   {
112     return mPlugin->RetrieveColor( colorCode, colorValue );
113   }
114   return false;
115 }
116
117 bool ColorController::RetrieveColor( const std::string& colorCode , Vector4& textColor, Vector4& textOutlineColor, Vector4& textShadowColor)
118 {
119   if( mPlugin )
120   {
121     return mPlugin->RetrieveColor( colorCode, textColor, textOutlineColor, textShadowColor );
122   }
123   return false;
124 }
125
126 } // namespace Adaptor
127
128 } // namespace Internal
129
130 } // namespace Dali