Merge "Change return value of items to get chat message information" into tizen
[platform/core/api/notification.git] / notification-ex / icon_text_item.cc
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 #include <dlog.h>
18
19 #include "notification-ex/icon_text_item.h"
20 #include "notification-ex/icon_text_item_implementation.h"
21 #include "notification-ex/factory_manager.h"
22 #include "notification-ex/exception.h"
23
24 #ifdef LOG_TAG
25 #undef LOG_TAG
26 #endif
27
28 #define LOG_TAG "NOTIFICATION_EX"
29 #define ICONTEXT_PATH_KEY "__ICONTEXT_PATH_KEY__"
30 #define ICONTEXT_TITLE_KEY "__ICONTEXT_TITLE_KEY__"
31
32 namespace notification {
33 namespace item {
34
35 IconTextItem::IconTextItem(std::string id, std::shared_ptr<IconItem> icon,
36     std::shared_ptr<TextItem> text, std::shared_ptr<AbstractAction> action)
37     : AbstractItem(id, action), impl_(new Impl(this, icon, text)) {
38 }
39
40 IconTextItem::Impl::Impl(IconTextItem* parent, std::shared_ptr<IconItem> icon,
41     std::shared_ptr<TextItem> text)
42     : parent_(parent), icon_(icon), text_(text) {
43   LOGI("IconTextItem impl created");
44 }
45
46 int IconTextItem::GetType() const {
47   return AbstractItem::IconText;
48 }
49
50 Bundle IconTextItem::Serialize() const {
51   Bundle b;
52   b = AbstractItem::Serialize();
53
54   b.Add(ICONTEXT_PATH_KEY,
55     reinterpret_cast<char*>(impl_->icon_->Serialize().ToRaw().first.get()));
56   b.Add(ICONTEXT_TITLE_KEY,
57     reinterpret_cast<char*>(impl_->text_->Serialize().ToRaw().first.get()));
58   return b;
59 }
60
61 void IconTextItem::Deserialize(Bundle b) {
62   AbstractItem::Deserialize(b);
63
64   std::shared_ptr<AbstractItem> icon =
65       FactoryManager::GetInst().CreateItem(AbstractItem::Icon);
66   icon.get()->Deserialize(Bundle(b.GetString(ICONTEXT_PATH_KEY)));
67   impl_->icon_ = std::static_pointer_cast<IconItem>(icon);
68
69   std::shared_ptr<AbstractItem> text =
70     FactoryManager::GetInst().CreateItem(AbstractItem::Text);
71   text.get()->Deserialize(Bundle(b.GetString(ICONTEXT_TITLE_KEY)));
72   impl_->text_ = std::static_pointer_cast<TextItem>(text);
73 }
74
75 AbstractItem& IconTextItem::FindByID(std::string id) {
76   if (GetId() == id)
77     return *this;
78
79   return FactoryManager::GetInst().GetNullItem();
80 }
81
82 IconItem& IconTextItem::GetIconItem() const {
83   return *(impl_->icon_);
84 }
85
86 TextItem& IconTextItem::GetTextItem() const {
87   return *(impl_->text_);
88 }
89
90 IconTextItem::~IconTextItem() = default;
91 IconTextItem::Impl::~Impl() = default;
92
93 }  // namespace item
94 }  // namespace notification