When list is used in popup, sound playing.
[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 1800.0f
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 <= 0.0f ) {
43         return;
44     }
45
46     if (m_period < UPDATE_TIME_MIN) {
47         LogD("reset to minimum period(%f)", UPDATE_TIME_MIN);
48         m_period = UPDATE_TIME_MIN;
49     }
50
51     if (m_timer) {
52         stop();
53     }
54
55     m_timer = ecore_timer_add(m_period, m_callback, m_data); 
56 }
57
58 void BoxUpdateTimer::stop()
59 {
60     ecore_timer_del(m_timer);
61     m_timer = NULL;
62 }
63
64 void BoxUpdateTimer::resume()
65 {
66     LogD("enter");
67     ecore_timer_thaw(m_timer);
68 }
69
70 void BoxUpdateTimer::pause()
71 {
72     LogD("enter");
73     ecore_timer_freeze(m_timer);
74 }
75
76 void BoxUpdateTimer::restart()
77 {
78     if (m_timer) {
79         ecore_timer_reset(m_timer);
80     } else {
81         start();
82     }
83 }
84
85 void BoxUpdateTimer::setPeriod(float period)
86 {
87     m_period = period;
88     restart();
89 }