summaryrefslogtreecommitdiffstats
path: root/libs/minikin/CssParse.cpp
blob: 5bb6949b9a2ca8303ef64d361677f23f515a72e1 (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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <string>
#include <cstdlib>
#include <cstring>
#include <cstdio> // for sprintf - for debugging

#include <minikin/CssParse.h>

using std::map;
using std::pair;
using std::string;

namespace android {

bool strEqC(const string str, size_t off, size_t len, const char* str2) {
    if (len != strlen(str2)) return false;
    return !memcmp(str.data() + off, str2, len);
}

CssTag parseTag(const string str, size_t off, size_t len) {
    if (len == 0) return unknown;
    char c = str[off];
    if (c == 'f') {
        if (strEqC(str, off, len, "font-size")) return fontSize;
        if (strEqC(str, off, len, "font-weight")) return fontWeight;
        if (strEqC(str, off, len, "font-style")) return fontStyle;
    } else if (c == '-') {
        if (strEqC(str, off, len, "-minikin-hinting")) return minikinHinting;
        if (strEqC(str, off, len, "-minikin-bidi")) return minikinBidi;
    }
    return unknown;
}

bool parseValue(const string str, size_t *off, size_t len, CssTag tag,
        CssValue* v) {
    const char* data = str.data();
    char* endptr;
    double fv = strtod(data + *off, &endptr);
    if (endptr == data + *off) {
        // No numeric value, try tag-specific idents
        size_t end;
        for (end = *off; end < len; end++) {
            char c = data[end];
            if (c != '-' && !(c >= 'a' && c <= 'z') &&
                !(c >= '0' && c <= '9')) break;
        }
        size_t taglen = end - *off;
        endptr += taglen;
        if (tag == fontStyle) {
            if (strEqC(str, *off, taglen, "normal")) {
                fv = 0;
            } else if (strEqC(str, *off, taglen, "italic")) {
                fv = 1;
                // TODO: oblique, but who really cares?
            } else {
                return false;
            }
        } else if (tag == fontWeight) {
            if (strEqC(str, *off, taglen, "normal")) {
                fv = 400;
            } else if (strEqC(str, *off, taglen, "bold")) {
                fv = 700;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }
    v->setFloatValue(fv);
    *off = endptr - data;
    return true;
}

string CssValue::toString(CssTag tag) const {
    if (mType == FLOAT) {
        if (tag == fontStyle) {
            return floatValue ? "italic" : "normal";
        }
        char buf[64];
        sprintf(buf, "%g", floatValue);
        return string(buf);
    }
    return "";
}

bool CssProperties::parse(const string& str) {
    size_t len = str.size();
    size_t i = 0;
    while (true) {
        size_t j = i;
        while (j < len && str[j] == ' ') j++;
        if (j == len) break;
        size_t k = str.find_first_of(':', j);
        if (k == string::npos) {
            return false;  // error: junk after end
        }
        CssTag tag = parseTag(str, j, k - j);
#ifdef VERBOSE
        printf("parseTag result %d, ijk %lu %lu %lu\n", tag, i, j, k);
#endif
        if (tag == unknown) return false; // error: unknown tag
        k++;  // skip over colon
        while (k < len && str[k] == ' ') k++;
        if (k == len) return false; // error: missing value
        CssValue v;
        if (!parseValue(str, &k, len, tag, &v)) break;
#ifdef VERBOSE
        printf("parseValue ok\n");
#endif
        mMap.insert(pair<CssTag, CssValue>(tag, v));
        while (k < len && str[k] == ' ') k++;
        if (k < len) {
            if (str[k] != ';') return false;
            k++;
        }
        i = k;
    }
    return true;
}

bool CssProperties::hasTag(CssTag tag) const {
    return (mMap.find(tag) != mMap.end());
}

CssValue CssProperties::value(CssTag tag) const {
    map<CssTag, CssValue>::const_iterator it = mMap.find(tag);
    if (it == mMap.end()) {
        CssValue unknown;
        return unknown;
    } else {
        return it->second;
    }
}

string CssProperties::toString() const {
    string result;
    for (map<CssTag, CssValue>::const_iterator it = mMap.begin();
        it != mMap.end(); it++) {
        result += cssTagNames[it->first];
        result += ": ";
        result += it->second.toString(it->first);
        result += ";\n";
    }
    return result;
}

}  // namespace android