The license change version 1.0 to version 1.1
[platform/framework/web/web-provider.git] / src / Core / BoxUpdateTimer.cpp
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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  * @file    BoxUpdateTimer.cpp
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  */
20 #include <Ecore.h>
21 #include <Core/Util/Log.h>
22 #include "BoxUpdateTimer.h"
23
24 #define UPDATE_TIME_MIN 10.0
25
26 BoxUpdateTimer::BoxUpdateTimer(float period, Ecore_Task_Cb callback, void* data)
27     : m_period(period)
28     , m_callback(callback)
29     , m_data(data)
30     , m_timer()
31 {
32     LogD("enter");
33 }
34
35 BoxUpdateTimer::~BoxUpdateTimer()
36 {
37     LogD("enter");
38 }
39
40 void BoxUpdateTimer::start()
41 {
42     if (m_period < UPDATE_TIME_MIN) {
43         return;
44     }
45
46     m_timer = ecore_timer_add(m_period, m_callback, m_data); 
47 }
48
49 void BoxUpdateTimer::stop()
50 {
51     ecore_timer_del(m_timer);
52     m_timer = NULL;
53 }
54
55 void BoxUpdateTimer::restart()
56 {
57     if (m_timer) {
58         ecore_timer_reset(m_timer);
59     } else {
60         start();
61     }
62 }
63
64 void BoxUpdateTimer::setPeriod(float period)
65 {
66     m_period = period;
67     restart();
68 }