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