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