1999-08-16 21:50:52 +00:00
|
|
|
/*
|
2001-01-18 00:23:29 +00:00
|
|
|
******************************************************************************
|
2001-01-30 18:52:58 +00:00
|
|
|
* Copyright (C) 1996-2001, International Business Machines Corporation and *
|
2001-01-18 00:23:29 +00:00
|
|
|
* others. All Rights Reserved. *
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2001-01-30 18:52:58 +00:00
|
|
|
* File coll.cpp
|
|
|
|
*
|
|
|
|
* Created by: Helena Shih
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 2/5/97 aliu Modified createDefault to load collation data from
|
|
|
|
* binary files when possible. Added related methods
|
|
|
|
* createCollationFromFile, chopLocale, createPathName.
|
|
|
|
* 2/11/97 aliu Added methods addToCache, findInCache, which implement
|
|
|
|
* a Collation cache. Modified createDefault to look in
|
|
|
|
* cache first, and also to store newly created Collation
|
|
|
|
* objects in the cache. Modified to not use gLocPath.
|
|
|
|
* 2/12/97 aliu Modified to create objects from RuleBasedCollator cache.
|
|
|
|
* Moved cache out of Collation class.
|
|
|
|
* 2/13/97 aliu Moved several methods out of this class and into
|
|
|
|
* RuleBasedCollator, with modifications. Modified
|
|
|
|
* createDefault() to call new RuleBasedCollator(Locale&)
|
|
|
|
* constructor. General clean up and documentation.
|
|
|
|
* 2/20/97 helena Added clone, operator==, operator!=, operator=, and copy
|
|
|
|
* constructor.
|
|
|
|
* 05/06/97 helena Added memory allocation error detection.
|
|
|
|
* 05/08/97 helena Added createInstance().
|
|
|
|
* 6/20/97 helena Java class name change.
|
|
|
|
* 04/23/99 stephen Removed EDecompositionMode, merged with
|
|
|
|
* Normalizer::EMode
|
|
|
|
* 11/23/9 srl Inlining of some critical functions
|
|
|
|
* 01/29/01 synwee Modified into a C++ wrapper calling C APIs (ucol.h)
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_COLLATION
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
#include "unicode/coll.h"
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/tblcoll.h"
|
2000-06-03 04:37:12 +00:00
|
|
|
#include "cmemory.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
2001-02-14 17:48:23 +00:00
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
// Collator public methods -----------------------------------------------
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
Collator* Collator::createInstance(UErrorCode& success)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-01-18 00:23:29 +00:00
|
|
|
if (U_FAILURE(success))
|
|
|
|
return 0;
|
|
|
|
return createInstance(Locale::getDefault(), success);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
Collator* Collator::createInstance(const Locale& desiredLocale,
|
|
|
|
UErrorCode& status)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-01-18 00:23:29 +00:00
|
|
|
if (U_FAILURE(status))
|
|
|
|
return 0;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
// A bit of explanation is required here. Although in the current
|
|
|
|
// implementation
|
|
|
|
// Collator::createInstance() is just turning around and calling
|
|
|
|
// RuleBasedCollator(Locale&), this will not necessarily always be the
|
|
|
|
// case. For example, suppose we modify this code to handle a
|
|
|
|
// non-table-based Collator, such as that for Thai. In this case,
|
|
|
|
// createInstance() will have to be modified to somehow determine this fact
|
|
|
|
// (perhaps a field in the resource bundle). Then it can construct the
|
|
|
|
// non-table-based Collator in some other way, when it sees that it needs
|
|
|
|
// to.
|
|
|
|
// The specific caution is this: RuleBasedCollator(Locale&) will ALWAYS
|
|
|
|
// return a valid collation object, if the system if functioning properly.
|
|
|
|
// The reason is that it will fall back, use the default locale, and even
|
|
|
|
// use the built-in default collation rules. THEREFORE, createInstance()
|
|
|
|
// should in general ONLY CALL RuleBasedCollator(Locale&) IF IT KNOWS IN
|
|
|
|
// ADVANCE that the given locale's collation is properly implemented as a
|
|
|
|
// RuleBasedCollator.
|
|
|
|
// Currently, we don't do this...we always return a RuleBasedCollator,
|
|
|
|
// whether it is strictly correct to do so or not, without checking, because
|
|
|
|
// we currently have no way of checking.
|
|
|
|
|
|
|
|
RuleBasedCollator* collation = new RuleBasedCollator(desiredLocale,
|
|
|
|
status);
|
2002-07-02 15:10:30 +00:00
|
|
|
/* test for NULL */
|
2002-06-29 09:31:05 +00:00
|
|
|
if (collation == 0) {
|
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return 0;
|
|
|
|
}
|
2001-01-18 00:23:29 +00:00
|
|
|
if (U_FAILURE(status))
|
|
|
|
{
|
|
|
|
delete collation;
|
2002-06-29 09:31:05 +00:00
|
|
|
collation = 0;
|
2001-01-18 00:23:29 +00:00
|
|
|
}
|
|
|
|
return collation;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-03-14 00:23:47 +00:00
|
|
|
Collator *
|
|
|
|
Collator::createInstance(const Locale &loc,
|
|
|
|
UVersionInfo version,
|
|
|
|
UErrorCode &status) {
|
|
|
|
Collator *collator;
|
|
|
|
UVersionInfo info;
|
|
|
|
|
|
|
|
collator=new RuleBasedCollator(loc, status);
|
2002-07-02 15:10:30 +00:00
|
|
|
/* test for NULL */
|
2002-06-29 09:31:05 +00:00
|
|
|
if (collator == 0) {
|
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-03-14 00:23:47 +00:00
|
|
|
if(U_SUCCESS(status)) {
|
|
|
|
collator->getVersion(info);
|
|
|
|
if(0!=uprv_memcmp(version, info, sizeof(UVersionInfo))) {
|
|
|
|
delete collator;
|
|
|
|
status=U_MISSING_RESOURCE_ERROR;
|
2002-06-29 09:31:05 +00:00
|
|
|
return 0;
|
2001-03-14 00:23:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return collator;
|
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
UBool Collator::equals(const UnicodeString& source,
|
|
|
|
const UnicodeString& target) const
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2003-02-21 08:32:22 +00:00
|
|
|
return (compare(source, target) == UCOL_EQUAL);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
UBool Collator::greaterOrEqual(const UnicodeString& source,
|
|
|
|
const UnicodeString& target) const
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2003-02-21 08:32:22 +00:00
|
|
|
return (compare(source, target) != UCOL_LESS);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
UBool Collator::greater(const UnicodeString& source,
|
|
|
|
const UnicodeString& target) const
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2003-02-21 08:32:22 +00:00
|
|
|
return (compare(source, target) == UCOL_GREATER);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
const Locale* Collator::getAvailableLocales(int32_t& count)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-01-18 00:23:29 +00:00
|
|
|
return Locale::getAvailableLocales(count);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-01-18 00:23:29 +00:00
|
|
|
|
|
|
|
UnicodeString& Collator::getDisplayName(const Locale& objectLocale,
|
|
|
|
const Locale& displayLocale,
|
|
|
|
UnicodeString& name)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-01-18 00:23:29 +00:00
|
|
|
// synwee : in a dilemma whether to change to UCollator. Since
|
|
|
|
// UCollator is basically using the below operation.
|
|
|
|
// Change means more mantainability where else no change means faster speed.
|
|
|
|
return objectLocale.getDisplayName(displayLocale, name);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
UnicodeString& Collator::getDisplayName(const Locale& objectLocale,
|
|
|
|
UnicodeString& name)
|
|
|
|
{
|
|
|
|
// synwee : in a dilemma whether to change to UCollator. Since
|
|
|
|
// UCollator is basically using the below operation.
|
|
|
|
// Change means more mantainability where else no change means faster speed.
|
|
|
|
return objectLocale.getDisplayName(Locale::getDefault(), name);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2002-02-28 20:01:48 +00:00
|
|
|
/* This is useless information */
|
|
|
|
/*void Collator::getVersion(UVersionInfo versionInfo) const
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-01-18 00:23:29 +00:00
|
|
|
if (versionInfo!=NULL)
|
|
|
|
uprv_memcpy(versionInfo, fVersion, U_MAX_VERSION_LENGTH);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2002-02-28 20:01:48 +00:00
|
|
|
*/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
// UCollator protected constructor destructor ----------------------------
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
/**
|
|
|
|
* Default constructor.
|
|
|
|
* Constructor is different from the old default Collator constructor.
|
|
|
|
* The task for determing the default collation strength and normalization mode
|
|
|
|
* is left to the child class.
|
|
|
|
*/
|
|
|
|
Collator::Collator()
|
2002-07-02 23:58:34 +00:00
|
|
|
: UObject()
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
* Empty constructor, does not handle the arguments.
|
|
|
|
* This constructor is done for backward compatibility with 1.7 and 1.8.
|
|
|
|
* The task for handling the argument collation strength and normalization
|
|
|
|
* mode is left to the child class.
|
|
|
|
* @param collationStrength collation strength
|
2002-11-21 22:52:46 +00:00
|
|
|
* @param decompositionMode
|
|
|
|
* @deprecated 2.4 use the default constructor instead
|
2001-01-18 00:23:29 +00:00
|
|
|
*/
|
2002-11-21 22:52:46 +00:00
|
|
|
Collator::Collator(UCollationStrength, UNormalizationMode )
|
2002-07-02 23:58:34 +00:00
|
|
|
: UObject()
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
Collator::~Collator()
|
|
|
|
{
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2002-07-02 23:58:34 +00:00
|
|
|
Collator::Collator(const Collator &other)
|
|
|
|
: UObject(other)
|
2000-06-03 04:18:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:08 +00:00
|
|
|
int32_t Collator::getBound(const uint8_t *source,
|
|
|
|
int32_t sourceLength,
|
|
|
|
UColBoundMode boundType,
|
|
|
|
uint32_t noOfLevels,
|
|
|
|
uint8_t *result,
|
|
|
|
int32_t resultLength,
|
|
|
|
UErrorCode &status) {
|
|
|
|
return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-18 00:23:29 +00:00
|
|
|
// UCollator private data members ----------------------------------------
|
|
|
|
|
2002-02-28 20:01:48 +00:00
|
|
|
/* This is useless information */
|
|
|
|
/*const UVersionInfo Collator::fVersion = {1, 1, 0, 0};*/
|
2001-10-08 23:26:58 +00:00
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_COLLATION */
|
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
/* eof */
|