-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
127 lines (109 loc) · 3.18 KB
/
parser.go
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
package main
import (
"regexp"
"strings"
)
// PackageParser 用于实现一个取出 package 的解析器
type PackageParser struct {
// 用于匹配的正则表达式
re string
// package 出现在正则表达式 match 中的索引
index int
// 对拿出来的 match 进行何种处理
postParse func(string) []string
}
// ParseFile reads a string and returns packages parsed from it
func ParseFile(s string) map[string]bool {
s = strings.ToLower(s)
// add more parsers!
parsers := []PackageParser{
{
// reUsePackage 是从 `\usepackage[options]{pkg}` 命令中匹配出 pkg
// `(?m)^` 用于匹配行首
re: `(?m)^ *\\usepackage(\[.*?\])?{(.*?)}`,
index: 2,
postParse: func(s string) []string {
// if \usepackage{pkg1,pkg2,...}
if strings.Contains(s, ",") {
p := strings.Split(s, ",")
for i, v := range p {
// remove spaces
p[i] = strings.ReplaceAll(v, " ", "")
}
return p
}
return []string{s}
},
},
{
// reRequirePackage 从 `\RequirePackage[option list]{package name}[release date]` 中匹配出 pkg
re: `(?m)^ *\\requirepackage(\[.*?\])?{(.*?)}`,
index: 2,
postParse: func(s string) []string {
return []string{s}
},
},
{
// reRequirePackageWithOptions 从 `\RequirePackageWithOptions{package name}[release date]` 中匹配出 pkg
re: `(?m)^ *\\requirepackagewithoptions{(.*?)}`,
index: 1,
postParse: func(s string) []string {
return []string{s}
},
},
{
re: `(?m)^ *\\documentclass{(.*?)}`,
index: 1,
postParse: func(s string) []string {
return []string{s}
},
},
}
packages := map[string]bool{}
for _, parser := range parsers {
r := regexp.MustCompile(parser.re)
matches := r.FindAllStringSubmatch(s, -1)
for _, match := range matches {
m := match[parser.index]
p := parser.postParse(m)
for _, s := range p {
packages[s] = true
}
}
}
return packages
}
/*
// ParseFile reads a string and returns packages parsed from it
func ParseFileOld(s string) map[string]bool {
// 首先把接收到的 string 全部转为小写
s = strings.ToLower(s)
const (
// reUsePackage 是从 `\usepackage[options]{pkg}` 命令中匹配出 pkg
// `(?m)^` 用于匹配行首
reUsePackage = `(?m)^ *\\usepackage(\[.*?\])?{(.*?)}`
// reRequirePackage 从 `\RequirePackage[option list]{package name}[release date]` 中匹配出 pkg
reRequirePackage = `(?m)^ *\\requirepackage(\[.*?\])?{(.*?)}`
// reRequirePackageWithOptions 从 `\RequirePackageWithOptions{package name}[release date]` 中匹配出 pkg
// 虽然此 command 并没有 `[options]`,但为了 parseFromRegex 的兼容性,我们扔保留正则中的 `(\[.*?\])?`部分
reRequirePackageWithOptions = `(?m)^ *\\requirepackagewithoptions(\[.*?\])?{(.*?)}`
)
var (
res = []string{reUsePackage, reRequirePackage, reRequirePackageWithOptions}
packages = map[string]bool{}
)
for _, re := range res {
r := regexp.MustCompile(re)
matches := r.FindAllStringSubmatch(s, -1)
for _, match := range matches {
packages[match[2]] = true
}
}
return packages
}
*/
func getPackagesNeedInstall(s string) map[string]bool {
p := ParseFile(s)
packages := GetPackages(p)
return packages
}