blob: 24cca67a9660b9098fe28354fb8c1ac1138549df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
//
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
* @file FScl_EmailImpl.cpp
* @brief This is the implementation for _EmailImpl class.
*
* This file contains definitions of @e _EmailImpl class.
*/
#include <unique_ptr.h>
#include <FApp_AppInfo.h>
#include <FBaseSysLog.h>
#include <FSclEmail.h>
#include <FBase_StringConverter.h>
#include "FScl_EmailImpl.h"
using namespace Tizen::App;
using namespace Tizen::Base;
namespace Tizen { namespace Social
{
_EmailImpl::_EmailImpl(void)
: __recordId(-1)
, __type(EMAIL_TYPE_PERSONAL)
{
}
_EmailImpl::_EmailImpl(EmailType type, const String& email)
: __recordId(-1)
, __type(type)
{
String stringValue = email;
if (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat())
{
if (stringValue.GetLength() > MAX_EMAIL_LENGTH)
{
stringValue.SetLength(MAX_EMAIL_LENGTH);
}
}
__email = stringValue;
}
_EmailImpl::_EmailImpl(const _EmailImpl& rhs)
{
__recordId = rhs.__recordId;
__type = rhs.__type;
__label = rhs.__label;
__email = rhs.__email;
}
_EmailImpl::~_EmailImpl(void)
{
}
_EmailImpl&
_EmailImpl::operator =(const _EmailImpl& rhs)
{
if (this == &rhs)
{
return *this;
}
__recordId = rhs.__recordId;
__type = rhs.__type;
__label = rhs.__label;
__email = rhs.__email;
return *this;
}
bool
_EmailImpl::operator ==(const _EmailImpl& rhs) const
{
if(__type != rhs.__type || __label != rhs.__label || __email != rhs.__email)
{
return false;
}
return true;
}
bool
_EmailImpl::operator !=(const _EmailImpl& rhs) const
{
return !(*this == rhs);
}
bool
_EmailImpl::Equals(const Object& rhs) const
{
const _EmailImpl* pEmailImpl = dynamic_cast<const _EmailImpl*>(&rhs);
if (pEmailImpl == null)
{
return false;
}
return (*this == *pEmailImpl);
}
int
_EmailImpl::GetHashCode(void) const
{
int hashCode = __recordId;
hashCode += __type;
hashCode += __label.GetHashCode();
hashCode += __email.GetHashCode();
return hashCode;
}
EmailType
_EmailImpl::GetType(void) const
{
return __type;
}
String
_EmailImpl::GetEmail(void) const
{
return __email;
}
String
_EmailImpl::GetLabel(void) const
{
return __label;
}
void
_EmailImpl::SetType(EmailType type)
{
__type = type;
}
result
_EmailImpl::SetEmail(const String& email)
{
SysTryReturnResult(NID_SCL, !email.IsEmpty(), E_INVALID_ARG, "The email is an empty string.");
__email = email;
return E_SUCCESS;
}
void
_EmailImpl::SetLabel(const String& label)
{
__label = label;
}
void
_EmailImpl::SetRecordId(int recordId)
{
__recordId = recordId;
}
int
_EmailImpl::GetRecordId(void) const
{
return __recordId;
}
bool
_EmailImpl::IsEmpty(void) const
{
return __email.IsEmpty();
}
const _EmailImpl*
_EmailImpl::GetInstance(const Email& email)
{
return email.__pEmailImpl;
}
_EmailImpl*
_EmailImpl::GetInstance(Email& email)
{
return email.__pEmailImpl;
}
}} // Tizen::Social
|