Merge "Applied sizeof operator on fixed sized array to calculate size." into tizen_2.2
[platform/framework/native/appfw.git] / src / system / inc / FSys_AlarmManager.h
1 //
2 // Copyright (c) 2012 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  * @file                FSys_AlarmManager.h
19  * @brief               This is the header file for _AlarmManager class.
20  */
21
22 #ifndef _FSYSTEM_INTERNAL_ALARM_MANAGER_H_
23 #define _FSYSTEM_INTERNAL_ALARM_MANAGER_H_
24
25 #include <pthread.h>
26 #include <FBaseColMultiHashMap.h>
27 #include <FSys_AlarmImpl.h>
28
29 namespace Tizen { namespace System
30 {
31
32 class _AlarmManager
33 {
34 private:
35         _AlarmManager();
36
37 public:
38         ~_AlarmManager();
39         result RegisterAlarm(_AlarmImpl* pAlarmImpl);
40         result UnregisterAlarm(_AlarmImpl* pAlarmImpl);
41         result UpdateAlarm(_AlarmImpl* pAlarmImpl);
42         void OnAlarmExpired(int alarmId);
43
44 public:
45         static _AlarmManager* GetInstance(void);
46
47 private:
48         result Construct(void);
49         int ReserveAlarm(Tizen::Base::String appId, Tizen::Base::DateTime startTime, int period);
50         result AddAlarmList(int alarmId, int period, Tizen::Base::String appId, Tizen::Base::DateTime* endTime);
51         result RemoveAlarmList(int alarmId);
52         result RemoveAlarmList(Tizen::Base::String appId);
53
54         static void InitSingleton(void);
55         static void DestroySingleton(void);
56
57 private:
58         pthread_mutex_t                         __lock;
59         Tizen::Base::Collection::HashMap        __alarmList;
60         Tizen::Base::Collection::MultiHashMap*  __pAlarmHashMap;
61
62         static _AlarmManager* __pAlarmManager;
63 };
64
65
66 } } // Tizen::Sys
67
68 #endif //_FSYSTEM_INTERNAL_ALARM_MANAGER_H_