[dali_1.0.8] Merge branch 'tizen'
[platform/core/uifw/dali-adaptor.git] / adaptors / ubuntu / vsync-monitor-ubuntu.cpp
1 /*
2  * Copyright (c) 2014 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 "vsync-monitor.h"
20
21 // EXTERNAL INCLUDES
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26
27 #include <dali/integration-api/debug.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 namespace
39 {
40
41 const int FD_NONE( -1 );
42
43 } // unnamed namespace
44
45 VSyncMonitor::VSyncMonitor()
46 : mFileDescriptor( FD_NONE ),
47   mUseHardwareVSync( false ),
48   mHardwareVSyncAvailable( false )
49 {
50 }
51
52 VSyncMonitor::~VSyncMonitor()
53 {
54   Terminate();
55 }
56
57 void VSyncMonitor::SetUseHardwareVSync( bool useHardware )
58 {
59   mUseHardwareVSync = useHardware;
60 }
61
62 void VSyncMonitor::SetHardwareVSyncAvailable( bool hardwareVSyncAvailable )
63 {
64   mHardwareVSyncAvailable = hardwareVSyncAvailable;
65 }
66
67 void VSyncMonitor::Initialize()
68 {
69   DALI_ASSERT_DEBUG( mFileDescriptor == FD_NONE && "VSyncMonitor::Initialize() called twice" );
70
71   // setup vblank request - block and wait for next vblank
72   mVBlankInfo.request.type = DRM_VBLANK_NEXTONMISS;
73   mVBlankInfo.request.sequence = 0;
74   mVBlankInfo.request.signal = 0;
75
76   // setup vblank reply - block and wait for next vblank
77   mVBlankInfo.reply.type = DRM_VBLANK_NEXTONMISS;
78   mVBlankInfo.reply.sequence = 0;
79   mVBlankInfo.reply.tval_sec = 0;
80   mVBlankInfo.reply.tval_usec = 0;
81 }
82
83 void VSyncMonitor::Terminate()
84 {
85 }
86
87 bool VSyncMonitor::UseHardware()
88 {
89   return mUseHardwareVSync && mHardwareVSyncAvailable && (FD_NONE != mFileDescriptor );
90 }
91
92
93 bool VSyncMonitor::DoSync( unsigned int& frameNumber, unsigned int& seconds, unsigned int& microseconds )
94 {
95   DALI_ASSERT_DEBUG( mFileDescriptor != FD_NONE && "ECoreX::VSyncMonitor is not initialized" );
96
97   if( 0 == drmWaitVBlank( mFileDescriptor, &mVBlankInfo ) )
98   {
99     frameNumber = mVBlankInfo.reply.sequence;
100     seconds = mVBlankInfo.reply.tval_sec;
101     microseconds = mVBlankInfo.reply.tval_usec;
102
103     return true;
104   }
105
106   return false;
107 }
108
109 } // namespace Adaptor
110
111 } // namespace Internal
112
113 } // namespace Dali