@@ -8,35 +8,58 @@ import (
8
8
"time"
9
9
)
10
10
11
+ // Event represents a lifecycle event in the marshaling or unmarshalling
12
+ // process.
11
13
type Event int
12
14
13
15
const (
16
+ // UnmarshalStart is the Event that is sent when deserialization of a payload
17
+ // begins.
14
18
UnmarshalStart Event = iota
19
+
20
+ // UnmarshalStop is the Event that is sent when deserialization of a payload
21
+ // ends.
15
22
UnmarshalStop
23
+
24
+ // MarshalStart is the Event that is sent sent when serialization of a payload
25
+ // begins.
16
26
MarshalStart
27
+
28
+ // MarshalStop is the Event that is sent sent when serialization of a payload
29
+ // ends.
17
30
MarshalStop
18
31
)
19
32
33
+ // Runtime has the same methods as jsonapi package for serialization and
34
+ // deserialization but also has a ctx, a map[string]interface{} for storing
35
+ // state, designed for instrumenting serialization timings.
20
36
type Runtime struct {
21
37
ctx map [string ]interface {}
22
38
}
23
39
40
+ // Events is the func type that provides the callback for handling event timings.
24
41
type Events func (* Runtime , Event , string , time.Duration )
25
42
43
+ // Instrumentation is a a global Events variable. This is the handler for all
44
+ // timing events.
26
45
var Instrumentation Events
27
46
47
+ // NewRuntime creates a Runtime for use in an application.
28
48
func NewRuntime () * Runtime { return & Runtime {make (map [string ]interface {})} }
29
49
50
+ // WithValue adds custom state variables to the runtime context.
30
51
func (r * Runtime ) WithValue (key string , value interface {}) * Runtime {
31
52
r .ctx [key ] = value
32
53
33
54
return r
34
55
}
35
56
57
+ // Value returns a state variable in the runtime context.
36
58
func (r * Runtime ) Value (key string ) interface {} {
37
59
return r .ctx [key ]
38
60
}
39
61
62
+ // Instrument is deprecated.
40
63
func (r * Runtime ) Instrument (key string ) * Runtime {
41
64
return r .WithValue ("instrument" , key )
42
65
}
@@ -45,12 +68,14 @@ func (r *Runtime) shouldInstrument() bool {
45
68
return Instrumentation != nil
46
69
}
47
70
71
+ // UnmarshalPayload has docs in request.go for UnmarshalPayload.
48
72
func (r * Runtime ) UnmarshalPayload (reader io.Reader , model interface {}) error {
49
73
return r .instrumentCall (UnmarshalStart , UnmarshalStop , func () error {
50
74
return UnmarshalPayload (reader , model )
51
75
})
52
76
}
53
77
78
+ // UnmarshalManyPayload has docs in request.go for UnmarshalManyPayload.
54
79
func (r * Runtime ) UnmarshalManyPayload (reader io.Reader , kind reflect.Type ) (elems []interface {}, err error ) {
55
80
r .instrumentCall (UnmarshalStart , UnmarshalStop , func () error {
56
81
elems , err = UnmarshalManyPayload (reader , kind )
@@ -60,6 +85,7 @@ func (r *Runtime) UnmarshalManyPayload(reader io.Reader, kind reflect.Type) (ele
60
85
return
61
86
}
62
87
88
+ // MarshalPayload has docs in response.go for MarshalPayload.
63
89
func (r * Runtime ) MarshalPayload (w io.Writer , model interface {}) error {
64
90
return r .instrumentCall (MarshalStart , MarshalStop , func () error {
65
91
return MarshalPayload (w , model )
0 commit comments