12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package glispext
- import (
- "errors"
- "fmt"
- "github.com/zhemao/glisp/interpreter"
- "time"
- )
- type SexpTime time.Time
- func (t SexpTime) SexpString() string {
- return time.Time(t).String()
- }
- func TimeFunction(env *glisp.Glisp, name string,
- args []glisp.Sexp) (glisp.Sexp, error) {
- return SexpTime(time.Now()), nil
- }
- func TimeitFunction(env *glisp.Glisp, name string,
- args []glisp.Sexp) (glisp.Sexp, error) {
- if len(args) != 1 {
- return glisp.SexpNull, glisp.WrongNargs
- }
- var fun glisp.SexpFunction
- switch t := args[0].(type) {
- case glisp.SexpFunction:
- fun = t
- default:
- return glisp.SexpNull,
- errors.New("argument of timeit should be function")
- }
- starttime := time.Now()
- elapsed := time.Since(starttime)
- maxseconds := 10.0
- var iterations int
- for iterations = 0; iterations < 10000; iterations++ {
- _, err := env.Apply(fun, []glisp.Sexp{})
- if err != nil {
- return glisp.SexpNull, err
- }
- elapsed = time.Since(starttime)
- if elapsed.Seconds() > maxseconds {
- break
- }
- }
- fmt.Printf("ran %d iterations in %f seconds\n",
- iterations, elapsed.Seconds())
- fmt.Printf("average %f seconds per run\n",
- elapsed.Seconds()/float64(iterations))
- return glisp.SexpNull, nil
- }
- func ImportTime(env *glisp.Glisp) {
- env.AddFunction("time", TimeFunction)
- env.AddFunction("timeit", TimeitFunction)
- }
|