2 * Copyright (c) 2019 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 #include "notification-ex/reporter.h"
24 #include "notification-ex/reporter_implementation.h"
25 #include "notification-ex/event_info_internal.h"
26 #include "notification-ex/item_inflator.h"
27 #include "notification-ex/dbus_connection_manager.h"
28 #include "notification-ex/ex_util.h"
29 #include "notification-ex/item_info_internal.h"
30 #include "notification-ex/shared_file.h"
36 #define LOG_TAG "NOTIFICATION_EX"
37 #define MAX_PACKAGE_STR_SIZE 512
38 #define NOTIFICATION_EX_REPORTER_OBJECT_PATH "/org/tizen/notification_ex_reporter"
41 using namespace tizen_base;
42 using namespace notification::item;
43 namespace notification {
46 unique_ptr<IEventSender> sender, unique_ptr<IEventListener> listener)
47 : impl_(new Impl(this, move(sender), move(listener))) {
49 Reporter::~Reporter() = default;
51 Reporter::Impl::~Impl() {
52 listener_->UnRegisterObserver(parent_);
54 Reporter::Impl::Impl(Reporter* parent,
55 unique_ptr<IEventSender> sender, unique_ptr<IEventListener> listener)
56 : sender_(move(sender)), listener_(move(listener)), parent_(parent) {
58 listener_->RegisterObserver(parent_);
61 int Reporter::Impl::SendNotify(shared_ptr<item::AbstractItem> noti,
62 IEventInfo::EventType type) {
63 Bundle serialized = noti->Serialize();
64 EventInfo info(type, util::GetAppId(), noti->GetChannel(), noti->GetId());
65 list<Bundle> serialized_list {serialized};
66 sender_->Notify(info, serialized_list);
67 return info.GetRequestId();
70 void Reporter::SendError(const IEventInfo& info, NotificationError error) {
71 list<Bundle> serialized_list {};
72 IEventInfo& i = const_cast<IEventInfo&>(info);
73 static_cast<IEventInfoInternal&>(i).SetError(error);
74 static_cast<IEventInfoInternal&>(i).SetEventType(EventInfo::Error);
75 impl_->sender_->Notify(info, serialized_list, info.GetOwner());
78 int Reporter::Post(std::shared_ptr<item::AbstractItem> noti) {
80 static_pointer_cast<IItemInfoInternal>(noti->GetInfo())->SetTime(time(NULL));
81 SharedFile* shared_file = new SharedFile();
82 shared_file->CopyPrivateFile(noti);
85 return impl_->SendNotify(noti, EventInfo::Post);
88 int Reporter::Post(std::list<std::shared_ptr<AbstractItem>> notiList) {
89 EventInfo info(EventInfo::Post, util::GetAppId(), "");
90 list<Bundle> serialized_list;
91 for (auto& i : notiList) {
92 static_pointer_cast<IItemInfoInternal>(i->GetInfo())->SetTime(time(NULL));
93 Bundle b = i->Serialize();
94 serialized_list.push_back(b);
96 SharedFile* shared_file = new SharedFile();
97 shared_file->CopyPrivateFile(i);
100 impl_->sender_->Notify(info, serialized_list);
101 return info.GetRequestId();
104 int Reporter::Update(std::shared_ptr<AbstractItem> noti) {
105 static_pointer_cast<IItemInfoInternal>(noti->GetInfo())->SetTime(time(NULL));
106 SharedFile* shared_file = new SharedFile();
107 shared_file->CopyPrivateFile(noti);
110 return impl_->SendNotify(noti, EventInfo::Update);
113 int Reporter::Delete(std::shared_ptr<AbstractItem> noti) {
114 return impl_->SendNotify(noti, EventInfo::Delete);
117 int Reporter::DeleteAll() {
119 EventInfo info(EventInfo::DeleteAll, util::GetAppId(), "");
120 list<Bundle> serialized_list {serialized};
121 impl_->sender_->Notify(info, serialized_list, util::GetAppId());
122 return info.GetRequestId();
125 int Reporter::DeleteByChannel(string channel) {
127 EventInfo info(EventInfo::DeleteAll, util::GetAppId(), channel);
128 list<Bundle> serialized_list {serialized};
129 impl_->sender_->Notify(info, serialized_list, util::GetAppId());
130 return info.GetRequestId();
133 std::unique_ptr<AbstractItem> Reporter::FindByRootID(std::string id) {
135 EventInfo info(EventInfo::Get, util::GetAppId(), "", id);
136 list<Bundle> result = impl_->sender_->Request(info);
137 if (result.size() == 0) {
138 LOGE("Fail to get noti");
139 return unique_ptr<item::AbstractItem>{};
141 Bundle b = result.front();
142 unique_ptr<AbstractItem> gen_item = ItemInflator::Create(b);
146 int Reporter::SendEvent(const IEventInfo& info,
147 shared_ptr<item::AbstractItem> noti) {
148 Bundle serialized = noti->Serialize();
149 list<Bundle> serialized_list {serialized};
150 impl_->sender_->Notify(info, serialized_list);
151 return info.GetRequestId();
154 int Reporter::SendEvent(const IEventInfo& info,
155 std::list<std::shared_ptr<item::AbstractItem>> notiList) {
156 list<Bundle> serialized_list;
157 for (auto& i : notiList) {
158 Bundle b = i->Serialize();
159 serialized_list.push_back(b);
161 impl_->sender_->Notify(info, serialized_list);
162 return info.GetRequestId();
165 void Reporter::OnEvent(const IEventInfo& info, list<Bundle> serialized) {
166 NotificationError error =
167 (static_cast<const IEventInfoInternal&>(info)).GetError();
168 list<shared_ptr<item::AbstractItem>> item_list;
169 if (info.GetEventType() == EventInfo::Error) {
170 OnError(error, info.GetRequestId());
172 } else if (info.GetEventType() == EventInfo::DeleteAll) {
173 OnEvent(info, item_list);
177 for (auto& i : serialized) {
178 shared_ptr<AbstractItem> gen_item = ItemInflator::Create(i);
179 item_list.emplace_back(gen_item);
181 OnEvent(info, item_list);
184 list<shared_ptr<item::AbstractItem>> Reporter::OnRequestEvent(const IEventInfo& info) {
185 return list<shared_ptr<item::AbstractItem>>({});
188 list<Bundle> Reporter::OnRequest(const IEventInfo& info) {
189 list<shared_ptr<item::AbstractItem>> item_list = OnRequestEvent(info);
190 list<Bundle> serialized_list;
191 for (auto& i : item_list) {
192 serialized_list.push_back(i->Serialize());
194 return serialized_list;
197 int Reporter::OnRequestNumber(const IEventInfo& info) {
201 void Reporter::OnEvent(
202 const IEventInfo& info, list<shared_ptr<item::AbstractItem>> notiList) {
205 void Reporter::OnError(NotificationError error, int requestId) {
208 string Reporter::GetPath() {
209 return NOTIFICATION_EX_REPORTER_OBJECT_PATH;
212 void Reporter::OnRegister(const IEventInfo& info) {
215 } // namespace notification