zhaojs
2023-06-05 ce465402f794b96d8ec735be0fe9f4069ee8df7b
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
const cfg = require('./config.js'),
    isLetter = c => (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
 
function CssHandler(tagStyle) {
    var styles = Object.assign(Object.create(null), cfg.userAgentStyles);
    for (var item in tagStyle)
        styles[item] = (styles[item] ? styles[item] + ';' : '') + tagStyle[item];
    this.styles = styles;
}
CssHandler.prototype.getStyle = function(data) {
    this.styles = new parser(data, this.styles).parse();
}
CssHandler.prototype.match = function(name, attrs) {
    var tmp, matched = (tmp = this.styles[name]) ? tmp + ';' : '';
    if (attrs.class) {
        var items = attrs.class.split(' ');
        for (var i = 0, item; item = items[i]; i++)
            if (tmp = this.styles['.' + item])
                matched += tmp + ';';
    }
    if (tmp = this.styles['#' + attrs.id])
        matched += tmp + ';';
    return matched;
}
module.exports = CssHandler;
 
function parser(data, init) {
    this.data = data;
    this.floor = 0;
    this.i = 0;
    this.list = [];
    this.res = init;
    this.state = this.Space;
}
parser.prototype.parse = function() {
    for (var c; c = this.data[this.i]; this.i++)
        this.state(c);
    return this.res;
}
parser.prototype.section = function() {
    return this.data.substring(this.start, this.i);
}
// 状态机
parser.prototype.Space = function(c) {
    if (c == '.' || c == '#' || isLetter(c)) {
        this.start = this.i;
        this.state = this.Name;
    } else if (c == '/' && this.data[this.i + 1] == '*')
        this.Comment();
    else if (!cfg.blankChar[c] && c != ';')
        this.state = this.Ignore;
}
parser.prototype.Comment = function() {
    this.i = this.data.indexOf('*/', this.i) + 1;
    if (!this.i) this.i = this.data.length;
    this.state = this.Space;
}
parser.prototype.Ignore = function(c) {
    if (c == '{') this.floor++;
    else if (c == '}' && !--this.floor) {
        this.list = [];
        this.state = this.Space;
    }
}
parser.prototype.Name = function(c) {
    if (cfg.blankChar[c]) {
        this.list.push(this.section());
        this.state = this.NameSpace;
    } else if (c == '{') {
        this.list.push(this.section());
        this.Content();
    } else if (c == ',') {
        this.list.push(this.section());
        this.Comma();
    } else if (!isLetter(c) && (c < '0' || c > '9') && c != '-' && c != '_')
        this.state = this.Ignore;
}
parser.prototype.NameSpace = function(c) {
    if (c == '{') this.Content();
    else if (c == ',') this.Comma();
    else if (!cfg.blankChar[c]) this.state = this.Ignore;
}
parser.prototype.Comma = function() {
    while (cfg.blankChar[this.data[++this.i]]);
    if (this.data[this.i] == '{') this.Content();
    else {
        this.start = this.i--;
        this.state = this.Name;
    }
}
parser.prototype.Content = function() {
    this.start = ++this.i;
    if ((this.i = this.data.indexOf('}', this.i)) == -1) this.i = this.data.length;
    var content = this.section();
    for (var i = 0, item; item = this.list[i++];)
        if (this.res[item]) this.res[item] += ';' + content;
        else this.res[item] = content;
    this.list = [];
    this.state = this.Space;
}