Moved SingletonService into dali-core
[platform/core/uifw/dali-adaptor.git] / dali / internal / text / text-abstraction / text-renderer-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/text/text-abstraction/text-renderer-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/common/singleton-service.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/text/text-abstraction/cairo-renderer.h>
26
27 namespace Dali
28 {
29
30 namespace TextAbstraction
31 {
32
33 namespace Internal
34 {
35
36 TextRenderer::TextRenderer()
37 {
38 }
39
40 TextRenderer::~TextRenderer()
41 {
42 }
43
44 TextAbstraction::TextRenderer TextRenderer::Get()
45 {
46   TextAbstraction::TextRenderer shapingHandle;
47
48   SingletonService service(SingletonService::Get());
49   if (service)
50   {
51     // Check whether the singleton is already created
52     Dali::BaseHandle handle = service.GetSingleton(typeid(TextAbstraction::TextRenderer));
53     if (handle)
54     {
55       // If so, downcast the handle
56       TextRenderer* impl = dynamic_cast< Internal::TextRenderer* >(handle.GetObjectPtr());
57       shapingHandle = TextAbstraction::TextRenderer(impl);
58     }
59     else // create and register the object
60     {
61       shapingHandle = TextAbstraction::TextRenderer(new TextRenderer);
62       service.Register(typeid(shapingHandle), shapingHandle);
63     }
64   }
65
66   return shapingHandle;
67 }
68
69 Devel::PixelBuffer TextRenderer::Render(const TextAbstraction::TextRenderer::Parameters& parameters)
70 {
71   return RenderTextCairo(parameters);
72 }
73
74 } // namespace Internal
75
76 } // namespace TextAbstraction
77
78 } // namespace Dali