aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/icu/i18n/rbt_data.cpp
blob: aaeaba7fc512ad0daa1933ef66114934b88b493a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html 
/* 
********************************************************************** 
*   Copyright (C) 1999-2014, International Business Machines 
*   Corporation and others.  All Rights Reserved. 
********************************************************************** 
*   Date        Name        Description 
*   11/17/99    aliu        Creation. 
********************************************************************** 
*/ 
 
#include "unicode/utypes.h" 
#include "umutex.h" 
 
#if !UCONFIG_NO_TRANSLITERATION 
 
#include "unicode/unistr.h" 
#include "unicode/uniset.h" 
#include "rbt_data.h" 
#include "hash.h" 
#include "cmemory.h" 
 
U_NAMESPACE_BEGIN 
 
TransliterationRuleData::TransliterationRuleData(UErrorCode& status) 
 : UMemory(), ruleSet(status), variableNames(status), 
    variables(0), variablesAreOwned(TRUE) 
{ 
    if (U_FAILURE(status)) { 
        return; 
    } 
    variableNames.setValueDeleter(uprv_deleteUObject); 
    variables = 0; 
    variablesLength = 0; 
} 
 
TransliterationRuleData::TransliterationRuleData(const TransliterationRuleData& other) : 
    UMemory(other), ruleSet(other.ruleSet), 
    variablesAreOwned(TRUE), 
    variablesBase(other.variablesBase), 
    variablesLength(other.variablesLength) 
{ 
    UErrorCode status = U_ZERO_ERROR; 
    int32_t i = 0; 
    variableNames.setValueDeleter(uprv_deleteUObject); 
    int32_t pos = UHASH_FIRST; 
    const UHashElement *e; 
    while ((e = other.variableNames.nextElement(pos)) != 0) { 
        UnicodeString* value = 
            new UnicodeString(*(const UnicodeString*)e->value.pointer); 
        // Exit out if value could not be created. 
        if (value == NULL) { 
        	return; 
        } 
        variableNames.put(*(UnicodeString*)e->key.pointer, value, status); 
    } 
 
    variables = 0; 
    if (other.variables != 0) { 
        variables = (UnicodeFunctor **)uprv_malloc(variablesLength * sizeof(UnicodeFunctor *)); 
        /* test for NULL */ 
        if (variables == 0) { 
            status = U_MEMORY_ALLOCATION_ERROR; 
            return; 
        } 
        for (i=0; i<variablesLength; ++i) { 
            variables[i] = other.variables[i]->clone(); 
            if (variables[i] == NULL) { 
                status = U_MEMORY_ALLOCATION_ERROR; 
                break; 
            } 
        } 
    } 
    // Remove the array and exit if memory allocation error occured. 
    if (U_FAILURE(status)) { 
        for (int32_t n = i-1; n >= 0; n--) { 
            delete variables[n]; 
        } 
        uprv_free(variables); 
        variables = NULL; 
        return; 
    } 
 
    // Do this last, _after_ setting up variables[]. 
    ruleSet.setData(this); // ruleSet must already be frozen 
} 
 
TransliterationRuleData::~TransliterationRuleData() { 
    if (variablesAreOwned && variables != 0) { 
        for (int32_t i=0; i<variablesLength; ++i) { 
            delete variables[i]; 
        } 
    } 
    uprv_free(variables); 
} 
 
UnicodeFunctor* 
TransliterationRuleData::lookup(UChar32 standIn) const { 
    int32_t i = standIn - variablesBase; 
    return (i >= 0 && i < variablesLength) ? variables[i] : 0; 
} 
 
UnicodeMatcher* 
TransliterationRuleData::lookupMatcher(UChar32 standIn) const { 
    UnicodeFunctor *f = lookup(standIn); 
    return (f != 0) ? f->toMatcher() : 0; 
} 
 
UnicodeReplacer* 
TransliterationRuleData::lookupReplacer(UChar32 standIn) const { 
    UnicodeFunctor *f = lookup(standIn); 
    return (f != 0) ? f->toReplacer() : 0; 
} 
 
 
U_NAMESPACE_END 
 
#endif /* #if !UCONFIG_NO_TRANSLITERATION */