2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
9 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @file FBaseShort.cpp
20 * @brief This is the implementation file for Short class.
27 #include <FBaseShort.h>
28 #include <FBaseResult.h>
29 #include <FBaseCharacter.h>
30 #include <FBaseSysLog.h>
32 namespace Tizen { namespace Base
35 Short::Short(short value)
41 Short::Short(const Short& value)
52 Short::operator =(const Short& rhs)
62 Short::Compare(short s1, short s2)
64 return(s1 < s2 ? -1 : (s1 == s2 ? 0 : 1));
68 Short::CompareTo(const Short& value) const
70 return(Short::Compare(this->value, value.value));
74 Short::Equals(const Object& obj) const
76 const Short* pOther = dynamic_cast <const Short*>(&obj);
82 return value == (*pOther).value;
86 Short::Equals(short value) const
88 return this->value == value;
92 Short::GetHashCode(void) const
94 return static_cast<int> (value);
98 Short::GetHashCode(short val)
100 return static_cast<int> (val);
104 Short::Decode(const String& s, short& ret)
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));
111 wchar_t* pEnd = null;
117 radix = Character::RADIX_HEXADECIMAL;
122 else if (s[0] == L'0' && (s.GetLength() >= 2))
124 if (s[1] == L'x' || s[1] == L'X')
126 radix = Character::RADIX_HEXADECIMAL;
130 radix = Character::RADIX_OCTAL;
135 radix = Character::RADIX_DECIMAL;
138 result r = E_SUCCESS;
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));
148 if (value > Short::VALUE_MAX)
150 ret = Short::VALUE_MAX;
152 else if (value < Short::VALUE_MIN)
154 ret = Short::VALUE_MIN;
165 Short::Parse(const String& s, short& ret)
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());
171 return Parse(s, Character::RADIX_DECIMAL, ret);
175 Short::Parse(const String& s, int radix, short& ret)
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);
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));
185 result r = E_SUCCESS;
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));
195 if (value > Short::VALUE_MAX)
197 ret = Short::VALUE_MAX;
199 else if (value < Short::VALUE_MIN)
201 ret = Short::VALUE_MIN;
205 ret = static_cast< short >(value);
212 Short::ToChar(void) const
214 return static_cast<char> (value);
218 Short::ToShort(void) const
224 Short::ToInt(void) const
226 return static_cast<int> (value);
230 Short::ToLong(void) const
232 return static_cast<long> (value);
236 Short::ToLongLong(void) const
238 return static_cast<long long> (value);
242 Short::ToFloat(void) const
244 return static_cast<float> (value);
248 Short::ToDouble(void) const
250 return static_cast<double> (value);
254 Short::ToString(void) const
256 return(Short::ToString(value));
260 Short::ToString(short value)
262 const static unsigned int SHORT_LENGTH_MAX = 6;
264 wchar_t sValue[SHORT_LENGTH_MAX + 1] = {0, };
265 swprintf(sValue, (sizeof(sValue) / sizeof(sValue[0])), L"%d", value);
267 return String(sValue);