Merge branch 'tizen_3.0' into tizen_4.0
[platform/core/api/webapi-plugins.git] / src / alarm / alarm_manager.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef ALARM_ALARM_MANAGER_H_
18 #define ALARM_ALARM_MANAGER_H_
19
20 #include "common/picojson.h"
21 #include "common/platform_result.h"
22
23 namespace extension {
24 namespace alarm {
25
26 class AlarmManager {
27  public:
28   AlarmManager();
29   virtual ~AlarmManager();
30
31   void Add(const picojson::value& args, picojson::object& out);
32   void Remove(const picojson::value& args, picojson::object& out);
33   void RemoveAll(const picojson::value& args, picojson::object& out);
34   void Get(const picojson::value& args, picojson::object& out);
35   void GetAll(const picojson::value& args, picojson::object& out);
36
37 #if defined(TIZEN_MOBILE) || defined(TIZEN_WEARABLE)
38   void AddAlarmNotification(const picojson::value& args, picojson::object& out);
39   void GetAlarmNotification(const picojson::value& args, picojson::object& out);
40 #endif
41   // AlarmRelative
42   void GetRemainingSeconds(const picojson::value& args, picojson::object& out);
43   // AlarmAbsolute
44   void GetNextScheduledDate(const picojson::value& args, picojson::object& out);
45
46  private:
47   AlarmManager(const AlarmManager&) = delete;
48   AlarmManager& operator=(const AlarmManager&) = delete;
49   common::PlatformResult GetAlarm(int id, picojson::object& obj);
50 };
51
52 }  // namespace alarm
53 }  // namespace extension
54
55 #endif  // ALARM_ALARM_MANAGER_H_