scripts

package
v0.7.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 18, 2022 License: GPL-3.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Asset

func Asset(name string) ([]byte, error)

Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.

func AssetDir

func AssetDir(name string) ([]string, error)

AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:

data/
  foo.txt
  img/
    a.png
    b.png

then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.

func AssetInfo

func AssetInfo(name string) (os.FileInfo, error)

AssetInfo loads and returns the asset info for the given name. It returns an error if the asset could not be found or could not be loaded.

func AssetNames

func AssetNames() []string

AssetNames returns the names of the assets.

func MustAsset

func MustAsset(name string) []byte

MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.

func RestoreAsset

func RestoreAsset(dir, name string) error

RestoreAsset restores an asset under the given directory

func RestoreAssets

func RestoreAssets(dir, name string) error

RestoreAssets restores an asset under the given directory recursively

Types

type Engine

type Engine struct {
	IsRun bool //todo fix
	// contains filtered or unexported fields
}

Engine ...

func NewEngine added in v0.0.26

func NewEngine(s *m.Script, functions, structures *Pull) (engine *Engine, err error)

NewEngine ...

func (*Engine) AssertFunction added in v0.0.26

func (s *Engine) AssertFunction(f string, arg ...interface{}) (result string, err error)

AssertFunction ...

func (*Engine) Close

func (s *Engine) Close()

Close ...

func (*Engine) Compile

func (s *Engine) Compile() error

Compile ...

func (*Engine) Do

func (s *Engine) Do() (string, error)

Do ...

func (*Engine) DoFull

func (s *Engine) DoFull() (res string, err error)

DoFull ...

func (*Engine) EvalScript added in v0.0.26

func (s *Engine) EvalScript(script *m.Script) (result string, err error)

EvalScript ...

func (*Engine) EvalString

func (s *Engine) EvalString(str ...string) (result string, errs error)

EvalString ...

func (*Engine) File

func (s *Engine) File(path string) ([]byte, error)

File ...

func (*Engine) Get

func (s *Engine) Get() IScript

Get ...

func (*Engine) Print

func (s *Engine) Print(v ...interface{})

Print ...

func (*Engine) PushFunction

func (s *Engine) PushFunction(name string, i interface{})

PushFunction ...

func (*Engine) PushStruct

func (s *Engine) PushStruct(name string, i interface{})

PushStruct ...

type IScript added in v0.0.26

type IScript interface {
	Init() error
	Do() (string, error)
	AssertFunction(string, ...interface{}) (string, error)
	Compile() error
	PushStruct(string, interface{})
	PushFunction(string, interface{})
	EvalString(string) (string, error)
	Close()
	CreateProgram(name, source string) (err error)
	RunProgram(name string) (result string, err error)
}

IScript ...

type Javascript

type Javascript struct {
	// contains filtered or unexported fields
}

Javascript ...

func NewJavascript added in v0.0.26

func NewJavascript(engine *Engine) *Javascript

NewJavascript ...

func (*Javascript) AssertFunction added in v0.0.26

func (j *Javascript) AssertFunction(f string, args ...interface{}) (result string, err error)

AssertFunction ...

func (*Javascript) Close

func (j *Javascript) Close()

Close ...

func (*Javascript) Compile

func (j *Javascript) Compile() (err error)

Compile ...

func (*Javascript) CreateProgram added in v0.0.26

func (j *Javascript) CreateProgram(name, source string) (err error)

CreateProgram ...

func (*Javascript) Do

func (j *Javascript) Do() (result string, err error)

Do ...

func (*Javascript) EvalString

func (j *Javascript) EvalString(src string) (result string, err error)

EvalString ...

func (*Javascript) GetCompiler

func (j *Javascript) GetCompiler() error

GetCompiler ...

func (*Javascript) Init

func (j *Javascript) Init() (err error)

Init ...

func (*Javascript) PushFunction

func (j *Javascript) PushFunction(name string, s interface{})

PushFunction ...

func (*Javascript) PushStruct

func (j *Javascript) PushStruct(name string, s interface{})

PushStruct ...

func (*Javascript) RunProgram added in v0.0.26

func (j *Javascript) RunProgram(name string) (result string, err error)

RunProgram ...

type Pull

type Pull struct {
	sync.Mutex
	// contains filtered or unexported fields
}

Pull ...

func NewPull added in v0.0.26

func NewPull() *Pull

NewPull ...

func (*Pull) Add added in v0.0.26

func (p *Pull) Add(name string, s interface{})

Add ...

func (*Pull) Get added in v0.0.26

func (p *Pull) Get(name string) (value interface{}, ok bool)

Get ...

func (*Pull) Purge added in v0.5.0

func (p *Pull) Purge()

Purge ...

type ScriptService

type ScriptService interface {
	NewEngine(s *m.Script) (*Engine, error)
	PushStruct(name string, s interface{})
	PushFunctions(name string, s interface{})
	Purge()
}

ScriptService ...

func NewScriptService

func NewScriptService(cfg *m.AppConfig, storage *storage.Storage) (service ScriptService)

NewScriptService ...

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL