aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/SkLanguage.cpp
blob: 3b8ba3c64fafdd953e7ee4cc239a0d04075fe61f (plain)
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

/*
 * Copyright 2012 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkLanguage.h"

#ifdef SK_BUILD_FOR_ANDROID // currently only for Android

#include "SkTDict.h"
#include "SkThread.h"
#include <cstring>

SkLanguage SkLanguage::getParent() const {
    SkASSERT(fInfo != NULL);
    SkASSERT(fInfo->fTag != NULL);
    const char* tag = fInfo->fTag.c_str();
    SkASSERT(tag != NULL);

    // strip off the rightmost "-.*"
    char* parentTagEnd = strrchr(tag, '-');
    if (parentTagEnd == NULL) {
        return SkLanguage("");
    }
    size_t parentTagLen = parentTagEnd - tag;
    char parentTag[parentTagLen + 1];
    strncpy(parentTag, tag, parentTagLen);
    parentTag[parentTagLen] = '\0';
    return SkLanguage(parentTag);
}

SK_DECLARE_STATIC_MUTEX(gGetInfoMutex);
const SkLanguageInfo* SkLanguage::getInfo(const char* tag) {
    SkAutoMutexAcquire lock(gGetInfoMutex);

    static const size_t kDictSize = 128;
    static SkTDict<SkLanguageInfo*> tagToInfo(kDictSize);

    // try a lookup
    SkLanguageInfo* info;
    if (tagToInfo.find(tag, &info)) {
        return info;
    }

    // no match - add this language
    info = new SkLanguageInfo(tag);
    tagToInfo.set(tag, info);
    return info;
}

#endif