ICU-2449 support integers and binaries for data-driven tests

X-SVN-Rev: 12646
This commit is contained in:
Markus Scherer 2003-07-22 04:17:31 +00:00
parent 50169fe541
commit ad268ad5e2
2 changed files with 122 additions and 20 deletions

View file

@ -93,38 +93,96 @@ void RBDataMap::init(UResourceBundle *headers, UResourceBundle *data, UErrorCode
ures_close(t);
}
const UnicodeString RBDataMap::getString(const char* key, UErrorCode &status) const
const ResourceBundle *RBDataMap::getItem(const char* key, UErrorCode &status) const
{
if(U_FAILURE(status)) {
return NULL;
}
UnicodeString hashKey(key, "");
ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
const ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
if(r != NULL) {
return r->getString(status);
return r;
} else {
status = U_MISSING_RESOURCE_ERROR;
return UnicodeString("", "");
return NULL;
}
}
const UnicodeString RBDataMap::getString(const char* key, UErrorCode &status) const
{
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
return r->getString(status);
} else {
status = U_MISSING_RESOURCE_ERROR;
return UnicodeString();
}
}
int32_t
RBDataMap::getInt28(const char* key, UErrorCode &status) const
{
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
return r->getInt(status);
} else {
return 0;
}
}
uint32_t
RBDataMap::getUInt28(const char* key, UErrorCode &status) const
{
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
return r->getUInt(status);
} else {
return 0;
}
}
const int32_t *
RBDataMap::getIntVector(int32_t &length, const char *key, UErrorCode &status) const {
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
return r->getIntVector(length, status);
} else {
return NULL;
}
}
const uint8_t *
RBDataMap::getBinary(int32_t &length, const char *key, UErrorCode &status) const {
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
return r->getBinary(length, status);
} else {
return NULL;
}
}
int32_t RBDataMap::getInt(const char* key, UErrorCode &status) const
{
int32_t result = 0;
UnicodeString r = this->getString(key, status);
if(U_SUCCESS(status)) {
result = utoi(r);
return utoi(r);
} else {
return 0;
}
return result;
}
const UnicodeString* RBDataMap::getStringArray(int32_t& count, const char* key, UErrorCode &status) const
{
UnicodeString hashKey(key, "");
ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
if(r != NULL) {
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
int32_t i = 0;
count = r->getSize();
if(count <= 0) {
return NULL;
}
UnicodeString *result = new UnicodeString[count];
for(i = 0; i<count; i++) {
result[i] = r->getStringEx(i, status);
@ -138,12 +196,15 @@ const UnicodeString* RBDataMap::getStringArray(int32_t& count, const char* key,
const int32_t* RBDataMap::getIntArray(int32_t& count, const char* key, UErrorCode &status) const
{
UnicodeString hashKey(key, "");
ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
if(r != NULL) {
const ResourceBundle *r = getItem(key, status);
if(U_SUCCESS(status)) {
int32_t i = 0;
count = r->getSize();
if(count <= 0) {
return NULL;
}
int32_t *result = new int32_t[count];
UnicodeString stringRes;
for(i = 0; i<count; i++) {
@ -156,5 +217,3 @@ const int32_t* RBDataMap::getIntArray(int32_t& count, const char* key, UErrorCod
return NULL;
}
}

View file

@ -11,6 +11,7 @@
#include "hash.h"
#include "unicode/ures.h"
#include "unicode/resbund.h"
/** Holder of test data and settings. Allows addressing of items by name.
* For test cases, names are defined in the "Headers" section. For settings
@ -35,20 +36,55 @@ public:
virtual const UnicodeString getString(const char* key, UErrorCode &status) const = 0;
/** get the string from the DataMap. Addressed by name
* parses a bundle string into an integer
* @param key name of the data field.
* @return an integer containing the data
*/
virtual int32_t getInt(const char* key, UErrorCode &status) const = 0;
/**
* Get a signed integer without runtime parsing.
* @param key name of the data field.
* @param status UErrorCode in/out parameter
* @return the integer
*/
virtual int32_t getInt28(const char* key, UErrorCode &status) const = 0;
/**
* Get an unsigned integer without runtime parsing.
* @param key name of the data field.
* @param status UErrorCode in/out parameter
* @return the integer
*/
virtual uint32_t getUInt28(const char* key, UErrorCode &status) const = 0;
/**
* Get a vector of integers without runtime parsing.
* @param length output parameter for the length of the vector
* @param key name of the data field.
* @param status UErrorCode in/out parameter
* @return the integer vector, do not delete
*/
virtual const int32_t *getIntVector(int32_t &length, const char *key, UErrorCode &status) const = 0;
/**
* Get binary data without runtime parsing.
* @param length output parameter for the length of the data
* @param key name of the data field.
* @param status UErrorCode in/out parameter
* @return the binary data, do not delete
*/
virtual const uint8_t *getBinary(int32_t &length, const char *key, UErrorCode &status) const = 0;
/** get an array of strings from the DataMap. Addressed by name.
* The user must dispose of it after usage.
* The user must dispose of it after usage, using delete.
* @param key name of the data field.
* @return a string array containing the data
*/
virtual const UnicodeString* getStringArray(int32_t& count, const char* key, UErrorCode &status) const = 0;
/** get an array of integers from the DataMap. Addressed by name.
* The user must dispose of it after usage.
* The user must dispose of it after usage, using delete.
* @param key name of the data field.
* @return an integer array containing the data
*/
@ -75,8 +111,15 @@ public:
public:
void init(UResourceBundle *data, UErrorCode &status);
void init(UResourceBundle *headers, UResourceBundle *data, UErrorCode &status);
virtual const ResourceBundle *getItem(const char* key, UErrorCode &status) const;
virtual const UnicodeString getString(const char* key, UErrorCode &status) const;
virtual int32_t getInt28(const char* key, UErrorCode &status) const;
virtual uint32_t getUInt28(const char* key, UErrorCode &status) const;
virtual const int32_t *getIntVector(int32_t &length, const char *key, UErrorCode &status) const;
virtual const uint8_t *getBinary(int32_t &length, const char *key, UErrorCode &status) const;
virtual int32_t getInt(const char* key, UErrorCode &status) const;
virtual const UnicodeString* getStringArray(int32_t& count, const char* key, UErrorCode &status) const;