-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathloader.go
35 lines (31 loc) · 1003 Bytes
/
loader.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
package base64
import (
"encoding/base64"
lua "github.com/yuin/gopher-lua"
)
// Preload adds yaml to the given Lua state's package.preload table. After it
// has been preloaded, it can be loaded using require:
//
// local yaml = require("yaml")
func Preload(L *lua.LState) {
L.PreloadModule("base64", Loader)
}
// Loader is the module loader function.
func Loader(L *lua.LState) int {
registerBase64Encoding(L)
registerBase64Encoder(L)
registerBase64Decoder(L)
// Register the encodings offered by base64 go module.
t := L.NewTable()
L.SetField(t, "RawStdEncoding", LVBase64Encoding(L, base64.RawStdEncoding))
L.SetField(t, "RawURLEncoding", LVBase64Encoding(L, base64.RawURLEncoding))
L.SetField(t, "StdEncoding", LVBase64Encoding(L, base64.StdEncoding))
L.SetField(t, "URLEncoding", LVBase64Encoding(L, base64.URLEncoding))
L.SetFuncs(t, map[string]lua.LGFunction{
"new_encoding": NewEncoding,
"new_encoder": NewEncoder,
"new_decoder": NewDecoder,
})
L.Push(t)
return 1
}