Add internal api to support C#
[platform/core/api/notification.git] / notification-ex / manager.h
1 /*
2  * Copyright (c) 2019 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 #ifndef NOTIFICATION_EX_MANAGER_H_
18 #define NOTIFICATION_EX_MANAGER_H_
19
20 #include <string>
21 #include <list>
22 #include <memory>
23
24 #include "notification-ex/common.h"
25 #include "notification-ex/abstract_item.h"
26 #include "notification-ex/event_observer_interface.h"
27 #include "notification-ex/event_sender_interface.h"
28 #include "notification-ex/event_listener_interface.h"
29
30 #ifndef EXPORT_API
31 #define EXPORT_API __attribute__((visibility("default")))
32 #endif
33
34 namespace notification {
35
36 class EXPORT_API Manager : public IEventObserver {
37  public:
38   Manager(std::unique_ptr<IEventSender> sender,
39       std::unique_ptr<IEventListener> listener, std::string receiver_group = "");
40   virtual ~Manager();
41
42   std::list<std::unique_ptr<item::AbstractItem>> Get(std::string channel = "");
43   int Update(std::shared_ptr<item::AbstractItem> noti);
44   int Delete(std::shared_ptr<item::AbstractItem> noti);
45   int DeleteAll();
46   int Hide(std::shared_ptr<item::AbstractItem> noti);
47   std::unique_ptr<item::AbstractItem> FindByRootID(std::string id);
48   int SendEvent(const IEventInfo& info, std::shared_ptr<item::AbstractItem> noti);
49   void OnEvent(const IEventInfo& info,
50       std::list<tizen_base::Bundle> serialized) override;
51   std::list<tizen_base::Bundle> OnRequest(const IEventInfo& info) override;
52   int OnRequestNumber(const IEventInfo& info) override;
53   void SendError(const IEventInfo& info, NotificationError error);
54   int GetCount() const;
55   static std::string GetPath();
56
57  protected:
58   virtual void OnAdd(const IEventInfo& info, std::list<std::shared_ptr<item::AbstractItem>> addedItem);
59   virtual void OnUpdate(const IEventInfo& info, std::shared_ptr<item::AbstractItem> updatedItem);
60   virtual void OnDelete(const IEventInfo& info, std::shared_ptr<item::AbstractItem> deletedItem);
61   virtual void OnError(NotificationError error, int requestId);
62   virtual std::list<std::shared_ptr<item::AbstractItem>> OnRequestEvent(
63       const IEventInfo& info);
64   virtual int OnRequestNumberEvent(const IEventInfo& info);
65
66  private:
67   class Impl;
68   std::unique_ptr<Impl> impl_;
69 };
70
71 }  // namespace notification
72
73 #endif  // NOTIFICATION_EX_MANAGER_H_