-
Notifications
You must be signed in to change notification settings - Fork 0
/
statement.go
251 lines (212 loc) · 4.91 KB
/
statement.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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// SPDX-FileCopyrightText: 2021 M. Shulhan <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later
package awwan
import (
"bytes"
"errors"
"fmt"
"io/fs"
"strconv"
"strings"
libexec "git.sr.ht/~shulhan/pakakeh.go/lib/os/exec"
)
const (
statementKindDefault int = iota
statementKindComment
statementKindLocal
statementKindRequire
statementKindGet
statementKindPut
statementKindSudoGet
statementKindSudoPut
)
// List of magic command.
var (
cmdMagicGet = []byte(`#get:`)
cmdMagicLocal = []byte(`#local:`)
cmdMagicPut = []byte(`#put:`)
cmdMagicSudoGet = []byte(`#get!`)
cmdMagicSudoPut = []byte(`#put!`)
cmdMagicRequire = []byte(`#require:`)
)
// List of mapping between magic command kind and its command string for get
// and put only.
var magicCmdGetPut = map[int][]byte{
statementKindGet: cmdMagicGet,
statementKindPut: cmdMagicPut,
statementKindSudoGet: cmdMagicSudoGet,
statementKindSudoPut: cmdMagicSudoPut,
}
// Statement contains parsed raw line from the script.
type Statement struct {
owner string
cmd string
args []string
raw []byte
mode fs.FileMode
kind int
}
// ParseStatement create and initialize new Statement from raw line.
// It will return nil if raw line is empty.
func ParseStatement(raw []byte) (stmt *Statement, err error) {
var logp = `ParseStatement`
raw = bytes.TrimSpace(raw)
if len(raw) == 0 {
return nil, nil
}
var (
cmdKind int
cmdMagic []byte
)
for cmdKind, cmdMagic = range magicCmdGetPut {
if !bytes.HasPrefix(raw, cmdMagic) {
continue
}
raw = raw[len(cmdMagic):]
stmt, err = parseStatementGetPut(cmdKind, raw)
if err != nil {
return nil, fmt.Errorf(`%s: %q: %w`, logp, cmdMagic, err)
}
return stmt, nil
}
var (
cmd string
args []string
)
if bytes.HasPrefix(raw, cmdMagicLocal) {
raw = raw[len(cmdMagicLocal):]
cmd, args = libexec.ParseCommandArgs(string(raw))
stmt = &Statement{
kind: statementKindLocal,
cmd: cmd,
args: args,
raw: raw,
}
return stmt, nil
}
if bytes.HasPrefix(raw, cmdMagicRequire) {
raw = raw[len(cmdMagicRequire):]
cmd, args = libexec.ParseCommandArgs(string(raw))
stmt = &Statement{
kind: statementKindRequire,
cmd: cmd,
args: args,
raw: raw,
}
return stmt, nil
}
// Comment check MUST be the last one after magic command, since
// both require '#' as first character.
if raw[0] == '#' {
stmt = &Statement{
kind: statementKindComment,
raw: raw,
}
return stmt, nil
}
cmd, args = libexec.ParseCommandArgs(string(raw))
stmt = &Statement{
cmd: cmd,
args: args,
raw: raw,
}
return stmt, nil
}
func (stmt *Statement) String() string {
var sb strings.Builder
switch stmt.kind {
case statementKindDefault:
sb.Write(stmt.raw)
case statementKindLocal:
sb.Write(cmdMagicLocal)
sb.Write(stmt.raw)
case statementKindGet, statementKindPut, statementKindSudoGet, statementKindSudoPut:
sb.Write(magicCmdGetPut[stmt.kind])
if len(stmt.owner) != 0 {
sb.WriteString(stmt.owner)
}
if stmt.mode != 0 {
sb.WriteByte('+')
sb.WriteString(strconv.FormatUint(uint64(stmt.mode), 8))
}
sb.WriteByte(' ')
sb.WriteString(stmt.args[0])
sb.WriteByte(' ')
sb.WriteString(stmt.args[1])
case statementKindRequire:
sb.Write(cmdMagicRequire)
sb.WriteByte(' ')
sb.Write(stmt.raw)
}
return sb.String()
}
// parseStatementGetPut parse the raw "#get" or "#put" statement.
func parseStatementGetPut(kind int, raw []byte) (stmt *Statement, err error) {
var (
cmd string
args []string
)
if len(raw) == 0 {
return nil, errors.New(`missing arguments`)
}
stmt = &Statement{
kind: kind,
}
if raw[0] != ' ' && raw[0] != '\t' {
raw, err = stmt.parseOwnerMode(raw)
if err != nil {
return nil, err
}
}
cmd, args = libexec.ParseCommandArgs(string(raw))
if len(cmd) == 0 {
return nil, errors.New(`missing arguments`)
}
if len(args) == 0 {
return nil, errors.New(`missing destination file`)
}
if len(args) > 1 {
return nil, errors.New(`too many arguments`)
}
stmt.args = []string{cmd, args[0]}
stmt.raw = raw
return stmt, nil
}
// parseOwnerMode parse the owner and optionally the file mode for
// destination file.
// The owner and mode has the following syntax,
//
// [ USER [ ":" GROUP ]][ "+" MODE ]
//
// The USER and/or GROUP is optional, its accept the value as in "chown".
// The MODE also optional, its value must be an octal.
func (stmt *Statement) parseOwnerMode(in []byte) (out []byte, err error) {
var (
sepSpace = " \t"
sepMode = "+"
tmp []byte
idx int
)
idx = bytes.IndexAny(in, sepSpace)
if idx < 0 {
return nil, nil
}
tmp = in[:idx]
out = in[idx+1:]
idx = bytes.IndexAny(tmp, sepMode)
if idx < 0 {
stmt.owner = string(tmp)
} else {
stmt.owner = string(tmp[:idx])
var (
modeString = string(tmp[idx+1:])
mode uint64
)
mode, err = strconv.ParseUint(modeString, 8, 32)
if err != nil {
return nil, err
}
stmt.mode = fs.FileMode(mode)
}
return out, nil
}