2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @brief This is the header file for the %Int8 class.
21 * @see Tizen::Base::Number
23 * This header file contains the declarations of the %Int8 class.
25 #ifndef _FBASE_INT8_H_
26 #define _FBASE_INT8_H_
28 #include <FBaseNumber.h>
31 namespace Tizen { namespace Base
35 * @brief This class is the wrapper class for the @c signed @c char built-in type.
39 * The %Int8 class represents an integer value ranging from -128 to 127. The class is useful when passing an 8-bit
40 * signed integral value to a method that accepts only an instance of Object. Furthermore, this class provides
41 * methods for converting %Int8 (and @c char) to String, and %String to %Int8 (and @c char).
43 * The following example demonstrates how to use the %Int8 class.
48 * using namespace Tizen::Base;
50 * // This method checks whether the given string object contains a string
51 * // representation of the pre-defined minimum 8-bit integral value.
53 * MyClass::Verify(String& string, bool& out)
55 * static const Int8 MINIMUM(123);
57 * result r = E_SUCCESS;
60 * r = Int8::Parse(string, ch);
66 * out = (MINIMUM.CompareTo(ch) == 0) ? true: false;
74 class _OSP_EXPORT_ Int8
79 * Initializes this instance of %Int8 with the specified value.
83 * @param[in] value A @c char value
89 * Copying of objects using this copy constructor is allowed.
93 * @param[in] value An instance of %Int8
95 Int8(const Int8& value);
98 * This destructor overrides Tizen::Base::Object::~Object().
105 * Copying of objects using this copy assignment operator is allowed.
109 * @param[in] rhs An instance of %Int8
111 Int8& operator =(const Int8& rhs);
114 * Compares two @c char values.
118 * @return A 32-bit @c signed integer value
120 * < 0 if the value of ch1 is less than the value of ch2
121 * == 0 if the value of ch1 is equal to the value of ch2
122 * > 0 if the value of ch1 is greater than the value of ch2
124 * @param[in] ch1 The first @c char value to compare
125 * @param[in] ch2 The second @c char value to compare
127 static int Compare(char ch1, char ch2);
130 * Compares the value of the current instance with the value of the specified instance of the %Int8 class.
134 * @return A 32-bit @c signed integer value
136 * < 0 if the value of the current instance is less than the value of the specified instance
137 * == 0 if the value of the current instance is equal to the value of the specified instance
138 * > 0 if the value of the current instance is greater than the value of the specified instance
140 * @param[in] value An instance of the %Int8 class to compare
142 int CompareTo(const Int8& value) const;
145 * Checks whether the value of the specified instance of %Int8 is equal to the value of the current instance.
149 * @return @c true if the value of the specified instance is equal to the value of the current instance, @n
151 * @param[in] obj An instance of Object to compare
152 * @see Tizen::Base::Object::Equals()
154 virtual bool Equals(const Object& obj) const;
157 * Gets the hash value of the current instance of %Int8.
161 * @return An integer value indicating the hash value of the current instance of %Int8
162 * @remarks Two equal instances must return the same hash value. For better performance,
163 * the used hash function must generate a random distribution for all inputs. @n
164 * The default implementation of this method returns the value of the current instance.
166 virtual int GetHashCode(void) const;
169 * Gets the hash value of the specified @c char value.
173 * @return An integer value indicating the hash value of the specified @c char value
174 * @param[in] val A @c char value to get the hash value
176 static int GetHashCode(char val);
179 * Decodes a string into a @c signed @c char.
183 * @return An error code
184 * @param[in] s A string representing a numeric value
185 * @param[out] ret The result of the operation
186 * @exception E_SUCCESS The method is successful.
187 * @exception E_NUM_FORMAT The specified string does not contain a number that can be parsed.
188 * @remarks This method accepts decimal, hexadecimal, and octal numbers given by the
192 * Sign[opt] DecimalNumeral
193 * Sign[opt] 0x HexDigits
194 * Sign[opt] 0X HexDigits
195 * Sign[opt] # HexDigits
196 * Sign[opt] 0 OctalDigits
200 * @remarks This method has portability issue. @n
201 * When the specified string is nagative number in the ARM architecture, type casting is needed like following code.
204 * Int8::Decode(L"-0X20", ret);
205 * SomeOutputFunction(static_cast< signed char >(ret));
208 static result Decode(const String& s, char& ret);
211 * Parses the @c signed @c char equivalent of the specified string representing a numeric value.
215 * @return An error code
216 * @param[in] s A string representing a numeric value
217 * @param[out] ret The result of the operation
218 * @exception E_SUCCESS The method is successful.
219 * @exception E_NUM_FORMAT The specified string does not contain a byte that can be parsed.
221 * - This method assumes that the string representing the numeric value uses a radix 10.
222 * - This method guarantees that the original value of out-parameter is not changed when the method returns error.
224 static result Parse(const String& s, char& ret);
227 * Parses the specified string representing a numeric value and
228 * returns the value as @c signed @c char (as out parameter).
232 * @return The @c signed @c char equivalent of the specified string representing the numeric value using the specified index
233 * @param[in] s A string representing a numeric value
234 * @param[in] radix The radix of the string representing a numeric value @n
235 * It must either be 2, 8, 10, or 16.
236 * @param[out] ret The result of the operation
237 * @exception E_SUCCESS The method is successful.
238 * @exception E_NUM_FORMAT The specified string does not contain a number that can be parsed.
239 * @exception E_OUT_OF_RANGE The specified @c radix is invalid.
240 * @remarks This method guarantees that the original value of out-parameter is not changed when the method returns error.
242 static result Parse(const String& s, int radix, char& ret);
245 * Gets the @c signed @c char equivalent of the current instance of %Int8.
249 * @return The @c signed @c char equivalent of the current instance
251 virtual char ToChar(void) const;
254 * Gets the @c signed @c short equivalent of the current instance of %Int8.
258 * @return The @c signed @c short equivalent of the current instance
260 virtual short ToShort(void) const;
263 * Gets the @c signed @c int equivalent of the current instance of %Int8.
267 * @return The @c signed @c int equivalent of the current instance
269 virtual int ToInt(void) const;
272 * Gets the @c signed @c long equivalent of the current instance of %Int8.
276 * @return The @c signed @c long equivalent of the current instance
278 virtual long ToLong(void) const;
281 * Gets the @c signed @c long @c long equivalent of the current instance of %Int8.
285 * @return The @c signed @c long @c long equivalent of the current instance
287 virtual long long ToLongLong(void) const;
290 * Gets the @c signed @c float equivalent of the current instance of %Int8.
294 * @return The @c signed @c float equivalent of the current instance
296 virtual float ToFloat(void) const;
299 * Gets the @c signed @c double equivalent of the current instance of %Int8.
303 * @return The @c signed @c double equivalent of the current instance
305 virtual double ToDouble(void) const;
308 * Gets the string representing the value of the current instance of %Int8.
312 * @return A string representing the value of the current instance
314 virtual String ToString(void) const;
317 * Gets the string representing the specified @c signed @c char value using radix @c 10.
321 * @return A string containing a Unicode representation of the specified @c char value using radix 10
322 * @param[in] value A @c char value
324 static String ToString(char value);
327 * A constant holding the maximum value of type @c char. @n
328 * A @c short character can hold a value of upto 2^7-1.
332 static const char VALUE_MAX = (signed char) 0x7F;
335 * A constant holding the minimum value of type @c char. @n
336 * A @c short character can hold a value of upto -2^7.
340 static const char VALUE_MIN = (signed char) 0x80;
343 * A @c signed @c char value of this instance.
351 friend class _Int8Impl;
352 class _Int8Impl * __pInt8Impl;
358 #endif //_FBASE_INT8_H_