]> git.lizzy.rs Git - micro.git/blob - internal/lua/lua.go
Use tcell's CanDisplay instead of Go's IsPrint
[micro.git] / internal / lua / lua.go
1 package lua
2
3 import (
4         "bytes"
5         "errors"
6         "fmt"
7         "io"
8         "io/ioutil"
9         "math"
10         "math/rand"
11         "net"
12         "os"
13         "path"
14         "path/filepath"
15         "regexp"
16         "runtime"
17         "strings"
18         "sync"
19         "time"
20         "unicode/utf8"
21
22         humanize "github.com/dustin/go-humanize"
23         lua "github.com/yuin/gopher-lua"
24         luar "layeh.com/gopher-luar"
25 )
26
27 var L *lua.LState
28 var Lock sync.Mutex
29
30 // LoadFile loads a lua file
31 func LoadFile(module string, file string, data []byte) error {
32         pluginDef := []byte("module(\"" + module + "\", package.seeall)")
33
34         if fn, err := L.Load(bytes.NewReader(append(pluginDef, data...)), file); err != nil {
35                 return err
36         } else {
37                 L.Push(fn)
38                 return L.PCall(0, lua.MultRet, nil)
39         }
40 }
41
42 // Import allows a lua plugin to import a package
43 func Import(pkg string) *lua.LTable {
44         switch pkg {
45         case "fmt":
46                 return importFmt()
47         case "io":
48                 return importIo()
49         case "io/ioutil", "ioutil":
50                 return importIoUtil()
51         case "net":
52                 return importNet()
53         case "math":
54                 return importMath()
55         case "math/rand":
56                 return importMathRand()
57         case "os":
58                 return importOs()
59         case "runtime":
60                 return importRuntime()
61         case "path":
62                 return importPath()
63         case "path/filepath", "filepath":
64                 return importFilePath()
65         case "strings":
66                 return importStrings()
67         case "regexp":
68                 return importRegexp()
69         case "errors":
70                 return importErrors()
71         case "time":
72                 return importTime()
73         case "unicode/utf8", "utf8":
74                 return importUtf8()
75         case "humanize":
76                 return importHumanize()
77         default:
78                 return nil
79         }
80 }
81
82 func importFmt() *lua.LTable {
83         pkg := L.NewTable()
84
85         L.SetField(pkg, "Errorf", luar.New(L, fmt.Errorf))
86         L.SetField(pkg, "Fprint", luar.New(L, fmt.Fprint))
87         L.SetField(pkg, "Fprintf", luar.New(L, fmt.Fprintf))
88         L.SetField(pkg, "Fprintln", luar.New(L, fmt.Fprintln))
89         L.SetField(pkg, "Fscan", luar.New(L, fmt.Fscan))
90         L.SetField(pkg, "Fscanf", luar.New(L, fmt.Fscanf))
91         L.SetField(pkg, "Fscanln", luar.New(L, fmt.Fscanln))
92         L.SetField(pkg, "Print", luar.New(L, fmt.Print))
93         L.SetField(pkg, "Printf", luar.New(L, fmt.Printf))
94         L.SetField(pkg, "Println", luar.New(L, fmt.Println))
95         L.SetField(pkg, "Scan", luar.New(L, fmt.Scan))
96         L.SetField(pkg, "Scanf", luar.New(L, fmt.Scanf))
97         L.SetField(pkg, "Scanln", luar.New(L, fmt.Scanln))
98         L.SetField(pkg, "Sprint", luar.New(L, fmt.Sprint))
99         L.SetField(pkg, "Sprintf", luar.New(L, fmt.Sprintf))
100         L.SetField(pkg, "Sprintln", luar.New(L, fmt.Sprintln))
101         L.SetField(pkg, "Sscan", luar.New(L, fmt.Sscan))
102         L.SetField(pkg, "Sscanf", luar.New(L, fmt.Sscanf))
103         L.SetField(pkg, "Sscanln", luar.New(L, fmt.Sscanln))
104
105         return pkg
106 }
107
108 func importIo() *lua.LTable {
109         pkg := L.NewTable()
110
111         L.SetField(pkg, "Copy", luar.New(L, io.Copy))
112         L.SetField(pkg, "CopyN", luar.New(L, io.CopyN))
113         L.SetField(pkg, "EOF", luar.New(L, io.EOF))
114         L.SetField(pkg, "ErrClosedPipe", luar.New(L, io.ErrClosedPipe))
115         L.SetField(pkg, "ErrNoProgress", luar.New(L, io.ErrNoProgress))
116         L.SetField(pkg, "ErrShortBuffer", luar.New(L, io.ErrShortBuffer))
117         L.SetField(pkg, "ErrShortWrite", luar.New(L, io.ErrShortWrite))
118         L.SetField(pkg, "ErrUnexpectedEOF", luar.New(L, io.ErrUnexpectedEOF))
119         L.SetField(pkg, "LimitReader", luar.New(L, io.LimitReader))
120         L.SetField(pkg, "MultiReader", luar.New(L, io.MultiReader))
121         L.SetField(pkg, "MultiWriter", luar.New(L, io.MultiWriter))
122         L.SetField(pkg, "NewSectionReader", luar.New(L, io.NewSectionReader))
123         L.SetField(pkg, "Pipe", luar.New(L, io.Pipe))
124         L.SetField(pkg, "ReadAtLeast", luar.New(L, io.ReadAtLeast))
125         L.SetField(pkg, "ReadFull", luar.New(L, io.ReadFull))
126         L.SetField(pkg, "TeeReader", luar.New(L, io.TeeReader))
127         L.SetField(pkg, "WriteString", luar.New(L, io.WriteString))
128
129         return pkg
130 }
131
132 func importIoUtil() *lua.LTable {
133         pkg := L.NewTable()
134
135         L.SetField(pkg, "ReadAll", luar.New(L, ioutil.ReadAll))
136         L.SetField(pkg, "ReadDir", luar.New(L, ioutil.ReadDir))
137         L.SetField(pkg, "ReadFile", luar.New(L, ioutil.ReadFile))
138         L.SetField(pkg, "WriteFile", luar.New(L, ioutil.WriteFile))
139
140         return pkg
141 }
142
143 func importNet() *lua.LTable {
144         pkg := L.NewTable()
145
146         L.SetField(pkg, "CIDRMask", luar.New(L, net.CIDRMask))
147         L.SetField(pkg, "Dial", luar.New(L, net.Dial))
148         L.SetField(pkg, "DialIP", luar.New(L, net.DialIP))
149         L.SetField(pkg, "DialTCP", luar.New(L, net.DialTCP))
150         L.SetField(pkg, "DialTimeout", luar.New(L, net.DialTimeout))
151         L.SetField(pkg, "DialUDP", luar.New(L, net.DialUDP))
152         L.SetField(pkg, "DialUnix", luar.New(L, net.DialUnix))
153         L.SetField(pkg, "ErrWriteToConnected", luar.New(L, net.ErrWriteToConnected))
154         L.SetField(pkg, "FileConn", luar.New(L, net.FileConn))
155         L.SetField(pkg, "FileListener", luar.New(L, net.FileListener))
156         L.SetField(pkg, "FilePacketConn", luar.New(L, net.FilePacketConn))
157         L.SetField(pkg, "FlagBroadcast", luar.New(L, net.FlagBroadcast))
158         L.SetField(pkg, "FlagLoopback", luar.New(L, net.FlagLoopback))
159         L.SetField(pkg, "FlagMulticast", luar.New(L, net.FlagMulticast))
160         L.SetField(pkg, "FlagPointToPoint", luar.New(L, net.FlagPointToPoint))
161         L.SetField(pkg, "FlagUp", luar.New(L, net.FlagUp))
162         L.SetField(pkg, "IPv4", luar.New(L, net.IPv4))
163         L.SetField(pkg, "IPv4Mask", luar.New(L, net.IPv4Mask))
164         L.SetField(pkg, "IPv4allrouter", luar.New(L, net.IPv4allrouter))
165         L.SetField(pkg, "IPv4allsys", luar.New(L, net.IPv4allsys))
166         L.SetField(pkg, "IPv4bcast", luar.New(L, net.IPv4bcast))
167         L.SetField(pkg, "IPv4len", luar.New(L, net.IPv4len))
168         L.SetField(pkg, "IPv4zero", luar.New(L, net.IPv4zero))
169         L.SetField(pkg, "IPv6interfacelocalallnodes", luar.New(L, net.IPv6interfacelocalallnodes))
170         L.SetField(pkg, "IPv6len", luar.New(L, net.IPv6len))
171         L.SetField(pkg, "IPv6linklocalallnodes", luar.New(L, net.IPv6linklocalallnodes))
172         L.SetField(pkg, "IPv6linklocalallrouters", luar.New(L, net.IPv6linklocalallrouters))
173         L.SetField(pkg, "IPv6loopback", luar.New(L, net.IPv6loopback))
174         L.SetField(pkg, "IPv6unspecified", luar.New(L, net.IPv6unspecified))
175         L.SetField(pkg, "IPv6zero", luar.New(L, net.IPv6zero))
176         L.SetField(pkg, "InterfaceAddrs", luar.New(L, net.InterfaceAddrs))
177         L.SetField(pkg, "InterfaceByIndex", luar.New(L, net.InterfaceByIndex))
178         L.SetField(pkg, "InterfaceByName", luar.New(L, net.InterfaceByName))
179         L.SetField(pkg, "Interfaces", luar.New(L, net.Interfaces))
180         L.SetField(pkg, "JoinHostPort", luar.New(L, net.JoinHostPort))
181         L.SetField(pkg, "Listen", luar.New(L, net.Listen))
182         L.SetField(pkg, "ListenIP", luar.New(L, net.ListenIP))
183         L.SetField(pkg, "ListenMulticastUDP", luar.New(L, net.ListenMulticastUDP))
184         L.SetField(pkg, "ListenPacket", luar.New(L, net.ListenPacket))
185         L.SetField(pkg, "ListenTCP", luar.New(L, net.ListenTCP))
186         L.SetField(pkg, "ListenUDP", luar.New(L, net.ListenUDP))
187         L.SetField(pkg, "ListenUnix", luar.New(L, net.ListenUnix))
188         L.SetField(pkg, "ListenUnixgram", luar.New(L, net.ListenUnixgram))
189         L.SetField(pkg, "LookupAddr", luar.New(L, net.LookupAddr))
190         L.SetField(pkg, "LookupCNAME", luar.New(L, net.LookupCNAME))
191         L.SetField(pkg, "LookupHost", luar.New(L, net.LookupHost))
192         L.SetField(pkg, "LookupIP", luar.New(L, net.LookupIP))
193         L.SetField(pkg, "LookupMX", luar.New(L, net.LookupMX))
194         L.SetField(pkg, "LookupNS", luar.New(L, net.LookupNS))
195         L.SetField(pkg, "LookupPort", luar.New(L, net.LookupPort))
196         L.SetField(pkg, "LookupSRV", luar.New(L, net.LookupSRV))
197         L.SetField(pkg, "LookupTXT", luar.New(L, net.LookupTXT))
198         L.SetField(pkg, "ParseCIDR", luar.New(L, net.ParseCIDR))
199         L.SetField(pkg, "ParseIP", luar.New(L, net.ParseIP))
200         L.SetField(pkg, "ParseMAC", luar.New(L, net.ParseMAC))
201         L.SetField(pkg, "Pipe", luar.New(L, net.Pipe))
202         L.SetField(pkg, "ResolveIPAddr", luar.New(L, net.ResolveIPAddr))
203         L.SetField(pkg, "ResolveTCPAddr", luar.New(L, net.ResolveTCPAddr))
204         L.SetField(pkg, "ResolveUDPAddr", luar.New(L, net.ResolveUDPAddr))
205         L.SetField(pkg, "ResolveUnixAddr", luar.New(L, net.ResolveUnixAddr))
206         L.SetField(pkg, "SplitHostPort", luar.New(L, net.SplitHostPort))
207
208         return pkg
209 }
210
211 func importMath() *lua.LTable {
212         pkg := L.NewTable()
213
214         L.SetField(pkg, "Abs", luar.New(L, math.Abs))
215         L.SetField(pkg, "Acos", luar.New(L, math.Acos))
216         L.SetField(pkg, "Acosh", luar.New(L, math.Acosh))
217         L.SetField(pkg, "Asin", luar.New(L, math.Asin))
218         L.SetField(pkg, "Asinh", luar.New(L, math.Asinh))
219         L.SetField(pkg, "Atan", luar.New(L, math.Atan))
220         L.SetField(pkg, "Atan2", luar.New(L, math.Atan2))
221         L.SetField(pkg, "Atanh", luar.New(L, math.Atanh))
222         L.SetField(pkg, "Cbrt", luar.New(L, math.Cbrt))
223         L.SetField(pkg, "Ceil", luar.New(L, math.Ceil))
224         L.SetField(pkg, "Copysign", luar.New(L, math.Copysign))
225         L.SetField(pkg, "Cos", luar.New(L, math.Cos))
226         L.SetField(pkg, "Cosh", luar.New(L, math.Cosh))
227         L.SetField(pkg, "Dim", luar.New(L, math.Dim))
228         L.SetField(pkg, "Erf", luar.New(L, math.Erf))
229         L.SetField(pkg, "Erfc", luar.New(L, math.Erfc))
230         L.SetField(pkg, "Exp", luar.New(L, math.Exp))
231         L.SetField(pkg, "Exp2", luar.New(L, math.Exp2))
232         L.SetField(pkg, "Expm1", luar.New(L, math.Expm1))
233         L.SetField(pkg, "Float32bits", luar.New(L, math.Float32bits))
234         L.SetField(pkg, "Float32frombits", luar.New(L, math.Float32frombits))
235         L.SetField(pkg, "Float64bits", luar.New(L, math.Float64bits))
236         L.SetField(pkg, "Float64frombits", luar.New(L, math.Float64frombits))
237         L.SetField(pkg, "Floor", luar.New(L, math.Floor))
238         L.SetField(pkg, "Frexp", luar.New(L, math.Frexp))
239         L.SetField(pkg, "Gamma", luar.New(L, math.Gamma))
240         L.SetField(pkg, "Hypot", luar.New(L, math.Hypot))
241         L.SetField(pkg, "Ilogb", luar.New(L, math.Ilogb))
242         L.SetField(pkg, "Inf", luar.New(L, math.Inf))
243         L.SetField(pkg, "IsInf", luar.New(L, math.IsInf))
244         L.SetField(pkg, "IsNaN", luar.New(L, math.IsNaN))
245         L.SetField(pkg, "J0", luar.New(L, math.J0))
246         L.SetField(pkg, "J1", luar.New(L, math.J1))
247         L.SetField(pkg, "Jn", luar.New(L, math.Jn))
248         L.SetField(pkg, "Ldexp", luar.New(L, math.Ldexp))
249         L.SetField(pkg, "Lgamma", luar.New(L, math.Lgamma))
250         L.SetField(pkg, "Log", luar.New(L, math.Log))
251         L.SetField(pkg, "Log10", luar.New(L, math.Log10))
252         L.SetField(pkg, "Log1p", luar.New(L, math.Log1p))
253         L.SetField(pkg, "Log2", luar.New(L, math.Log2))
254         L.SetField(pkg, "Logb", luar.New(L, math.Logb))
255         L.SetField(pkg, "Max", luar.New(L, math.Max))
256         L.SetField(pkg, "Min", luar.New(L, math.Min))
257         L.SetField(pkg, "Mod", luar.New(L, math.Mod))
258         L.SetField(pkg, "Modf", luar.New(L, math.Modf))
259         L.SetField(pkg, "NaN", luar.New(L, math.NaN))
260         L.SetField(pkg, "Nextafter", luar.New(L, math.Nextafter))
261         L.SetField(pkg, "Pow", luar.New(L, math.Pow))
262         L.SetField(pkg, "Pow10", luar.New(L, math.Pow10))
263         L.SetField(pkg, "Remainder", luar.New(L, math.Remainder))
264         L.SetField(pkg, "Signbit", luar.New(L, math.Signbit))
265         L.SetField(pkg, "Sin", luar.New(L, math.Sin))
266         L.SetField(pkg, "Sincos", luar.New(L, math.Sincos))
267         L.SetField(pkg, "Sinh", luar.New(L, math.Sinh))
268         L.SetField(pkg, "Sqrt", luar.New(L, math.Sqrt))
269         L.SetField(pkg, "Tan", luar.New(L, math.Tan))
270         L.SetField(pkg, "Tanh", luar.New(L, math.Tanh))
271         L.SetField(pkg, "Trunc", luar.New(L, math.Trunc))
272         L.SetField(pkg, "Y0", luar.New(L, math.Y0))
273         L.SetField(pkg, "Y1", luar.New(L, math.Y1))
274         L.SetField(pkg, "Yn", luar.New(L, math.Yn))
275
276         return pkg
277 }
278
279 func importMathRand() *lua.LTable {
280         pkg := L.NewTable()
281
282         L.SetField(pkg, "ExpFloat64", luar.New(L, rand.ExpFloat64))
283         L.SetField(pkg, "Float32", luar.New(L, rand.Float32))
284         L.SetField(pkg, "Float64", luar.New(L, rand.Float64))
285         L.SetField(pkg, "Int", luar.New(L, rand.Int))
286         L.SetField(pkg, "Int31", luar.New(L, rand.Int31))
287         L.SetField(pkg, "Int31n", luar.New(L, rand.Int31n))
288         L.SetField(pkg, "Int63", luar.New(L, rand.Int63))
289         L.SetField(pkg, "Int63n", luar.New(L, rand.Int63n))
290         L.SetField(pkg, "Intn", luar.New(L, rand.Intn))
291         L.SetField(pkg, "NormFloat64", luar.New(L, rand.NormFloat64))
292         L.SetField(pkg, "Perm", luar.New(L, rand.Perm))
293         L.SetField(pkg, "Seed", luar.New(L, rand.Seed))
294         L.SetField(pkg, "Uint32", luar.New(L, rand.Uint32))
295
296         return pkg
297 }
298
299 func importOs() *lua.LTable {
300         pkg := L.NewTable()
301
302         L.SetField(pkg, "Args", luar.New(L, os.Args))
303         L.SetField(pkg, "Chdir", luar.New(L, os.Chdir))
304         L.SetField(pkg, "Chmod", luar.New(L, os.Chmod))
305         L.SetField(pkg, "Chown", luar.New(L, os.Chown))
306         L.SetField(pkg, "Chtimes", luar.New(L, os.Chtimes))
307         L.SetField(pkg, "Clearenv", luar.New(L, os.Clearenv))
308         L.SetField(pkg, "Create", luar.New(L, os.Create))
309         L.SetField(pkg, "DevNull", luar.New(L, os.DevNull))
310         L.SetField(pkg, "Environ", luar.New(L, os.Environ))
311         L.SetField(pkg, "ErrExist", luar.New(L, os.ErrExist))
312         L.SetField(pkg, "ErrInvalid", luar.New(L, os.ErrInvalid))
313         L.SetField(pkg, "ErrNotExist", luar.New(L, os.ErrNotExist))
314         L.SetField(pkg, "ErrPermission", luar.New(L, os.ErrPermission))
315         L.SetField(pkg, "Exit", luar.New(L, os.Exit))
316         L.SetField(pkg, "Expand", luar.New(L, os.Expand))
317         L.SetField(pkg, "ExpandEnv", luar.New(L, os.ExpandEnv))
318         L.SetField(pkg, "FindProcess", luar.New(L, os.FindProcess))
319         L.SetField(pkg, "Getegid", luar.New(L, os.Getegid))
320         L.SetField(pkg, "Getenv", luar.New(L, os.Getenv))
321         L.SetField(pkg, "Geteuid", luar.New(L, os.Geteuid))
322         L.SetField(pkg, "Getgid", luar.New(L, os.Getgid))
323         L.SetField(pkg, "Getgroups", luar.New(L, os.Getgroups))
324         L.SetField(pkg, "Getpagesize", luar.New(L, os.Getpagesize))
325         L.SetField(pkg, "Getpid", luar.New(L, os.Getpid))
326         L.SetField(pkg, "Getuid", luar.New(L, os.Getuid))
327         L.SetField(pkg, "Getwd", luar.New(L, os.Getwd))
328         L.SetField(pkg, "Hostname", luar.New(L, os.Hostname))
329         L.SetField(pkg, "Interrupt", luar.New(L, os.Interrupt))
330         L.SetField(pkg, "IsExist", luar.New(L, os.IsExist))
331         L.SetField(pkg, "IsNotExist", luar.New(L, os.IsNotExist))
332         L.SetField(pkg, "IsPathSeparator", luar.New(L, os.IsPathSeparator))
333         L.SetField(pkg, "IsPermission", luar.New(L, os.IsPermission))
334         L.SetField(pkg, "Kill", luar.New(L, os.Kill))
335         L.SetField(pkg, "Lchown", luar.New(L, os.Lchown))
336         L.SetField(pkg, "Link", luar.New(L, os.Link))
337         L.SetField(pkg, "Lstat", luar.New(L, os.Lstat))
338         L.SetField(pkg, "Mkdir", luar.New(L, os.Mkdir))
339         L.SetField(pkg, "MkdirAll", luar.New(L, os.MkdirAll))
340         L.SetField(pkg, "ModeAppend", luar.New(L, os.ModeAppend))
341         L.SetField(pkg, "ModeCharDevice", luar.New(L, os.ModeCharDevice))
342         L.SetField(pkg, "ModeDevice", luar.New(L, os.ModeDevice))
343         L.SetField(pkg, "ModeDir", luar.New(L, os.ModeDir))
344         L.SetField(pkg, "ModeExclusive", luar.New(L, os.ModeExclusive))
345         L.SetField(pkg, "ModeNamedPipe", luar.New(L, os.ModeNamedPipe))
346         L.SetField(pkg, "ModePerm", luar.New(L, os.ModePerm))
347         L.SetField(pkg, "ModeSetgid", luar.New(L, os.ModeSetgid))
348         L.SetField(pkg, "ModeSetuid", luar.New(L, os.ModeSetuid))
349         L.SetField(pkg, "ModeSocket", luar.New(L, os.ModeSocket))
350         L.SetField(pkg, "ModeSticky", luar.New(L, os.ModeSticky))
351         L.SetField(pkg, "ModeSymlink", luar.New(L, os.ModeSymlink))
352         L.SetField(pkg, "ModeTemporary", luar.New(L, os.ModeTemporary))
353         L.SetField(pkg, "ModeType", luar.New(L, os.ModeType))
354         L.SetField(pkg, "NewFile", luar.New(L, os.NewFile))
355         L.SetField(pkg, "NewSyscallError", luar.New(L, os.NewSyscallError))
356         L.SetField(pkg, "O_APPEND", luar.New(L, os.O_APPEND))
357         L.SetField(pkg, "O_CREATE", luar.New(L, os.O_CREATE))
358         L.SetField(pkg, "O_EXCL", luar.New(L, os.O_EXCL))
359         L.SetField(pkg, "O_RDONLY", luar.New(L, os.O_RDONLY))
360         L.SetField(pkg, "O_RDWR", luar.New(L, os.O_RDWR))
361         L.SetField(pkg, "O_SYNC", luar.New(L, os.O_SYNC))
362         L.SetField(pkg, "O_TRUNC", luar.New(L, os.O_TRUNC))
363         L.SetField(pkg, "O_WRONLY", luar.New(L, os.O_WRONLY))
364         L.SetField(pkg, "Open", luar.New(L, os.Open))
365         L.SetField(pkg, "OpenFile", luar.New(L, os.OpenFile))
366         L.SetField(pkg, "PathListSeparator", luar.New(L, os.PathListSeparator))
367         L.SetField(pkg, "PathSeparator", luar.New(L, os.PathSeparator))
368         L.SetField(pkg, "Pipe", luar.New(L, os.Pipe))
369         L.SetField(pkg, "Readlink", luar.New(L, os.Readlink))
370         L.SetField(pkg, "Remove", luar.New(L, os.Remove))
371         L.SetField(pkg, "RemoveAll", luar.New(L, os.RemoveAll))
372         L.SetField(pkg, "Rename", luar.New(L, os.Rename))
373         L.SetField(pkg, "SEEK_CUR", luar.New(L, os.SEEK_CUR))
374         L.SetField(pkg, "SEEK_END", luar.New(L, os.SEEK_END))
375         L.SetField(pkg, "SEEK_SET", luar.New(L, os.SEEK_SET))
376         L.SetField(pkg, "SameFile", luar.New(L, os.SameFile))
377         L.SetField(pkg, "Setenv", luar.New(L, os.Setenv))
378         L.SetField(pkg, "StartProcess", luar.New(L, os.StartProcess))
379         L.SetField(pkg, "Stat", luar.New(L, os.Stat))
380         L.SetField(pkg, "Stderr", luar.New(L, os.Stderr))
381         L.SetField(pkg, "Stdin", luar.New(L, os.Stdin))
382         L.SetField(pkg, "Stdout", luar.New(L, os.Stdout))
383         L.SetField(pkg, "Symlink", luar.New(L, os.Symlink))
384         L.SetField(pkg, "TempDir", luar.New(L, os.TempDir))
385         L.SetField(pkg, "Truncate", luar.New(L, os.Truncate))
386
387         return pkg
388 }
389
390 func importRuntime() *lua.LTable {
391         pkg := L.NewTable()
392
393         L.SetField(pkg, "GC", luar.New(L, runtime.GC))
394         L.SetField(pkg, "GOARCH", luar.New(L, runtime.GOARCH))
395         L.SetField(pkg, "GOMAXPROCS", luar.New(L, runtime.GOMAXPROCS))
396         L.SetField(pkg, "GOOS", luar.New(L, runtime.GOOS))
397         L.SetField(pkg, "GOROOT", luar.New(L, runtime.GOROOT))
398
399         return pkg
400 }
401
402 func importPath() *lua.LTable {
403         pkg := L.NewTable()
404
405         L.SetField(pkg, "Base", luar.New(L, path.Base))
406         L.SetField(pkg, "Clean", luar.New(L, path.Clean))
407         L.SetField(pkg, "Dir", luar.New(L, path.Dir))
408         L.SetField(pkg, "ErrBadPattern", luar.New(L, path.ErrBadPattern))
409         L.SetField(pkg, "Ext", luar.New(L, path.Ext))
410         L.SetField(pkg, "IsAbs", luar.New(L, path.IsAbs))
411         L.SetField(pkg, "Join", luar.New(L, path.Join))
412         L.SetField(pkg, "Match", luar.New(L, path.Match))
413         L.SetField(pkg, "Split", luar.New(L, path.Split))
414
415         return pkg
416 }
417
418 func importFilePath() *lua.LTable {
419         pkg := L.NewTable()
420
421         L.SetField(pkg, "Join", luar.New(L, filepath.Join))
422         L.SetField(pkg, "Abs", luar.New(L, filepath.Abs))
423         L.SetField(pkg, "Base", luar.New(L, filepath.Base))
424         L.SetField(pkg, "Clean", luar.New(L, filepath.Clean))
425         L.SetField(pkg, "Dir", luar.New(L, filepath.Dir))
426         L.SetField(pkg, "EvalSymlinks", luar.New(L, filepath.EvalSymlinks))
427         L.SetField(pkg, "Ext", luar.New(L, filepath.Ext))
428         L.SetField(pkg, "FromSlash", luar.New(L, filepath.FromSlash))
429         L.SetField(pkg, "Glob", luar.New(L, filepath.Glob))
430         L.SetField(pkg, "HasPrefix", luar.New(L, filepath.HasPrefix))
431         L.SetField(pkg, "IsAbs", luar.New(L, filepath.IsAbs))
432         L.SetField(pkg, "Join", luar.New(L, filepath.Join))
433         L.SetField(pkg, "Match", luar.New(L, filepath.Match))
434         L.SetField(pkg, "Rel", luar.New(L, filepath.Rel))
435         L.SetField(pkg, "Split", luar.New(L, filepath.Split))
436         L.SetField(pkg, "SplitList", luar.New(L, filepath.SplitList))
437         L.SetField(pkg, "ToSlash", luar.New(L, filepath.ToSlash))
438         L.SetField(pkg, "VolumeName", luar.New(L, filepath.VolumeName))
439
440         return pkg
441 }
442
443 func importStrings() *lua.LTable {
444         pkg := L.NewTable()
445
446         L.SetField(pkg, "Contains", luar.New(L, strings.Contains))
447         L.SetField(pkg, "ContainsAny", luar.New(L, strings.ContainsAny))
448         L.SetField(pkg, "ContainsRune", luar.New(L, strings.ContainsRune))
449         L.SetField(pkg, "Count", luar.New(L, strings.Count))
450         L.SetField(pkg, "EqualFold", luar.New(L, strings.EqualFold))
451         L.SetField(pkg, "Fields", luar.New(L, strings.Fields))
452         L.SetField(pkg, "FieldsFunc", luar.New(L, strings.FieldsFunc))
453         L.SetField(pkg, "HasPrefix", luar.New(L, strings.HasPrefix))
454         L.SetField(pkg, "HasSuffix", luar.New(L, strings.HasSuffix))
455         L.SetField(pkg, "Index", luar.New(L, strings.Index))
456         L.SetField(pkg, "IndexAny", luar.New(L, strings.IndexAny))
457         L.SetField(pkg, "IndexByte", luar.New(L, strings.IndexByte))
458         L.SetField(pkg, "IndexFunc", luar.New(L, strings.IndexFunc))
459         L.SetField(pkg, "IndexRune", luar.New(L, strings.IndexRune))
460         L.SetField(pkg, "Join", luar.New(L, strings.Join))
461         L.SetField(pkg, "LastIndex", luar.New(L, strings.LastIndex))
462         L.SetField(pkg, "LastIndexAny", luar.New(L, strings.LastIndexAny))
463         L.SetField(pkg, "LastIndexFunc", luar.New(L, strings.LastIndexFunc))
464         L.SetField(pkg, "Map", luar.New(L, strings.Map))
465         L.SetField(pkg, "NewReader", luar.New(L, strings.NewReader))
466         L.SetField(pkg, "NewReplacer", luar.New(L, strings.NewReplacer))
467         L.SetField(pkg, "Repeat", luar.New(L, strings.Repeat))
468         L.SetField(pkg, "Replace", luar.New(L, strings.Replace))
469         L.SetField(pkg, "Split", luar.New(L, strings.Split))
470         L.SetField(pkg, "SplitAfter", luar.New(L, strings.SplitAfter))
471         L.SetField(pkg, "SplitAfterN", luar.New(L, strings.SplitAfterN))
472         L.SetField(pkg, "SplitN", luar.New(L, strings.SplitN))
473         L.SetField(pkg, "Title", luar.New(L, strings.Title))
474         L.SetField(pkg, "ToLower", luar.New(L, strings.ToLower))
475         L.SetField(pkg, "ToLowerSpecial", luar.New(L, strings.ToLowerSpecial))
476         L.SetField(pkg, "ToTitle", luar.New(L, strings.ToTitle))
477         L.SetField(pkg, "ToTitleSpecial", luar.New(L, strings.ToTitleSpecial))
478         L.SetField(pkg, "ToUpper", luar.New(L, strings.ToUpper))
479         L.SetField(pkg, "ToUpperSpecial", luar.New(L, strings.ToUpperSpecial))
480         L.SetField(pkg, "Trim", luar.New(L, strings.Trim))
481         L.SetField(pkg, "TrimFunc", luar.New(L, strings.TrimFunc))
482         L.SetField(pkg, "TrimLeft", luar.New(L, strings.TrimLeft))
483         L.SetField(pkg, "TrimLeftFunc", luar.New(L, strings.TrimLeftFunc))
484         L.SetField(pkg, "TrimPrefix", luar.New(L, strings.TrimPrefix))
485         L.SetField(pkg, "TrimRight", luar.New(L, strings.TrimRight))
486         L.SetField(pkg, "TrimRightFunc", luar.New(L, strings.TrimRightFunc))
487         L.SetField(pkg, "TrimSpace", luar.New(L, strings.TrimSpace))
488         L.SetField(pkg, "TrimSuffix", luar.New(L, strings.TrimSuffix))
489
490         return pkg
491 }
492
493 func importRegexp() *lua.LTable {
494         pkg := L.NewTable()
495
496         L.SetField(pkg, "Match", luar.New(L, regexp.Match))
497         L.SetField(pkg, "MatchReader", luar.New(L, regexp.MatchReader))
498         L.SetField(pkg, "MatchString", luar.New(L, regexp.MatchString))
499         L.SetField(pkg, "QuoteMeta", luar.New(L, regexp.QuoteMeta))
500         L.SetField(pkg, "Compile", luar.New(L, regexp.Compile))
501         L.SetField(pkg, "CompilePOSIX", luar.New(L, regexp.CompilePOSIX))
502         L.SetField(pkg, "MustCompile", luar.New(L, regexp.MustCompile))
503         L.SetField(pkg, "MustCompilePOSIX", luar.New(L, regexp.MustCompilePOSIX))
504
505         return pkg
506 }
507
508 func importErrors() *lua.LTable {
509         pkg := L.NewTable()
510
511         L.SetField(pkg, "New", luar.New(L, errors.New))
512
513         return pkg
514 }
515
516 func importTime() *lua.LTable {
517         pkg := L.NewTable()
518
519         L.SetField(pkg, "After", luar.New(L, time.After))
520         L.SetField(pkg, "Sleep", luar.New(L, time.Sleep))
521         L.SetField(pkg, "Tick", luar.New(L, time.Tick))
522         L.SetField(pkg, "Since", luar.New(L, time.Since))
523         L.SetField(pkg, "FixedZone", luar.New(L, time.FixedZone))
524         L.SetField(pkg, "LoadLocation", luar.New(L, time.LoadLocation))
525         L.SetField(pkg, "NewTicker", luar.New(L, time.NewTicker))
526         L.SetField(pkg, "Date", luar.New(L, time.Date))
527         L.SetField(pkg, "Now", luar.New(L, time.Now))
528         L.SetField(pkg, "Parse", luar.New(L, time.Parse))
529         L.SetField(pkg, "ParseDuration", luar.New(L, time.ParseDuration))
530         L.SetField(pkg, "ParseInLocation", luar.New(L, time.ParseInLocation))
531         L.SetField(pkg, "Unix", luar.New(L, time.Unix))
532         L.SetField(pkg, "AfterFunc", luar.New(L, time.AfterFunc))
533         L.SetField(pkg, "NewTimer", luar.New(L, time.NewTimer))
534         L.SetField(pkg, "Nanosecond", luar.New(L, time.Nanosecond))
535         L.SetField(pkg, "Microsecond", luar.New(L, time.Microsecond))
536         L.SetField(pkg, "Millisecond", luar.New(L, time.Millisecond))
537         L.SetField(pkg, "Second", luar.New(L, time.Second))
538         L.SetField(pkg, "Minute", luar.New(L, time.Minute))
539         L.SetField(pkg, "Hour", luar.New(L, time.Hour))
540
541         return pkg
542 }
543
544 func importUtf8() *lua.LTable {
545         pkg := L.NewTable()
546
547         L.SetField(pkg, "DecodeLastRune", luar.New(L, utf8.DecodeLastRune))
548         L.SetField(pkg, "DecodeLastRuneInString", luar.New(L, utf8.DecodeLastRuneInString))
549         L.SetField(pkg, "DecodeRune", luar.New(L, utf8.DecodeRune))
550         L.SetField(pkg, "DecodeRuneInString", luar.New(L, utf8.DecodeRuneInString))
551         L.SetField(pkg, "EncodeRune", luar.New(L, utf8.EncodeRune))
552         L.SetField(pkg, "FullRune", luar.New(L, utf8.FullRune))
553         L.SetField(pkg, "FullRuneInString", luar.New(L, utf8.FullRuneInString))
554         L.SetField(pkg, "RuneCount", luar.New(L, utf8.RuneCount))
555         L.SetField(pkg, "RuneCountInString", luar.New(L, utf8.RuneCountInString))
556         L.SetField(pkg, "RuneLen", luar.New(L, utf8.RuneLen))
557         L.SetField(pkg, "RuneStart", luar.New(L, utf8.RuneStart))
558         L.SetField(pkg, "Valid", luar.New(L, utf8.Valid))
559         L.SetField(pkg, "ValidRune", luar.New(L, utf8.ValidRune))
560         L.SetField(pkg, "ValidString", luar.New(L, utf8.ValidString))
561
562         return pkg
563 }
564
565 func importHumanize() *lua.LTable {
566         pkg := L.NewTable()
567
568         L.SetField(pkg, "Bytes", luar.New(L, humanize.Bytes))
569         L.SetField(pkg, "Ordinal", luar.New(L, humanize.Ordinal))
570
571         return pkg
572 }