+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
-* Copyright (C) 1999-2006, International Business Machines
+* Copyright (C) 1999-2015, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
#include "rbt_data.h"
#include "rbt_rule.h"
#include "rbt.h"
+#include "mutex.h"
#include "umutex.h"
U_NAMESPACE_BEGIN
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(RuleBasedTransliterator)
-static UMTX transliteratorDataMutex = NULL;
+static UMutex transliteratorDataMutex = U_MUTEX_INITIALIZER;
static Replaceable *gLockedText = NULL;
void RuleBasedTransliterator::_construct(const UnicodeString& rules,
* @exception IllegalArgumentException if rules are malformed
* or direction is invalid.
*/
-RuleBasedTransliterator::RuleBasedTransliterator(
+/*RuleBasedTransliterator::RuleBasedTransliterator(
const UnicodeString& id,
const UnicodeString& rules,
UTransDirection direction,
Transliterator(id, adoptedFilter) {
UParseError parseError;
_construct(rules, direction,parseError, status);
-}
+}*/
/**
* Covenience constructor with no filter.
*/
-RuleBasedTransliterator::RuleBasedTransliterator(
+/*RuleBasedTransliterator::RuleBasedTransliterator(
const UnicodeString& id,
const UnicodeString& rules,
UTransDirection direction,
Transliterator(id, 0) {
UParseError parseError;
_construct(rules, direction,parseError, status);
-}
+}*/
/**
* Covenience constructor with no filter and FORWARD direction.
*/
-RuleBasedTransliterator::RuleBasedTransliterator(
+/*RuleBasedTransliterator::RuleBasedTransliterator(
const UnicodeString& id,
const UnicodeString& rules,
UErrorCode& status) :
Transliterator(id, 0) {
UParseError parseError;
_construct(rules, UTRANS_FORWARD, parseError, status);
-}
+}*/
/**
* Covenience constructor with FORWARD direction.
*/
-RuleBasedTransliterator::RuleBasedTransliterator(
+/*RuleBasedTransliterator::RuleBasedTransliterator(
const UnicodeString& id,
const UnicodeString& rules,
UnicodeFilter* adoptedFilter,
Transliterator(id, adoptedFilter) {
UParseError parseError;
_construct(rules, UTRANS_FORWARD,parseError, status);
-}
+}*/
RuleBasedTransliterator::RuleBasedTransliterator(const UnicodeString& id,
const TransliterationRuleData* theData,
// Double-locking must be prevented in these cases.
//
- // If the transliteration data is exclusively owned by this transliterator object,
- // we don't need to do any locking. No sharing between transliterators is possible,
- // so no concurrent access from multiple threads is possible.
UBool lockedMutexAtThisLevel = FALSE;
- if (isDataOwned == FALSE) {
- umtx_lock(NULL);
- // Test whether this request is operating on the same text string as some
- // some other transliteration that is still in progress and holding the
- // transliteration mutex. If so, do not lock the transliteration
- // mutex again.
- UBool needToLock = (&text != gLockedText);
- umtx_unlock(NULL);
- if (needToLock) {
- umtx_lock(&transliteratorDataMutex);
- gLockedText = &text;
- lockedMutexAtThisLevel = TRUE;
- }
+
+ // Test whether this request is operating on the same text string as
+ // some other transliteration that is still in progress and holding the
+ // transliteration mutex. If so, do not lock the transliteration
+ // mutex again.
+ //
+ // gLockedText variable is protected by the global ICU mutex.
+ // Shared RBT data protected by transliteratorDataMutex.
+ //
+ // TODO(andy): Need a better scheme for handling this.
+ UBool needToLock;
+ {
+ Mutex m;
+ needToLock = (&text != gLockedText);
+ }
+ if (needToLock) {
+ umtx_lock(&transliteratorDataMutex); // Contention, longish waits possible here.
+ Mutex m;
+ gLockedText = &text;
+ lockedMutexAtThisLevel = TRUE;
}
-
- while (index.start < index.limit &&
- loopCount <= loopLimit &&
- fData->ruleSet.transliterate(text, index, isIncremental)) {
- ++loopCount;
+ // Check to make sure we don't dereference a null pointer.
+ if (fData != NULL) {
+ while (index.start < index.limit &&
+ loopCount <= loopLimit &&
+ fData->ruleSet.transliterate(text, index, isIncremental)) {
+ ++loopCount;
+ }
}
if (lockedMutexAtThisLevel) {
- gLockedText = NULL;
+ {
+ Mutex m;
+ gLockedText = NULL;
+ }
umtx_unlock(&transliteratorDataMutex);
}
}