Parse() remains original value when the function returns errror
[platform/framework/native/appfw.git] / src / base / FBaseShort.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FBaseShort.cpp
20  * @brief               This is the implementation file for Short class.
21  * @see                 Number
22  */
23
24 #include <wchar.h>
25 #include <limits.h>
26 #include <errno.h>
27 #include <FBaseShort.h>
28 #include <FBaseResult.h>
29 #include <FBaseCharacter.h>
30 #include <FBaseSysLog.h>
31
32 namespace Tizen { namespace Base
33 {
34
35 Short::Short(short value)
36         : value(value)
37         , __pShortImpl(null)
38 {
39 }
40
41 Short::Short(const Short& value)
42         : value(value.value)
43         , __pShortImpl(null)
44 {
45 }
46
47 Short::~Short(void)
48 {
49 }
50
51 Short&
52 Short::operator =(const Short& rhs)
53 {
54         if (&rhs != this)
55         {
56                 value = rhs.value;
57         }
58         return *this;
59 }
60
61 int
62 Short::Compare(short s1, short s2)
63 {
64         return(s1 < s2 ? -1 : (s1 == s2 ? 0 : 1));
65 }
66
67 int
68 Short::CompareTo(const Short& value) const
69 {
70         return(Short::Compare(this->value, value.value));
71 }
72
73 bool
74 Short::Equals(const Object& obj) const
75 {
76         const Short* pOther = dynamic_cast <const Short*>(&obj);
77         if (pOther == null)
78         {
79                 return false;
80         }
81
82         return value == (*pOther).value;
83 }
84
85 bool
86 Short::Equals(short value) const
87 {
88         return this->value == value;
89 }
90
91 int
92 Short::GetHashCode(void) const
93 {
94         return static_cast<int> (value);
95 }
96
97 int
98 Short::GetHashCode(short val)
99 {
100         return static_cast<int> (val);
101 }
102
103 result
104 Short::Decode(const String& s, short& ret)
105 {
106         SysTryReturn(NID_BASE, s.GetLength() >= 1, E_NUM_FORMAT, E_NUM_FORMAT,
107                 "[%s] The length of s MUST be greater than 0.", GetErrorMessage(E_NUM_FORMAT));
108
109         long value = 0;
110         int radix = 0;
111         wchar_t* pEnd = null;
112         String str(s);
113
114         // Find radix
115         if (s[0] == L'#')
116         {
117                 radix = Character::RADIX_HEXADECIMAL;
118
119                 // Remove '#'
120                 str.Remove(0, 1);
121         }
122         else if (s[0] == L'0' && (s.GetLength() >= 2))
123         {
124                 if (s[1] == L'x' || s[1] == L'X')
125                 {
126                         radix = Character::RADIX_HEXADECIMAL;
127                 }
128                 else
129                 {
130                         radix = Character::RADIX_OCTAL;
131                 }
132         }
133         else
134         {
135                 radix = Character::RADIX_DECIMAL;
136         }
137
138         result r = E_SUCCESS;
139
140         errno = 0;
141         value = wcstol(str.GetPointer(), &pEnd, radix);
142         SysTryCatch(NID_BASE, (pEnd[0] == 0), r = E_NUM_FORMAT, E_NUM_FORMAT,
143                 "[%s] Short decode failed. Scan stopped at (%ls).", GetErrorMessage(E_NUM_FORMAT), pEnd);
144         SysTryCatch(NID_BASE, !((value == LONG_MAX || value == LONG_MIN) && (errno != 0)), r = E_NUM_FORMAT, E_NUM_FORMAT,
145                 "[%s] Decoded value cannot fit into Short.", GetErrorMessage(E_NUM_FORMAT));
146
147 CATCH:
148         if (value > Short::VALUE_MAX)
149         {
150                 ret = Short::VALUE_MAX;
151         }
152         else if (value < Short::VALUE_MIN)
153         {
154                 ret = Short::VALUE_MIN;
155         }
156         else
157         {
158                 ret = (short) value;
159         }
160
161         return r;
162 }
163
164 result
165 Short::Parse(const String& s, short& ret)
166 {
167         int len = s.GetLength();
168         SysTryReturn(NID_BASE, (len > 0 && len < 7), E_NUM_FORMAT, E_NUM_FORMAT,
169                 "[%s] The length of s(%ls) MUST be greater than 0 and less than 7.", GetErrorMessage(E_NUM_FORMAT), s.GetPointer());
170
171         return Parse(s, Character::RADIX_DECIMAL, ret);
172 }
173
174 result
175 Short::Parse(const String& s, int radix, short& ret)
176 {
177         SysTryReturn(NID_BASE, ((radix == Character::RADIX_BINARY) || (radix == Character::RADIX_OCTAL) ||
178                 (radix == Character::RADIX_DECIMAL) || (radix == Character::RADIX_HEXADECIMAL)), E_OUT_OF_RANGE, E_OUT_OF_RANGE,
179                 "[%s] The radix(%d) MUST be one of 2, 8, 10 and 16.", GetErrorMessage(E_OUT_OF_RANGE), radix);
180
181         int len = s.GetLength();
182         SysTryReturn(NID_BASE, (len > 0), E_NUM_FORMAT, E_NUM_FORMAT, "[%s] The length of s MUST be greater than 0.",
183                 GetErrorMessage(E_NUM_FORMAT));
184
185         result r = E_SUCCESS;
186
187         errno = 0;
188         wchar_t* pEnd = null;
189         long value = wcstol(s.GetPointer(), &pEnd, radix);
190         SysTryReturn(NID_BASE, (pEnd[0] == 0), E_NUM_FORMAT, E_NUM_FORMAT,
191                 "[%s] Short parse failed. Scan stopped at (%ls).", GetErrorMessage(E_NUM_FORMAT), pEnd);
192         SysTryReturn(NID_BASE, !(value > Short::VALUE_MAX || value < Short::VALUE_MIN) || (errno != 0), E_NUM_FORMAT,
193                 E_NUM_FORMAT, "[%s] Parsed value cannot fit into Short.", GetErrorMessage(E_NUM_FORMAT));
194
195         if (value > Short::VALUE_MAX)
196         {
197                 ret = Short::VALUE_MAX;
198         }
199         else if (value < Short::VALUE_MIN)
200         {
201                 ret = Short::VALUE_MIN;
202         }
203         else
204         {
205                 ret = static_cast< short >(value);
206         }
207
208         return r;
209 }
210
211 char
212 Short::ToChar(void) const
213 {
214         return static_cast<char> (value);
215 }
216
217 short
218 Short::ToShort(void) const
219 {
220         return value;
221 }
222
223 int
224 Short::ToInt(void) const
225 {
226         return static_cast<int> (value);
227 }
228
229 long
230 Short::ToLong(void) const
231 {
232         return static_cast<long> (value);
233 }
234
235 long long
236 Short::ToLongLong(void) const
237 {
238         return static_cast<long long> (value);
239 }
240
241 float
242 Short::ToFloat(void) const
243 {
244         return static_cast<float> (value);
245 }
246
247 double
248 Short::ToDouble(void) const
249 {
250         return static_cast<double> (value);
251 }
252
253 String
254 Short::ToString(void) const
255 {
256         return(Short::ToString(value));
257 }
258
259 String
260 Short::ToString(short value)
261 {
262         const static unsigned int SHORT_LENGTH_MAX = 6;
263
264         wchar_t sValue[SHORT_LENGTH_MAX + 1] = {0, };
265         swprintf(sValue, (sizeof(sValue) / sizeof(sValue[0])), L"%d", value);
266
267         return String(sValue);
268 }
269
270 }} //Tizen::Base