Merge "Revert "Revert "Use tizen_base::Bundle""" into tizen
[platform/core/api/notification.git] / notification-ex / 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 <memory>
20
21 #include "notification-ex/text_item.h"
22 #include "notification-ex/text_item_implementation.h"
23 #include "notification-ex/factory_manager.h"
24
25 #ifdef LOG_TAG
26 #undef LOG_TAG
27 #endif
28
29 #define LOG_TAG "NOTIFICATION_EX"
30 #define TEXT_CONTENTS_KEY "__TEXT_CONTENTS_KEY__"
31 #define TEXT_HYPERLINK_KEY "__TEXT_HYPERLINK_KEY__"
32
33 using namespace tizen_base;
34
35 namespace notification {
36 namespace item {
37 TextItem::TextItem(std::string id, std::string text, std::string hyperlink,
38     std::shared_ptr<AbstractAction> action)
39     : AbstractItem(id, action), impl_(new Impl(this, text, hyperlink)) {
40 }
41
42 TextItem::Impl::Impl(TextItem* parent, std::string text, std::string hyperlink)
43     : parent_(parent), text_(text), hyperlink_(hyperlink) {
44   LOGI("TextItem created");
45 }
46
47 TextItem::~TextItem() = default;
48 TextItem::Impl::~Impl() = default;
49
50 int TextItem::GetType() const {
51   return AbstractItem::Text;
52 }
53
54 Bundle TextItem::Serialize() const {
55   Bundle b;
56   b = AbstractItem::Serialize();
57
58   if (!impl_->text_.empty())
59     b.Add(TEXT_CONTENTS_KEY, impl_->text_);
60
61   if (!impl_->hyperlink_.empty())
62     b.Add(TEXT_HYPERLINK_KEY, impl_->hyperlink_);
63
64   return b;
65 }
66
67 void TextItem::Deserialize(Bundle b) {
68   AbstractItem::Deserialize(b);
69   impl_->text_ = b.GetString(TEXT_CONTENTS_KEY);
70   impl_->hyperlink_ = b.GetString(TEXT_HYPERLINK_KEY);
71 }
72
73 AbstractItem& TextItem::FindByID(std::string id) {
74   if (GetId() == id)
75     return *this;
76   return FactoryManager::GetInst().GetNullItem();
77 }
78
79 bool TextItem::IsItemTypeExist(int type) {
80   if (GetType() == type)
81     return true;
82   return false;
83 }
84
85 void TextItem::SetContents(std::string contents) {
86   impl_->text_ = contents;
87 }
88
89 std::string TextItem::GetContents() const {
90   return impl_->text_;
91 }
92
93 std::string TextItem::GetHyperLink() const {
94   return impl_->hyperlink_;
95 }
96
97 }  // namespace item
98 }  // namespace notification