[Tizen]Transfer uploadOnly flag to the core and update manager
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / adaptor-internal-services.h
1 #ifndef DALI_INTERNAL_ADAPTOR_INTERNAL_SERVICES_H
2 #define DALI_INTERNAL_ADAPTOR_INTERNAL_SERVICES_H
3
4 /*
5  * Copyright (c) 2021 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 // EXTERNAL INCLUDES
22 #include <dali/integration-api/core.h>
23 #include <dali/integration-api/gl-abstraction.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
27 #include <dali/integration-api/adaptor-framework/trigger-event-interface.h>
28 #include <dali/internal/graphics/common/graphics-interface.h>
29 #include <dali/internal/graphics/gles/egl-factory-interface.h>
30 #include <dali/internal/network/common/socket-factory-interface.h>
31 #include <dali/internal/network/common/trace-interface.h>
32 #include <dali/internal/system/common/performance-interface.h>
33 #include <dali/internal/window-system/common/display-connection.h>
34
35 namespace Dali
36 {
37 namespace Internal
38 {
39 namespace Adaptor
40 {
41 class SceneHolder;
42 using WindowContainer = std::vector<Internal::Adaptor::SceneHolder*>;
43
44 /**
45  * A class to contain various interfaces provided by the adaptor which
46  * can be used by the cross platform parts of adaptor.
47  * E.g. any files held in adaptors/base/ directory
48  *
49  */
50 class AdaptorInternalServices
51 {
52 public:
53   /**
54    * @return core
55    */
56   virtual Dali::Integration::Core& GetCore() = 0;
57
58   /**
59    * @return platform abstraction
60    */
61   virtual Dali::Integration::PlatformAbstraction& GetPlatformAbstractionInterface() = 0;
62
63   /**
64    * Used to access the Display Connection interface from the Render thread
65    * @return the Display Connection interface
66    */
67   virtual Dali::DisplayConnection& GetDisplayConnectionInterface() = 0;
68
69   /**
70    * Used to access the abstracted graphics interface
71    * This also contains the depth and stencil buffers
72    * @return the graphics interface
73    */
74   virtual GraphicsInterface& GetGraphicsInterface() = 0;
75
76   /**
77    * Used by update-thread to notify core (main-thread) it has messages to process
78    * @return trigger event ProcessCoreEvents
79    */
80   virtual TriggerEventInterface& GetProcessCoreEventsTrigger() = 0;
81
82   /**
83    * @return socket factory interface
84    */
85   virtual SocketFactoryInterface& GetSocketFactoryInterface() = 0;
86
87   /**
88    * @return render surface
89    */
90   virtual Dali::RenderSurfaceInterface* GetRenderSurfaceInterface() = 0;
91
92   /**
93    * @return performance interface
94    */
95   virtual PerformanceInterface* GetPerformanceInterface() = 0;
96
97   /**
98    * @return interface for logging to the kernel ( e.g. using ftrace )
99    */
100   virtual TraceInterface& GetKernelTraceInterface() = 0;
101
102   /**
103    * @return system trace interface, e.g. for using Tizen Trace (ttrace) or Android Trace (atrace)
104    */
105   virtual TraceInterface& GetSystemTraceInterface() = 0;
106
107   /**
108    * Used to access the list of windows from the Render thread
109    * @param[out] windows The list of created windows
110    */
111   virtual void GetWindowContainerInterface(WindowContainer& windows) = 0;
112
113 protected:
114   /**
115    * constructor
116    */
117   AdaptorInternalServices(){};
118
119   /**
120    * virtual destructor
121    */
122   virtual ~AdaptorInternalServices(){};
123
124   // Undefined copy constructor.
125   AdaptorInternalServices(const AdaptorInternalServices&) = delete;
126
127   // Undefined assignment operator.
128   AdaptorInternalServices& operator=(const AdaptorInternalServices&) = delete;
129 };
130
131 } // namespace Adaptor
132
133 } // namespace Internal
134
135 } // namespace Dali
136
137 #endif // DALI_INTERNAL_ADAPTOR_INTERNAL_SERVICES_H