]>
git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/format.cpp
2 *******************************************************************************
3 * Copyright (C) 1997-2010, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
9 * Modification History:
11 * Date Name Description
12 * 02/19/97 aliu Converted from java.
13 * 03/17/97 clhuang Implemented with new APIs.
14 * 03/27/97 helena Updated to pass the simple test after code review.
15 * 07/20/98 stephen Added explicit init values for Field/ParsePosition
16 ********************************************************************************
18 // *****************************************************************************
19 // This file was generated from the java source file Format.java
20 // *****************************************************************************
22 #include <typeinfo> // for 'typeid' to work
24 #include "unicode/utypes.h"
28 * If all modules in the I18N library are switched off, then there are no
29 * library exports and MSVC 6 writes a .dll but not a .lib file.
30 * Unless we export _something_ in that case...
32 #if UCONFIG_NO_COLLATION && UCONFIG_NO_FORMATTING && UCONFIG_NO_TRANSLITERATION
33 U_CAPI
int32_t U_EXPORT2
34 uprv_icuin_lib_dummy(int32_t i
) {
39 /* Format class implementation ---------------------------------------------- */
41 #if !UCONFIG_NO_FORMATTING
43 #include "unicode/format.h"
44 #include "unicode/ures.h"
48 // *****************************************************************************
50 // *****************************************************************************
54 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(FieldPosition
)
56 FieldPosition::~FieldPosition() {}
59 FieldPosition::clone() const {
60 return new FieldPosition(*this);
63 // -------------------------------------
64 // default constructor
69 *validLocale
= *actualLocale
= 0;
72 // -------------------------------------
78 // -------------------------------------
81 Format::Format(const Format
&that
)
87 // -------------------------------------
88 // assignment operator
91 Format::operator=(const Format
& that
)
94 uprv_strcpy(validLocale
, that
.validLocale
);
95 uprv_strcpy(actualLocale
, that
.actualLocale
);
100 // -------------------------------------
101 // Formats the obj and append the result in the buffer, toAppendTo.
102 // This calls the actual implementation in the concrete subclasses.
105 Format::format(const Formattable
& obj
,
106 UnicodeString
& toAppendTo
,
107 UErrorCode
& status
) const
109 if (U_FAILURE(status
)) return toAppendTo
;
111 FieldPosition
pos(FieldPosition::DONT_CARE
);
113 return format(obj
, toAppendTo
, pos
, status
);
116 // -------------------------------------
117 // Default implementation sets unsupported error; subclasses should
121 Format::format(const Formattable
& /* unused obj */,
122 UnicodeString
& toAppendTo
,
123 FieldPositionIterator
* /* unused posIter */,
124 UErrorCode
& status
) const
126 if (!U_FAILURE(status
)) {
127 status
= U_UNSUPPORTED_ERROR
;
132 // -------------------------------------
133 // Parses the source string and create the corresponding
134 // result object. Checks the parse position for errors.
137 Format::parseObject(const UnicodeString
& source
,
139 UErrorCode
& status
) const
141 if (U_FAILURE(status
)) return;
143 ParsePosition
parsePosition(0);
144 parseObject(source
, result
, parsePosition
);
145 if (parsePosition
.getIndex() == 0) {
146 status
= U_INVALID_FORMAT_ERROR
;
150 // -------------------------------------
153 Format::operator==(const Format
& that
) const
155 // Subclasses: Call this method and then add more specific checks.
156 return typeid(*this) == typeid(that
);
158 //---------------------------------------
161 * Simple function for initializing a UParseError from a UnicodeString.
163 * @param pattern The pattern to copy into the parseError
164 * @param pos The position in pattern where the error occured
165 * @param parseError The UParseError object to fill in
168 void Format::syntaxError(const UnicodeString
& pattern
,
170 UParseError
& parseError
) {
171 parseError
.offset
= pos
;
172 parseError
.line
=0; // we are not using line number
175 int32_t start
= (pos
< U_PARSE_CONTEXT_LEN
)? 0 : (pos
- (U_PARSE_CONTEXT_LEN
-1
176 /* subtract 1 so that we have room for null*/));
178 pattern
.extract(start
,stop
-start
,parseError
.preContext
,0);
179 //null terminate the buffer
180 parseError
.preContext
[stop
-start
] = 0;
184 stop
= ((pos
+U_PARSE_CONTEXT_LEN
)<=pattern
.length()) ? (pos
+(U_PARSE_CONTEXT_LEN
-1)) :
186 pattern
.extract(start
,stop
-start
,parseError
.postContext
,0);
187 //null terminate the buffer
188 parseError
.postContext
[stop
-start
]= 0;
192 Format::getLocale(ULocDataLocaleType type
, UErrorCode
& status
) const {
193 U_LOCALE_BASED(locBased
, *this);
194 return locBased
.getLocale(type
, status
);
198 Format::getLocaleID(ULocDataLocaleType type
, UErrorCode
& status
) const {
199 U_LOCALE_BASED(locBased
, *this);
200 return locBased
.getLocaleID(type
, status
);
204 Format::setLocaleIDs(const char* valid
, const char* actual
) {
205 U_LOCALE_BASED(locBased
, *this);
206 locBased
.setLocaleIDs(valid
, actual
);
211 #endif /* #if !UCONFIG_NO_FORMATTING */