summaryrefslogtreecommitdiff
path: root/src/FSclEmail.cpp
blob: f50040ce8804707f66ad6a641bcbfa5e49835016 (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
//
// 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		FSclEmail.cpp
* @brief	This is the implementation for Email class.
*
* This file contains definitions of @e Email class.
*/

#include <FSclEmail.h>
#include <FApp_AppInfo.h>
#include <FBaseSysLog.h>
#include "FScl_EmailImpl.h"

using namespace Tizen::App;
using namespace Tizen::Base;

namespace Tizen { namespace Social
{

Email::Email(void)
{
	__pEmailImpl = new (std::nothrow) _EmailImpl();
	SysTryReturnVoidResult(NID_SCL, __pEmailImpl != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
}

Email::Email(EmailType type, const String& email)
{
	__pEmailImpl = new (std::nothrow) _EmailImpl(type, email);
	SysTryReturnVoidResult(NID_SCL, __pEmailImpl != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
}

Email::Email(const Email& rhs)
{
	__pEmailImpl = new (std::nothrow) _EmailImpl(*rhs.__pEmailImpl);
	SysTryReturnVoidResult(NID_SCL, __pEmailImpl != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
}

Email::~Email(void)
{
	delete __pEmailImpl;
}

Email&
Email::operator =(const Email& rhs)
{
	if (this == &rhs)
	{
		return *this;
	}

	*__pEmailImpl = *rhs.__pEmailImpl;

	return *this;
}

bool
Email::operator ==(const Email& rhs) const
{
	return *__pEmailImpl == *rhs.__pEmailImpl;
}

bool
Email::operator !=(const Email& rhs) const
{
	return !(*this == rhs);
}

bool
Email::Equals(const Object& rhs) const
{
	const Email* pEmail = dynamic_cast<const Email*>(&rhs);

	if (pEmail == null)
	{
		return false;
	}

	return __pEmailImpl->Equals(*pEmail->__pEmailImpl);
}

int
Email::GetHashCode(void) const
{
	return __pEmailImpl->GetHashCode();
}

EmailType
Email::GetType(void) const
{
	EmailType type = __pEmailImpl->GetType();

	if (type == EMAIL_TYPE_CUSTOM && (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat()))
	{
		type =  EMAIL_TYPE_OTHER;
	}

	return type;
}

String
Email::GetLabel(void) const
{
	return __pEmailImpl->GetLabel();
}

String
Email::GetEmail(void) const
{
	String email = __pEmailImpl->GetEmail();

	if (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat())
	{
		if (email.GetLength() > MAX_EMAIL_LENGTH)
		{
			email.SetLength(MAX_EMAIL_LENGTH);
		}
	}

	return email;
}

void
Email::SetType(EmailType type)
{
	return __pEmailImpl->SetType(type);
}

void
Email::SetLabel(const String& label)
{
	return __pEmailImpl->SetLabel(label);
}

result
Email::SetEmail(const String& email)
{
	if (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat())
	{
		SysTryReturnResult(NID_SCL, email.GetLength() <= MAX_EMAIL_LENGTH, E_INVALID_ARG, "The length of the email exceeds the max length.");
	}

	return __pEmailImpl->SetEmail(email);
}

}} // Tizen::Social