mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-1949 change StringEnumeration per Markus's request
X-SVN-Rev: 10339
This commit is contained in:
parent
1c3f8fb7b2
commit
128bf53fe3
3 changed files with 144 additions and 17 deletions
|
@ -10,26 +10,148 @@
|
|||
#ifndef STRENUM_H
|
||||
#define STRENUM_H
|
||||
|
||||
#include "uobject.h"
|
||||
#include "unicode/utypes.h"
|
||||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
class UnicodeString;
|
||||
|
||||
/**
|
||||
* Base class for 'pure' C++ implementations. Adds method that
|
||||
* returns the next UnicodeString since in C++ this might be a
|
||||
* common storage model for strings.
|
||||
* <p>Base class for 'pure' C++ implementations of uenum api. Adds a
|
||||
* method that returns the next UnicodeString since in C++ this can
|
||||
* be a common storage format for strings.</p>
|
||||
*
|
||||
* <p>The model is that the enumeration is over strings maintained by
|
||||
* a 'service.' At any point, the service might change, invalidating
|
||||
* the enumerator (though this is expected to be rare). The iterator
|
||||
* returns an error if this has occurred. Lack of the error is no
|
||||
* guarantee that the service didn't change immediately after the
|
||||
* call, so the returned string still might not be 'valid' on
|
||||
* subsequent use.</p>
|
||||
*
|
||||
* <p>Strings may take the form of const char*, const UChar*, or const
|
||||
* UnicodeString*. The type you get is determine by the variant of
|
||||
* 'next' that you call. In general the StringEnumeration is
|
||||
* optimized for one of these types, but all StringEnumerations can
|
||||
* return all types. Returned strings are each terminated with a NUL.
|
||||
* Depending on the service data, they might also include embedded NUL
|
||||
* characters, so API is provided to optionally return the true
|
||||
* length, counting the embedded NULs but not counting the terminating
|
||||
* NUL.</p>
|
||||
*
|
||||
* <p>The pointers returned by next, unext, and snext become invalid
|
||||
* upon any subsequent call to the enumeration's destructor, next,
|
||||
* unext, snext, or reset.</p>
|
||||
*
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
class U_COMMON_API StringEnumeration : public UMemory {
|
||||
class U_COMMON_API StringEnumeration { /* not : public UObject because this is an interface/mixin class */
|
||||
public:
|
||||
/**
|
||||
* Destructor.
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
virtual ~StringEnumeration();
|
||||
|
||||
/**
|
||||
* <p>Return the number of elements that the iterator traverses. If
|
||||
* the iterator is out of sync with its service, status is set to
|
||||
* U_ENUM_OUT_OF_SYNC_ERROR, and the return value is zero.</p>
|
||||
*
|
||||
* <p>The return value will not change except possibly as a result of
|
||||
* a subsequent call to reset, or if the iterator becomes out of sync.</p>
|
||||
*
|
||||
* <p>This is a convenience function. It can end up being very
|
||||
* expensive as all the items might have to be pre-fetched
|
||||
* (depending on the storage format of the data being
|
||||
* traversed).</p>
|
||||
*
|
||||
* @param status the error code.
|
||||
* @return number of elements in the iterator.
|
||||
*
|
||||
* @draft ICU 2.4 */
|
||||
virtual int32_t count(UErrorCode& status) const = 0;
|
||||
|
||||
virtual const char* next(UErrorCode& status) = 0;
|
||||
virtual const UChar* unext(UErrorCode& status) = 0;
|
||||
/**
|
||||
* <p>Returns the next element as a NUL-terminated char*. If there
|
||||
* are no more elements, returns NULL. If the resultLength pointer
|
||||
* is not NULL, the length of the string (not counting the
|
||||
* terminating NUL) is returned at that address. If an error
|
||||
* status is returned, the value at resultLength is undefined.</p>
|
||||
*
|
||||
* <p>The returned pointer is owned by this iterator and must not be
|
||||
* deleted by the caller. The pointer is valid until the next call
|
||||
* to next, unext, snext, reset, or the enumerator's destructor.</p>
|
||||
*
|
||||
* <p>If the iterator is out of sync with its service, status is set
|
||||
* to U_ENUM_OUT_OF_SYNC_ERROR and NULL is returned.</p>
|
||||
*
|
||||
* <p>If the native service string is a UChar* string, it is
|
||||
* converted to char* with the invariant converter. If the
|
||||
* conversion fails (because a character cannot be converted) then
|
||||
* status is set to U_INVARIANT_CONVERSION_ERROR and the return
|
||||
* value is undefined (though not NULL).</p>
|
||||
*
|
||||
* @param status the error code.
|
||||
* @param resultLength a pointer to receive the length, can be NULL.
|
||||
* @return a pointer to the string, or NULL.
|
||||
*
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
virtual const char* next(int32_t *resultLength, UErrorCode& status) = 0;
|
||||
|
||||
/**
|
||||
* <p>Returns the next element as a NUL-terminated UChar*. If there
|
||||
* are no more elements, returns NULL. If the resultLength pointer
|
||||
* is not NULL, the length of the string (not counting the
|
||||
* terminating NUL) is returned at that address. If an error
|
||||
* status is returned, the value at resultLength is undefined.</p>
|
||||
*
|
||||
* <p>The returned pointer is owned by this iterator and must not be
|
||||
* deleted by the caller. The pointer is valid until the next call
|
||||
* to next, unext, snext, reset, or the enumerator's destructor.</p>
|
||||
*
|
||||
* <p>If the iterator is out of sync with its service, status is set
|
||||
* to U_ENUM_OUT_OF_SYNC_ERROR and NULL is returned.</p>
|
||||
*
|
||||
* @param status the error code.
|
||||
* @param resultLength a ponter to receive the length, can be NULL.
|
||||
* @return a pointer to the string, or NULL.
|
||||
*
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
virtual const UChar* unext(int32_t *resultLength, UErrorCode& status) = 0;
|
||||
|
||||
/**
|
||||
* <p>Returns the next element a UnicodeString*. If there are no
|
||||
* more elements, returns NULL.</p>
|
||||
*
|
||||
* <p>The returned pointer is owned by this iterator and must not be
|
||||
* deleted by the caller. The pointer is valid until the next call
|
||||
* to next, unext, snext, reset, or the enumerator's destructor.</p>
|
||||
*
|
||||
* <p>If the iterator is out of sync with its service, status is set
|
||||
* to U_ENUM_OUT_OF_SYNC_ERROR and NULL is returned.</p>
|
||||
*
|
||||
* @param status the error code.
|
||||
* @return a pointer to the string, or NULL.
|
||||
*
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
virtual const UnicodeString* snext(UErrorCode& status) = 0;
|
||||
|
||||
/**
|
||||
* <p>Resets the iterator. This re-establishes sync with the
|
||||
* service and rewinds the iterator to start at the first
|
||||
* element.</p>
|
||||
*
|
||||
* <p>Previous pointers returned by next, unext, or snext become
|
||||
* invalid, and the value returned by count might change.</p>
|
||||
*
|
||||
* @param status the error code.
|
||||
*
|
||||
* @draft ICU 2.4
|
||||
*/
|
||||
virtual void reset(UErrorCode& status) = 0;
|
||||
};
|
||||
|
||||
|
|
|
@ -46,9 +46,7 @@ ustrenum_unext(UEnumeration* en,
|
|||
int32_t* resultLength,
|
||||
UErrorCode* ec)
|
||||
{
|
||||
const UChar* result = THIS(en)->unext(*ec);
|
||||
*resultLength = (result != NULL) ? u_strlen(result) : 0;
|
||||
return result;
|
||||
return THIS(en)->unext(resultLength, *ec);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -59,9 +57,7 @@ ustrenum_next(UEnumeration* en,
|
|||
int32_t* resultLength,
|
||||
UErrorCode* ec)
|
||||
{
|
||||
const char* result = THIS(en)->next(*ec);
|
||||
*resultLength = (result != NULL) ? uprv_strlen(result) : 0;
|
||||
return result;
|
||||
return THIS(en)->next(resultLength, *ec);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -608,7 +608,7 @@ public:
|
|||
return U_FAILURE(status) ? 0 : len;
|
||||
}
|
||||
|
||||
const char* next(UErrorCode& status) {
|
||||
const char* next(int32_t* resultLength, UErrorCode& status) {
|
||||
const UnicodeString* us = snext(status);
|
||||
if (us) {
|
||||
int newlen;
|
||||
|
@ -620,16 +620,25 @@ public:
|
|||
}
|
||||
if (U_SUCCESS(status)) {
|
||||
((char*)_bufp)[newlen] = 0;
|
||||
if (resultLength) {
|
||||
resultLength[0] = newlen;
|
||||
}
|
||||
return (const char*)_bufp;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const UChar* unext(UErrorCode& status) {
|
||||
const UChar* unext(int32_t* resultLength, UErrorCode& status) {
|
||||
const UnicodeString* us = snext(status);
|
||||
// TimeZone terminates the ID strings when it builds them
|
||||
return (us == NULL) ? NULL : us->getBuffer();
|
||||
if (us != NULL) {
|
||||
if (resultLength) {
|
||||
resultLength[0] = us->length();
|
||||
}
|
||||
// TimeZone terminates the ID strings when it builds them
|
||||
return us->getBuffer();
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const UnicodeString* snext(UErrorCode& status) {
|
||||
|
|
Loading…
Add table
Reference in a new issue