aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/mattn/go-runewidth/runewidth_posix.go
blob: a4495909d88af18ff55b21db6f65b28d4b22f51f (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
// +build !windows,!js

package runewidth

import (
    "os"
    "regexp"
    "strings"
)

var reLoc = regexp.MustCompile(`^[a-z][a-z][a-z]?(?:_[A-Z][A-Z])?\.(.+)`)

func IsEastAsian() bool {
    locale := os.Getenv("LC_CTYPE")
    if locale == "" {
        locale = os.Getenv("LANG")
    }

    // ignore C locale
    if locale == "POSIX" || locale == "C" {
        return false
    }
    if len(locale) > 1 && locale[0] == 'C' && (locale[1] == '.' || locale[1] == '-') {
        return false
    }

    charset := strings.ToLower(locale)
    r := reLoc.FindStringSubmatch(locale)
    if len(r) == 2 {
        charset = strings.ToLower(r[1])
    }

    if strings.HasSuffix(charset, "@cjk_narrow") {
        return false
    }

    for pos, b := range []byte(charset) {
        if b == '@' {
            charset = charset[:pos]
            break
        }
    }

    mbc_max := 1
    switch charset {
    case "utf-8", "utf8":
        mbc_max = 6
    case "jis":
        mbc_max = 8
    case "eucjp":
        mbc_max = 3
    case "euckr", "euccn":
        mbc_max = 2
    case "sjis", "cp932", "cp51932", "cp936", "cp949", "cp950":
        mbc_max = 2
    case "big5":
        mbc_max = 2
    case "gbk", "gb2312":
        mbc_max = 2
    }

    if mbc_max > 1 && (charset[0] != 'u' ||
        strings.HasPrefix(locale, "ja") ||
        strings.HasPrefix(locale, "ko") ||
        strings.HasPrefix(locale, "zh")) {
        return true
    }
    return false
}