Make GlyphBufferData as another class
[platform/core/uifw/dali-adaptor.git] / dali / internal / text / text-abstraction / text-renderer-impl.cpp
1 /*
2  * Copyright (c) 2021 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 namespace TextAbstraction
30 {
31 namespace Internal
32 {
33 TextRenderer::TextRenderer()
34 {
35 }
36
37 TextRenderer::~TextRenderer()
38 {
39 }
40
41 TextAbstraction::TextRenderer TextRenderer::Get()
42 {
43   TextAbstraction::TextRenderer shapingHandle;
44
45   SingletonService service(SingletonService::Get());
46   if(service)
47   {
48     // Check whether the singleton is already created
49     Dali::BaseHandle handle = service.GetSingleton(typeid(TextAbstraction::TextRenderer));
50     if(handle)
51     {
52       // If so, downcast the handle
53       TextRenderer* impl = dynamic_cast<Internal::TextRenderer*>(handle.GetObjectPtr());
54       shapingHandle      = TextAbstraction::TextRenderer(impl);
55     }
56     else // create and register the object
57     {
58       shapingHandle = TextAbstraction::TextRenderer(new TextRenderer);
59       service.Register(typeid(shapingHandle), shapingHandle);
60     }
61   }
62
63   return shapingHandle;
64 }
65
66 Devel::PixelBuffer TextRenderer::Render(const TextAbstraction::TextRenderer::Parameters& parameters)
67 {
68   return RenderTextCairo(parameters);
69 }
70
71 } // namespace Internal
72
73 } // namespace TextAbstraction
74
75 } // namespace Dali