Revert "Merge "[SystemInfo] Throwing NOT_SUPPORTED_ERR added" into tizen_3.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   //AlarmRelative
38   void GetRemainingSeconds(const picojson::value& args, picojson::object& out);
39   //AlarmAbsolute
40   void GetNextScheduledDate(const picojson::value& args, picojson::object& out);
41
42  private:
43   AlarmManager(const AlarmManager&) = delete;
44   AlarmManager& operator=(const AlarmManager&) = delete;
45   common::PlatformResult GetAlarm(int id, picojson::object& obj);
46
47 };
48
49 } // namespace alarm
50 } // namespace extension
51
52 #endif // ALARM_ALARM_MANAGER_H_