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
|
package callrules
// go generate -import github.com/mesos/mesos-go/api/v1/lib/executor -import github.com/mesos/mesos-go/api/v1/lib/executor/calls -type E:*executor.Call -type C:calls.Caller -type CF:calls.CallerFunc -output callers_generated.go
// GENERATED CODE FOLLOWS; DO NOT EDIT.
import (
"context"
"github.com/mesos/mesos-go/api/v1/lib"
"github.com/mesos/mesos-go/api/v1/lib/executor"
"github.com/mesos/mesos-go/api/v1/lib/executor/calls"
)
// Call returns a Rule that invokes the given Caller
func Call(caller calls.Caller) Rule {
if caller == nil {
return nil
}
return func(ctx context.Context, c *executor.Call, _ mesos.Response, _ error, ch Chain) (context.Context, *executor.Call, mesos.Response, error) {
resp, err := caller.Call(ctx, c)
return ch(ctx, c, resp, err)
}
}
// CallF returns a Rule that invokes the given CallerFunc
func CallF(cf calls.CallerFunc) Rule {
return Call(calls.Caller(cf))
}
// Caller returns a Rule that invokes the receiver and then calls the given Caller
func (r Rule) Caller(caller calls.Caller) Rule {
return Rules{r, Call(caller)}.Eval
}
// CallerF returns a Rule that invokes the receiver and then calls the given CallerFunc
func (r Rule) CallerF(cf calls.CallerFunc) Rule {
return r.Caller(calls.Caller(cf))
}
// Call implements the Caller interface for Rule
func (r Rule) Call(ctx context.Context, c *executor.Call) (mesos.Response, error) {
if r == nil {
return nil, nil
}
_, _, resp, err := r(ctx, c, nil, nil, ChainIdentity)
return resp, err
}
// Call implements the Caller interface for Rules
func (rs Rules) Call(ctx context.Context, c *executor.Call) (mesos.Response, error) {
return Rule(rs.Eval).Call(ctx, c)
}
var (
_ = calls.Caller(Rule(nil))
_ = calls.Caller(Rules(nil))
)
|