Support to build against ubuntu environment.
[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 #if defined(DEBUG_ENABLED)
42 Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_VSYNC_MONITOR");
43 #endif
44
45 const int FD_NONE( -1 );
46
47 } // unnamed namespace
48
49 VSyncMonitor::VSyncMonitor()
50 : mFileDescriptor( FD_NONE ),
51   mUseHardware( false )
52 {
53 }
54
55 VSyncMonitor::~VSyncMonitor()
56 {
57   Terminate();
58 }
59
60 void VSyncMonitor::SetUseHardware( bool useHardware )
61 {
62   mUseHardware = useHardware;
63 }
64
65 void VSyncMonitor::Initialize()
66 {
67   DALI_ASSERT_DEBUG( mFileDescriptor == FD_NONE && "VSyncMonitor::Initialize() called twice" );
68
69   // setup vblank request - block and wait for next vblank
70   mVBlankInfo.request.type = DRM_VBLANK_NEXTONMISS;
71   mVBlankInfo.request.sequence = 0;
72   mVBlankInfo.request.signal = 0;
73
74   // setup vblank reply - block and wait for next vblank
75   mVBlankInfo.reply.type = DRM_VBLANK_NEXTONMISS;
76   mVBlankInfo.reply.sequence = 0;
77   mVBlankInfo.reply.tval_sec = 0;
78   mVBlankInfo.reply.tval_usec = 0;
79 }
80
81 void VSyncMonitor::Terminate()
82 {
83   if( mFileDescriptor != FD_NONE )
84   {
85     close( mFileDescriptor );
86     mFileDescriptor = FD_NONE;
87   }
88 }
89
90 bool VSyncMonitor::UseHardware()
91 {
92   return mUseHardware && (FD_NONE != mFileDescriptor );
93 }
94
95
96 bool VSyncMonitor::DoSync( unsigned int& frameNumber, unsigned int& seconds, unsigned int& microseconds )
97 {
98   DALI_ASSERT_DEBUG( mFileDescriptor != FD_NONE && "ECoreX::VSyncMonitor is not initialized" );
99
100   if( 0 == drmWaitVBlank( mFileDescriptor, &mVBlankInfo ) )
101   {
102     frameNumber = mVBlankInfo.reply.sequence;
103     seconds = mVBlankInfo.reply.tval_sec;
104     microseconds = mVBlankInfo.reply.tval_usec;
105
106     return true;
107   }
108
109   return false;
110 }
111
112 } // namespace Adaptor
113
114 } // namespace Internal
115
116 } // namespace Dali