1 #ifndef __DALI_INTERNAL_ADAPTOR_IMPL_H__
2 #define __DALI_INTERNAL_ADAPTOR_IMPL_H__
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/common/view-mode.h>
24 #include <dali/public-api/math/rect.h>
25 #include <dali/public-api/signals/callback.h>
26 #include <dali/integration-api/render-controller.h>
30 #include <render-surface.h>
31 #include <tts-player.h>
32 #include <imf-manager.h>
33 #include <clipboard.h>
35 #include <tizen-platform-abstraction.h>
36 #include <base/interfaces/adaptor-internal-services.h>
37 #include <base/environment-options.h>
38 #include <base/core-event-interface.h>
39 #include <drag-and-drop-detector-impl.h>
40 #include <damage-observer.h>
41 #include <window-visibility-observer.h>
42 #include <kernel-trace.h>
43 #include <system-trace.h>
44 #include <trigger-event-factory.h>
45 #include <networking/socket-factory.h>
67 class GlImplementation;
68 class GlSyncImplementation;
69 class ThreadController;
71 class CallbackManager;
72 class FeedbackPluginProxy;
73 class FeedbackController;
74 class RotationObserver;
76 class PerformanceInterface;
77 class LifeCycleObserver;
81 * Implementation of the Adaptor class.
83 class Adaptor : public Integration::RenderController,
84 public AdaptorInternalServices,
85 public CoreEventInterface,
86 public DamageObserver,
87 public WindowVisibilityObserver
91 typedef Dali::Adaptor::AdaptorSignalType AdaptorSignalType;
94 * Creates a New Adaptor
95 * @param[in] nativeWindow Native window handle
96 * @param[in] surface A render surface can be one of the following
97 * - Pixmap, adaptor will use existing Pixmap to draw on to
98 * - Window, adaptor will use existing Window to draw on to
99 * @param[in] configuration The context loss configuration ( to choose resource discard policy )
100 * @param[in] environmentOptions A pointer to the environment options. If NULL then one is created.
102 static Dali::Adaptor* New( Any nativeWindow,
103 RenderSurface* surface,
104 Dali::Configuration::ContextLoss configuration,
105 EnvironmentOptions* environmentOptions );
108 * Creates a New Adaptor
109 * @param[in] nativeWindow native window handle
110 * @param[in] configuration The context loss configuration ( to choose resource discard policy )
111 * @param[in] environmentOptions A pointer to the environment options. If NULL then one is created.
113 static Dali::Adaptor* New( Dali::Window window, Dali::Configuration::ContextLoss configuration, EnvironmentOptions* environmentOptions );
116 * 2-step initialisation, this should be called after creating an adaptor instance.
118 void Initialize(Dali::Configuration::ContextLoss configuration);
121 * Virtual destructor.
126 * @copydoc Dali::Adaptor::Get()
128 static Dali::Adaptor& Get();
131 * @copydoc Dali::Adaptor::IsAvailable()
133 static bool IsAvailable();
136 * @copydoc Dali::Core::SceneCreated();
140 public: // AdaptorInternalServices implementation
142 * @copydoc Dali::Adaptor::Start()
144 virtual void Start();
147 * @copydoc Dali::Adaptor::Pause()
149 virtual void Pause();
152 * @copydoc Dali::Adaptor::Resume()
154 virtual void Resume();
157 * @copydoc Dali::Adaptor::Stop()
162 * @copydoc Dali::Adaptor::ContextLost()
164 virtual void ContextLost();
167 * @copydoc Dali::Adaptor::ContextRegained()
169 virtual void ContextRegained();
172 * @copydoc Dali::EventFeeder::FeedTouchPoint()
174 virtual void FeedTouchPoint( TouchPoint& point, int timeStamp );
177 * @copydoc Dali::EventFeeder::FeedWheelEvent()
179 virtual void FeedWheelEvent( WheelEvent& wheelEvent );
182 * @copydoc Dali::EventFeeder::FeedKeyEvent()
184 virtual void FeedKeyEvent( KeyEvent& keyEvent );
187 * @copydoc AdaptorInterface::MoveResize()
189 virtual bool MoveResize( const PositionSize& positionSize );
192 * @copydoc AdaptorInterface::SurfaceResized()
194 virtual void SurfaceResized( const PositionSize& positionSize );
197 * @copydoc AdaptorInterface::ReplaceSurface()
199 virtual void ReplaceSurface( Any nativeWindow, RenderSurface& surface );
202 * @copydoc Dali::Adaptor::GetSurface()
204 virtual RenderSurface& GetSurface() const;
207 * @copydoc Dali::Adaptor::ReleaseSurfaceLock()
209 virtual void ReleaseSurfaceLock();
212 * Retrieve the TtsPlayer.
213 * @param[in] mode The mode of TtsPlayer
214 * @return A handle to the TtsPlayer.
216 virtual Dali::TtsPlayer GetTtsPlayer(Dali::TtsPlayer::Mode mode);
219 * @copydoc Dali::Adaptor::AddIdle()
221 virtual bool AddIdle( CallbackBase* callback );
226 * @return the Core instance
228 virtual Dali::Integration::Core& GetCore();
231 * @copydoc Dali::Adaptor::SetRenderRefreshRate()
233 void SetRenderRefreshRate( unsigned int numberOfVSyncsPerRender );
236 * @copydoc Dali::Adaptor::SetUseHardwareVSync()
238 void SetUseHardwareVSync(bool useHardware);
241 * @return reference to EglFactory class
243 EglFactory& GetEGLFactory() const;
246 * Return GlAbstraction.
247 * @return the GlAbstraction.
249 Integration::GlAbstraction& GetGlAbstraction() const;
252 * Return the PlatformAbstraction.
253 * @return The PlatformAbstraction.
255 Integration::PlatformAbstraction& GetPlatformAbstraction() const;
258 * Sets the Drag & Drop Listener.
259 * @param[in] detector The detector to send Drag & Drop events to.
261 void SetDragAndDropDetector( DragAndDropDetectorPtr detector );
264 * Sets a rotation observer, or set to NULL to remove.
265 * @pre Adaptor::Start() has been called ( to create EventHandler )
266 * @param[in] observer The observer to listen for window rotation events
268 void SetRotationObserver( RotationObserver* observer );
271 * Destroy the TtsPlayer of sepcific mode.
272 * @param[in] mode The mode of TtsPlayer to destroy
274 void DestroyTtsPlayer(Dali::TtsPlayer::Mode mode);
277 * @brief Sets minimum distance in pixels that the fingers must move towards/away from each other in order to
278 * trigger a pinch gesture
280 * @param[in] distance The minimum pinch distance in pixels
282 void SetMinimumPinchDistance(float distance);
285 * Gets native window handle
287 * @return native window handle
289 Any GetNativeWindowHandle();
294 * Adds an adaptor observer so that we can observe the adaptor's lifetime events.
295 * @param[in] observer The observer.
296 * @note Observers should remove themselves when they are destroyed.
298 void AddObserver( LifeCycleObserver& observer );
301 * Removes the observer from the adaptor.
302 * @param[in] observer The observer to remove.
303 * @note Observers should remove themselves when they are destroyed.
305 void RemoveObserver( LifeCycleObserver& observer );
308 * Emits the Notification event to the Dali core.
310 void SendNotificationEvent();
313 * Request adaptor to update once
315 void RequestUpdateOnce();
318 * @copydoc Dali::Adaptor::NotifySceneCreated()
320 void NotifySceneCreated();
323 * @copydoc Dali::Adaptor::NotifyLanguageChanged()
325 void NotifyLanguageChanged();
328 * Gets AppId of current application
330 void GetAppId( std::string& appId );
332 public: //AdaptorInternalServices
335 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetPlatformAbstractionInterface()
337 virtual Dali::Integration::PlatformAbstraction& GetPlatformAbstractionInterface();
340 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetGlesInterface()
342 virtual Dali::Integration::GlAbstraction& GetGlesInterface();
345 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetEGLFactoryInterface()
347 virtual EglFactoryInterface& GetEGLFactoryInterface() const;
350 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetTriggerEventInterface()
352 virtual TriggerEventInterface& GetProcessCoreEventsTrigger();
355 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetTriggerEventFactoryInterface()
357 virtual TriggerEventFactoryInterface& GetTriggerEventFactoryInterface();
360 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetSocketFactoryInterface()
362 virtual SocketFactoryInterface& GetSocketFactoryInterface();
365 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetRenderSurfaceInterface()
367 virtual RenderSurface* GetRenderSurfaceInterface();
370 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetVSyncMonitorInterface()
372 virtual VSyncMonitorInterface* GetVSyncMonitorInterface();
375 * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetPerformanceInterface()
377 virtual PerformanceInterface* GetPerformanceInterface();
380 * copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetKernelTraceInterface()
382 virtual TraceInterface& GetKernelTraceInterface();
385 * copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetSystemTraceInterface()
387 virtual TraceInterface& GetSystemTraceInterface();
389 public: // Stereoscopy
392 * @copydoc Dali::Integration::Core::SetViewMode()
394 void SetViewMode( ViewMode viewMode );
397 * @copydoc Dali::Integration::Core::GetViewMode()
399 ViewMode GetViewMode() const;
402 * @copydoc Dali::Integration::Core::SetStereoBase()
404 void SetStereoBase( float stereoBase );
407 * @copydoc Dali::Integration::Core::GetStereoBase()
409 float GetStereoBase() const;
414 * @copydoc Dali::Adaptor::SignalResized
416 AdaptorSignalType& ResizedSignal()
418 return mResizedSignal;
422 * @copydoc Dali::Adaptor::LanguageChangedSignal
424 AdaptorSignalType& LanguageChangedSignal()
426 return mLanguageChangedSignal;
429 private: // From Dali::Internal::Adaptor::CoreEventInterface
432 * @copydoc Dali::Internal::Adaptor::CoreEventInterface::QueueCoreEvent()
434 virtual void QueueCoreEvent(const Dali::Integration::Event& event);
437 * @copydoc Dali::Internal::Adaptor:CoreEventInterface:::ProcessCoreEvents()
439 virtual void ProcessCoreEvents();
441 private: // From Dali::Integration::RenderController
444 * Called by the Dali core when it requires another update
446 virtual void RequestUpdate();
449 * Called by Dali core when it requires an notification event being sent on idle.
450 * Multi-threading note: this method must be called from the main thread only.
452 virtual void RequestProcessEventsOnIdle();
454 private: // From Dali::Internal::Adaptor::WindowVisibilityObserver
457 * Called when the window becomes fully or partially visible.
459 virtual void OnWindowShown();
462 * Called when the window is fully hidden.
464 virtual void OnWindowHidden();
466 private: // From Dali::Internal::Adaptor::DamageObserver
469 * @copydoc Dali::Internal::Adaptor::DamageObserver::OnDamaged()
471 void OnDamaged( const DamageArea& area );
476 Adaptor(const Adaptor&);
477 Adaptor& operator=(Adaptor&);
482 * Informs core the surface size has changed
484 void SurfaceSizeChanged(const PositionSize& positionSize);
487 * Assigns the render surface to the adaptor
490 void SetSurface(RenderSurface *surface);
493 * Sends an notification message from main loop idle handler
495 void ProcessCoreEventsFromIdle();
498 * Gets path for data/resource storage.
499 * @param[out] path Path for data/resource storage
501 void GetDataStoragePath(std::string& path);
507 * @param[in] nativeWindow native window handle
508 * @param[in] adaptor The public adaptor
509 * @param[in] surface A render surface can be one of the following
510 * - Pixmap, adaptor will use existing Pixmap to draw on to
511 * - Window, adaptor will use existing Window to draw on to
512 * @param[in] environmentOptions A pointer to the environment options. If NULL then one is created.
514 Adaptor( Any nativeWindow, Dali::Adaptor& adaptor, RenderSurface* surface, EnvironmentOptions* environmentOptions );
520 READY, ///< Initial state before Adaptor::Start is called.
521 RUNNING, ///< Adaptor is running.
522 PAUSED, ///< Adaptor has been paused.
523 PAUSED_WHILE_HIDDEN, ///< Adaptor is paused while window is hidden (& cannot be resumed until window is shown).
524 STOPPED, ///< Adaptor has been stopped.
527 typedef std::vector<LifeCycleObserver*> ObserverContainer;
531 AdaptorSignalType mResizedSignal; ///< Resized signal.
532 AdaptorSignalType mLanguageChangedSignal; ///< Language changed signal.
534 Dali::Adaptor& mAdaptor; ///< Reference to public adaptor instance.
535 State mState; ///< Current state of the adaptor
536 Dali::Integration::Core* mCore; ///< Dali Core
537 ThreadController* mThreadController; ///< Controls the threads
538 VSyncMonitor* mVSyncMonitor; ///< Monitors VSync events
539 GlImplementation* mGLES; ///< GL implementation
540 GlSyncImplementation* mGlSync; ///< GL Sync implementation
541 EglFactory* mEglFactory; ///< EGL Factory
543 Any mNativeWindow; ///< window identifier
544 RenderSurface* mSurface; ///< Current surface
545 TizenPlatform::TizenPlatformAbstraction* mPlatformAbstraction; ///< Platform abstraction
547 EventHandler* mEventHandler; ///< event handler
548 CallbackManager* mCallbackManager; ///< Used to install callbacks
549 bool mNotificationOnIdleInstalled; ///< whether the idle handler is installed to send an notification event
550 TriggerEventInterface* mNotificationTrigger; ///< Notification event trigger
551 GestureManager* mGestureManager; ///< Gesture manager
552 FeedbackPluginProxy* mDaliFeedbackPlugin; ///< Used to access feedback support
553 FeedbackController* mFeedbackController; ///< Plays feedback effects for Dali-Toolkit UI Controls.
554 Dali::TtsPlayer mTtsPlayers[Dali::TtsPlayer::MODE_NUM]; ///< Provides TTS support
555 ObserverContainer mObservers; ///< A list of adaptor observer pointers
556 DragAndDropDetectorPtr mDragAndDropDetector; ///< The Drag & Drop detector
557 RotationObserver* mDeferredRotationObserver; ///< deferred Rotation observer needs event handler
558 EnvironmentOptions* mEnvironmentOptions; ///< environment options
559 PerformanceInterface* mPerformanceInterface; ///< Performance interface
560 KernelTrace mKernelTracer; ///< Kernel tracer
561 SystemTrace mSystemTracer; ///< System tracer
562 TriggerEventFactory mTriggerEventFactory; ///< Trigger event factory
563 ObjectProfiler* mObjectProfiler; ///< Tracks object lifetime for profiling
564 SocketFactory mSocketFactory; ///< Socket factory
565 const bool mEnvironmentOptionsOwned:1; ///< Whether we own the EnvironmentOptions (and thus, need to delete it)
567 inline static Adaptor& GetImplementation(Dali::Adaptor& adaptor) {return *adaptor.mImpl;}
570 } // namespace Internal
572 } // namespace Adaptor
576 #endif // __DALI_INTERNAL_ADAPTOR_IMPL_H__