-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathrepl.go
436 lines (394 loc) · 11.8 KB
/
repl.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
package engine
import (
"bytes"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"github.com/chzyer/readline"
"github.com/mitchellh/go-homedir"
"github.com/sirupsen/logrus"
"github.com/xyproto/algernon/lua/codelib"
"github.com/xyproto/algernon/lua/convert"
"github.com/xyproto/algernon/lua/datastruct"
"github.com/xyproto/algernon/lua/jnode"
"github.com/xyproto/algernon/lua/pure"
"github.com/xyproto/algernon/platformdep"
"github.com/xyproto/ask"
lua "github.com/xyproto/gopher-lua"
"github.com/xyproto/textoutput"
)
const exitMessage = "bye"
// Export Lua functions specific to the REPL
func exportREPLSpecific(L *lua.LState) {
// Attempt to return a more informative text than the memory location.
// Can take several arguments, just like print().
L.SetGlobal("pprint", L.NewFunction(func(L *lua.LState) int {
var buf bytes.Buffer
top := L.GetTop()
for i := 1; i <= top; i++ {
convert.PprintToWriter(&buf, L.Get(i))
if i != top {
buf.WriteString("\t")
}
}
// Output the combined text
fmt.Println(buf.String())
return 0 // number of results
}))
// Get the current directory since this is probably in the REPL
L.SetGlobal("scriptdir", L.NewFunction(func(L *lua.LState) int {
scriptpath, err := os.Getwd()
if err != nil {
logrus.Error(err)
L.Push(lua.LString("."))
return 1 // number of results
}
top := L.GetTop()
if top == 1 {
// Also include a separator and a filename
fn := L.ToString(1)
scriptpath = filepath.Join(scriptpath, fn)
}
// Now have the correct absolute scriptpath
L.Push(lua.LString(scriptpath))
return 1 // number of results
}))
// Given a glob, like "md/*.md", read the files with the scriptdir() as the starting point.
// Then return all the contents of the files as a table.
L.SetGlobal("readglob", L.NewFunction(func(L *lua.LState) int {
var (
pattern = L.ToString(1)
basepath string
err error
)
if L.GetTop() == 2 {
basepath = L.ToString(2)
} else {
basepath, err = os.Getwd()
if err != nil {
logrus.Error(err)
L.Push(lua.LNil)
return 1
}
}
matches, err := filepath.Glob(filepath.Join(basepath, pattern))
if err != nil {
L.Push(lua.LNil)
return 1
}
results := L.NewTable()
for _, match := range matches {
content, err := os.ReadFile(match)
if err != nil {
logrus.Error(err)
L.Push(lua.LNil)
return 1
}
results.Append(lua.LString(content))
}
L.Push(results)
return 1
}))
}
// Split the given line in three parts, and color the parts
func colorSplit(line, sep string, colorFunc1, colorFuncSep, colorFunc2 func(string) string, reverse bool) (string, string) {
if strings.Contains(line, sep) {
fields := strings.SplitN(line, sep, 2)
s1 := ""
if colorFunc1 != nil {
s1 += colorFunc1(fields[0])
} else {
s1 += fields[0]
}
s2 := ""
if colorFunc2 != nil {
s2 += colorFuncSep(sep) + colorFunc2(fields[1])
} else {
s2 += sep + fields[1]
}
return s1, s2
}
if reverse {
return "", line
}
return line, ""
}
// Syntax highlight the given line
func highlight(o *textoutput.TextOutput, line string) string {
unprocessed := line
unprocessed, comment := colorSplit(unprocessed, "//", nil, o.DarkGray, o.DarkGray, false)
module, unprocessed := colorSplit(unprocessed, ":", o.LightGreen, o.DarkRed, nil, true)
function := ""
if unprocessed != "" {
// Green function names
if strings.Contains(unprocessed, "(") {
fields := strings.SplitN(unprocessed, "(", 2)
function = o.LightGreen(fields[0])
unprocessed = "(" + fields[1]
} else if strings.Contains(unprocessed, "|") {
unprocessed = "<magenta>" + strings.ReplaceAll(unprocessed, "|", "<white>|</white><magenta>") + "</magenta>"
}
}
unprocessed, typed := colorSplit(unprocessed, "->", nil, o.LightBlue, o.DarkRed, false)
unprocessed = strings.ReplaceAll(unprocessed, "string", o.LightBlue("string"))
unprocessed = strings.ReplaceAll(unprocessed, "number", o.LightYellow("number"))
unprocessed = strings.ReplaceAll(unprocessed, "function", o.LightCyan("function"))
return module + function + unprocessed + typed + comment
}
// Output syntax highlighted help text, with an additional usage message
func outputHelp(o *textoutput.TextOutput, helpText string) {
for _, line := range strings.Split(helpText, "\n") {
o.Println(highlight(o, line))
}
o.Println(usageMessage)
}
// Output syntax highlighted help about a specific topic or function
func outputHelpAbout(o *textoutput.TextOutput, helpText, topic string) {
switch topic {
case "help":
o.Println(o.DarkGray("Output general help or help about a specific topic."))
return
case "webhelp":
o.Println(o.DarkGray("Output help about web-related functions."))
return
case "confighelp":
o.Println(o.DarkGray("Output help about configuration-related functions."))
return
case "quit", "exit", "shutdown", "halt":
o.Println(o.DarkGray("Quit Algernon."))
return
}
comment := ""
for _, line := range strings.Split(helpText, "\n") {
if strings.HasPrefix(line, topic) {
// Output help text, with some surrounding blank lines
o.Println("\n" + highlight(o, line))
o.Println("\n" + o.DarkGray(strings.TrimSpace(comment)) + "\n")
return
}
// Gather comments until a non-comment is encountered
if strings.HasPrefix(line, "//") {
comment += strings.TrimSpace(line[2:]) + "\n"
} else {
comment = ""
}
}
o.Println(o.DarkGray("Found no help for: ") + o.White(topic))
}
// Take all functions mentioned in the given help text string and add them to the readline completer
func addFunctionsFromHelptextToCompleter(helpText string, completer *readline.PrefixCompleter) {
for _, line := range strings.Split(helpText, "\n") {
if !strings.HasPrefix(line, "//") && strings.Contains(line, "(") {
parts := strings.Split(line, "(")
if strings.Contains(line, "()") {
completer.Children = append(completer.Children, &readline.PrefixCompleter{Name: []rune(parts[0] + "()")})
} else {
completer.Children = append(completer.Children, &readline.PrefixCompleter{Name: []rune(parts[0] + "(")})
}
}
}
}
// LoadLuaFunctionsForREPL exports the various Lua functions that might be needed in the REPL
func (ac *Config) LoadLuaFunctionsForREPL(L *lua.LState, o *textoutput.TextOutput) {
// Server configuration functions
ac.LoadServerConfigFunctions(L, "")
// Other basic system functions, like log()
ac.LoadBasicSystemFunctions(L)
// If there is a database backend
if ac.perm != nil {
// Retrieve the creator struct
creator := ac.perm.UserState().Creator()
// Simpleredis data structures
datastruct.LoadList(L, creator)
datastruct.LoadSet(L, creator)
datastruct.LoadHash(L, creator)
datastruct.LoadKeyValue(L, creator)
// For saving and loading Lua functions
codelib.Load(L, creator)
}
// For handling JSON data
jnode.LoadJSONFunctions(L)
ac.LoadJFile(L, ac.serverDirOrFilename)
jnode.Load(L)
// Extras
pure.Load(L)
// Export pprint and scriptdir
exportREPLSpecific(L)
// Plugin functionality
ac.LoadPluginFunctions(L, o)
// Cache
ac.LoadCacheFunctions(L)
}
// REPL provides a "Read Eval Print" loop for interacting with Lua.
// A variety of functions are exposed to the Lua state.
func (ac *Config) REPL(ready, done chan bool) error {
var (
historyFilename string
err error
)
historydir, err := homedir.Dir()
if err != nil {
logrus.Error("Could not find a user directory to store the REPL history.")
historydir = "."
}
// Retrieve a Lua state
L := ac.luapool.Get()
// Don't re-use the Lua state
defer L.Close()
// Colors and input
o := textoutput.NewTextOutput(platformdep.EnableColors, true)
// Command history file
historyFilename = filepath.Join(historydir, platformdep.HistoryFilename)
// Export a selection of functions to the Lua state
ac.LoadLuaFunctionsForREPL(L, o)
<-ready // Wait for the server to be ready
// Tell the user that the server is ready
o.Println(o.LightGreen("Ready"))
// Start the read, eval, print loop
var (
line string
prompt = o.LightCyan("lua> ")
EOF bool
EOFcount int
)
var initialPrefixCompleters []readline.PrefixCompleterInterface
for _, word := range []string{"bye", "confighelp", "cwd", "dir", "exit", "help", "pwd", "quit", "serverdir", "serverfile", "webhelp", "zalgo"} {
initialPrefixCompleters = append(initialPrefixCompleters, &readline.PrefixCompleter{Name: []rune(word)})
}
prefixCompleter := readline.NewPrefixCompleter(initialPrefixCompleters...)
addFunctionsFromHelptextToCompleter(generalHelpText, prefixCompleter)
l, err := readline.NewEx(&readline.Config{
Prompt: prompt,
HistoryFile: historyFilename,
AutoComplete: prefixCompleter,
InterruptPrompt: "^C",
EOFPrompt: "exit",
HistorySearchFold: true,
})
if err != nil {
logrus.Error("Could not initiate github.com/chzyer/readline: " + err.Error())
}
// To be run at server shutdown
AtShutdown(func() {
// Verbose mode has different log output at shutdown
if !ac.verboseMode {
o.Println(o.LightBlue(exitMessage))
}
})
for {
// Retrieve user input
EOF = false
if platformdep.Mingw {
// No support for EOF
line = ask.Ask(prompt)
} else {
if line, err = l.Readline(); err != nil {
switch {
case err == io.EOF:
if ac.debugMode {
o.Println(o.LightPurple(err.Error()))
}
EOF = true
case err == readline.ErrInterrupt:
logrus.Warn("Interrupted")
done <- true
return nil
default:
logrus.Error("Error reading line(" + err.Error() + ").")
continue
}
}
}
if EOF {
if ac.ctrldTwice {
switch EOFcount {
case 0:
o.Err("Press ctrl-d again to exit.")
EOFcount++
continue
default:
done <- true
return nil
}
} else {
done <- true
return nil
}
}
line = strings.TrimSpace(line)
if line == "" {
continue
}
switch line {
case "help":
outputHelp(o, generalHelpText)
continue
case "webhelp":
outputHelp(o, webHelpText)
continue
case "confighelp":
outputHelp(o, configHelpText)
continue
case "dir":
// Be more helpful than listing the Lua bytecode contents of the dir function. Call "dir()".
line = "dir()"
case "cwd", "pwd":
if cwd, err := os.Getwd(); err != nil {
// Might work if Getwd should fail. Should work on Windows, Linux and macOS
line = "os.getenv'CD' or os.getenv'PWD'"
} else {
fmt.Println(cwd)
continue
}
case "serverfile", "serverdir":
if absdir, err := filepath.Abs(ac.serverDirOrFilename); err != nil {
fmt.Println(ac.serverDirOrFilename)
} else {
fmt.Println(absdir)
}
continue
case "quit", "exit", "shutdown", "halt":
done <- true
return nil
case "zalgo":
// Easter egg
o.ErrExit("Ḫ̷̲̫̰̯̭̀̂̑~ͅĚ̥̖̩̘̱͔͈͈ͬ̚ ̦̦͖̲̀ͦ͂C̜͓̲̹͐̔ͭ̏Oͭ͛͂̋ͭͬͬ͆͏̺͓̰͚͠ͅM̢͉̼̖͍̊̕Ḛ̭̭͗̉̀̆ͬ̐ͪ̒S͉̪͂͌̄")
default:
topic := ""
if len(line) > 5 && (strings.HasPrefix(line, "help(") || strings.HasPrefix(line, "help ")) {
topic = line[5:]
} else if len(line) > 8 && (strings.HasPrefix(line, "webhelp(") || strings.HasPrefix(line, "webhelp ")) {
topic = line[8:]
}
if len(topic) > 0 {
topic = strings.TrimSuffix(topic, ")")
outputHelpAbout(o, generalHelpText+webHelpText+configHelpText, topic)
continue
}
}
// If the line starts with print, don't touch it
if strings.HasPrefix(line, "print(") {
if err = L.DoString(line); err != nil {
// Output the error message
o.Err(err.Error())
}
} else {
// Wrap the line in "pprint"
if err = L.DoString("pprint(" + line + ")"); err != nil {
// If there was a syntax error, try again without pprint
if strings.Contains(err.Error(), "syntax error") {
if err = L.DoString(line); err != nil {
// Output the error message
o.Err(err.Error())
}
// For other kinds of errors, output the error
} else {
// Output the error message
o.Err(err.Error())
}
}
}
}
}