Use existing callback ID for recurring callbacks
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / time-service.cpp
1 /*
2  * Copyright (c) 2015 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 // HEADER
19 #include <dali/internal/system/common/time-service.h>
20
21 // EXTERNAL INCLUDES
22 #include <ctime>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 namespace Adaptor
31 {
32
33 namespace TimeService
34 {
35
36 namespace
37 {
38 const uint64_t NANOSECONDS_PER_SECOND = 1e+9;
39 }
40
41 void GetNanoseconds( uint64_t& timeInNanoseconds )
42 {
43   timespec timeSpec;
44   if( clock_gettime( CLOCK_MONOTONIC, &timeSpec ) == 0 )
45   {
46     // Convert all values to uint64_t to match our return type
47     timeInNanoseconds = ( static_cast< uint64_t >( timeSpec.tv_sec ) * NANOSECONDS_PER_SECOND ) + static_cast< uint64_t >( timeSpec.tv_nsec );
48   }
49   else
50   {
51     timeInNanoseconds = 0;
52   }
53 }
54
55 void SleepUntil( uint64_t timeInNanoseconds )
56 {
57   timespec timeSpec;
58   timeSpec.tv_sec  = timeInNanoseconds / NANOSECONDS_PER_SECOND;
59   timeSpec.tv_nsec = timeInNanoseconds % NANOSECONDS_PER_SECOND;
60
61   // clock_nanosleep returns 0 if it sleeps for the period specified, otherwise it returns an error value
62   // If an error value is returned, just sleep again till the absolute time specified
63   while( clock_nanosleep( CLOCK_MONOTONIC, TIMER_ABSTIME, &timeSpec, NULL ) )
64   {
65   }
66 }
67
68 } // namespace TimeService
69
70 } // namespace Adaptor
71
72 } // namespace Internal
73
74 } // namespace Dali