This repository has been archived by the owner on Apr 15, 2021. It is now read-only.
forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 3
/
runner.go
168 lines (133 loc) · 4.21 KB
/
runner.go
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
package action
import (
"bytes"
"encoding/json"
"reflect"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
)
type Runner interface {
Run(action Action, payload []byte, protocolVersion ProtocolVersion) (value interface{}, err error)
Resume(action Action, payload []byte) (value interface{}, err error)
}
func NewRunner() Runner {
return concreteRunner{}
}
type concreteRunner struct{}
func (r concreteRunner) Run(action Action, payloadBytes []byte, protocolVersion ProtocolVersion) (value interface{}, err error) {
payloadArgs, err := r.extractJSONArguments(payloadBytes)
if err != nil {
err = bosherr.WrapError(err, "Extracting json arguments")
return
}
actionValue := reflect.ValueOf(action)
runMethodValue := actionValue.MethodByName("Run")
if runMethodValue.Kind() != reflect.Func {
err = bosherr.Error("Run method not found")
return
}
runMethodType := runMethodValue.Type()
if r.invalidReturnTypes(runMethodType) {
err = bosherr.Error("Run method should return a value and an error")
return
}
methodArgs, err := r.extractMethodArgs(runMethodType, protocolVersion, payloadArgs)
if err != nil {
err = bosherr.WrapError(err, "Extracting method arguments from payload")
return
}
values := runMethodValue.Call(methodArgs)
return r.extractReturns(values)
}
func (r concreteRunner) Resume(action Action, payloadBytes []byte) (value interface{}, err error) {
return action.Resume()
}
func (r concreteRunner) extractJSONArguments(payloadBytes []byte) (args []interface{}, err error) {
type payloadType struct {
Arguments []interface{} `json:"arguments"`
}
payload := payloadType{}
decoder := json.NewDecoder(bytes.NewReader(payloadBytes))
decoder.UseNumber()
err = decoder.Decode(&payload)
if err != nil {
err = bosherr.WrapError(err, "Unmarshalling payload arguments to interface{} types")
}
args = payload.Arguments
return
}
func (r concreteRunner) invalidReturnTypes(methodType reflect.Type) (valid bool) {
if methodType.NumOut() != 2 {
return true
}
secondReturnType := methodType.Out(1)
if secondReturnType.Kind() != reflect.Interface {
return true
}
errorType := reflect.TypeOf(bosherr.Error(""))
secondReturnIsError := errorType.Implements(secondReturnType)
if !secondReturnIsError {
return true
}
return
}
func (r concreteRunner) extractMethodArgs(runMethodType reflect.Type, protocolVersion ProtocolVersion, args []interface{}) (methodArgs []reflect.Value, err error) {
numberOfArgs := runMethodType.NumIn()
numberOfReqArgs := numberOfArgs
if runMethodType.IsVariadic() {
numberOfReqArgs--
}
argsOffset := 0
if numberOfArgs > 0 {
firstArgType := runMethodType.In(0)
if firstArgType.Name() == "ProtocolVersion" {
methodArgs = append(methodArgs, reflect.ValueOf(protocolVersion))
numberOfReqArgs--
argsOffset++
}
}
if len(args) < numberOfReqArgs {
err = bosherr.Errorf("Not enough arguments, expected %d, got %d", numberOfReqArgs, len(args))
return
}
for i, argFromPayload := range args {
var rawArgBytes []byte
rawArgBytes, err = json.Marshal(argFromPayload)
if err != nil {
err = bosherr.WrapError(err, "Marshalling action argument")
return
}
argType, typeFound := r.getMethodArgType(runMethodType, i+argsOffset)
if !typeFound {
continue
}
argValuePtr := reflect.New(argType)
err = json.Unmarshal(rawArgBytes, argValuePtr.Interface())
if err != nil {
err = bosherr.WrapError(err, "Unmarshalling action argument")
return
}
methodArgs = append(methodArgs, reflect.Indirect(argValuePtr))
}
return
}
func (r concreteRunner) getMethodArgType(methodType reflect.Type, index int) (argType reflect.Type, found bool) {
numberOfArgs := methodType.NumIn()
switch {
case !methodType.IsVariadic() && index >= numberOfArgs:
return nil, false
case methodType.IsVariadic() && index >= numberOfArgs-1:
sliceType := methodType.In(numberOfArgs - 1)
return sliceType.Elem(), true
default:
return methodType.In(index), true
}
}
func (r concreteRunner) extractReturns(values []reflect.Value) (value interface{}, err error) {
errValue := values[1]
if !errValue.IsNil() {
errorValues := errValue.MethodByName("Error").Call([]reflect.Value{})
err = bosherr.Error(errorValues[0].String())
}
value = values[0].Interface()
return
}