1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
package libsass
import (
"errors"
"fmt"
"sync"
"golang.org/x/net/context"
"github.com/wellington/go-libsass/libs"
)
var ghMu sync.RWMutex
// globalHandlers is the list of handlers registered externally
var globalHandlers []handler
// RegisterSassFunc assigns the passed Func to the specified signature sign
func RegisterSassFunc(sign string, fn SassFunc) {
ghMu.Lock()
globalHandlers = append(globalHandlers, handler{
sign: sign,
callback: SassHandler(fn),
})
ghMu.Unlock()
}
type key int
const (
compkey key = iota
)
func NewCompilerContext(c Compiler) context.Context {
return context.WithValue(context.TODO(), compkey, c)
}
var ErrCompilerNotFound = errors.New("compiler not found")
// CompFromCtx retrieves a compiler from a passed context
func CompFromCtx(ctx context.Context) (Compiler, error) {
v := ctx.Value(compkey)
comp, ok := v.(Compiler)
if !ok {
return comp, ErrCompilerNotFound
}
return comp, nil
}
// SassFunc describes func for handling Sass Values
type SassFunc func(ctx context.Context, in SassValue) (*SassValue, error)
// SassHandler contains callback context for running code within
// a libsass handler
func SassHandler(h SassFunc) libs.SassCallback {
return func(v interface{}, usv libs.UnionSassValue, rsv *libs.UnionSassValue) error {
if *rsv == nil {
*rsv = libs.MakeNil()
}
libCtx, ok := v.(*compctx)
if !ok {
return errors.New("libsass Context not found")
}
ctx := NewCompilerContext(libCtx.compiler)
// Cast to exported Go types
req := SassValue{value: usv}
res, err := h(ctx, req)
if err != nil {
// Returns the error to libsass Compiler
*rsv = libs.MakeError(err.Error())
// Returning an error does nothing as libsass is in charge of
// reporting error to user
return err
}
*rsv = res.Val()
return err
}
}
// RegisterHandler sets the passed signature and callback to the
// handlers array.
func RegisterHandler(sign string, callback HandlerFunc) {
ghMu.Lock()
globalHandlers = append(globalHandlers, handler{
sign: sign,
callback: Handler(callback),
})
ghMu.Unlock()
}
// HandlerFunc describes the method signature for registering
// a Go function to be called by libsass.
type HandlerFunc func(v interface{}, req SassValue, res *SassValue) error
// Handler accepts a HandlerFunc and returns SassCallback for sending
// to libsass. The third argument must be a pointer and the function
// must return an error.
func Handler(h HandlerFunc) libs.SassCallback {
return func(v interface{}, usv libs.UnionSassValue, rsv *libs.UnionSassValue) error {
if *rsv == nil {
*rsv = libs.MakeNil()
}
req := SassValue{value: usv}
res := SassValue{value: *rsv}
err := h(v, req, &res)
if rsv != nil {
*rsv = res.Val()
}
return err
}
}
type handler struct {
sign string
callback libs.SassCallback
}
var _ libs.SassCallback = TestCallback
func testCallback(h HandlerFunc) libs.SassCallback {
return func(v interface{}, _ libs.UnionSassValue, _ *libs.UnionSassValue) error {
return nil
}
}
// TestCallback implements libs.SassCallback. TestCallback is a useful
// place to start when developing new handlers.
var TestCallback = testCallback(func(_ interface{}, _ SassValue, _ *SassValue) error {
return nil
})
// Cookie is used for passing context information to libsass. Cookie is
// passed to custom handlers when libsass executes them through the go
// bridge.
type Func struct {
Sign string
Fn libs.SassCallback
Ctx interface{}
}
type Funcs struct {
sync.RWMutex
wg sync.WaitGroup
closing chan struct{}
f []Func
idx []int
// Func are complex, we need a reference to the entire context to
// successfully execute them.
ctx *compctx
}
func NewFuncs(ctx *compctx) *Funcs {
return &Funcs{
closing: make(chan struct{}),
ctx: ctx,
}
}
func (fs *Funcs) Add(f Func) {
fs.Lock()
defer fs.Unlock()
fs.f = append(fs.f, f)
}
// SetFunc assigns the registered methods to SassOptions. Functions
// are called when the compiler encounters the registered signature.
func (fs *Funcs) Bind(goopts libs.SassOptions) {
ghMu.RLock()
cookies := make([]libs.Cookie, len(globalHandlers)+len(fs.f))
// Append registered handlers to cookie array
for i, h := range globalHandlers {
cookies[i] = libs.Cookie{
Sign: h.sign,
Fn: h.callback,
Ctx: fs.ctx,
}
}
l := len(globalHandlers)
ghMu.RUnlock()
for i, h := range fs.f {
cookies[i+l] = libs.Cookie{
Sign: h.Sign,
Fn: h.Fn,
Ctx: fs.ctx,
}
}
fs.idx = libs.BindFuncs(goopts, cookies)
}
func (fs *Funcs) Close() {
err := libs.RemoveFuncs(fs.idx)
if err != nil {
fmt.Println("error cleaning up funcs", err)
}
close(fs.closing)
fs.wg.Wait()
}
|