Skip to content

Commit d0428f6

Browse files
authored
Merge pull request #165 from shwoodard/fix-lint
Fix golint
2 parents 9246c91 + 4a0c98e commit d0428f6

File tree

3 files changed

+33
-17
lines changed

3 files changed

+33
-17
lines changed

errors.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ import (
1212
// http://jsonapi.org/format/#document-top-level
1313
// and here: http://jsonapi.org/format/#error-objects.
1414
func MarshalErrors(w io.Writer, errorObjects []*ErrorObject) error {
15-
if err := json.NewEncoder(w).Encode(&ErrorsPayload{Errors: errorObjects}); err != nil {
16-
return err
17-
}
18-
return nil
15+
return json.NewEncoder(w).Encode(&ErrorsPayload{Errors: errorObjects})
1916
}
2017

2118
// ErrorsPayload is a serializer struct for representing a valid JSON API errors payload.

response.go

+6-13
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ func MarshalPayload(w io.Writer, models interface{}) error {
6868
return err
6969
}
7070

71-
if err := json.NewEncoder(w).Encode(payload); err != nil {
72-
return err
73-
}
74-
return nil
71+
return json.NewEncoder(w).Encode(payload)
7572
}
7673

7774
// Marshal does the same as MarshalPayload except it just returns the payload
@@ -128,10 +125,7 @@ func MarshalPayloadWithoutIncluded(w io.Writer, model interface{}) error {
128125
}
129126
payload.clearIncluded()
130127

131-
if err := json.NewEncoder(w).Encode(payload); err != nil {
132-
return err
133-
}
134-
return nil
128+
return json.NewEncoder(w).Encode(payload)
135129
}
136130

137131
// marshalOne does the same as MarshalOnePayload except it just returns the
@@ -195,11 +189,7 @@ func MarshalOnePayloadEmbedded(w io.Writer, model interface{}) error {
195189

196190
payload := &OnePayload{Data: rootNode}
197191

198-
if err := json.NewEncoder(w).Encode(payload); err != nil {
199-
return err
200-
}
201-
202-
return nil
192+
return json.NewEncoder(w).Encode(payload)
203193
}
204194

205195
func visitModelNode(model interface{}, included *map[string]*Node,
@@ -280,6 +270,9 @@ func visitModelNode(model interface{}, included *map[string]*Node,
280270
// We had a JSON float (numeric), but our field was not one of the
281271
// allowed numeric types
282272
er = ErrBadJSONAPIID
273+
}
274+
275+
if er != nil {
283276
break
284277
}
285278

runtime.go

+26
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,58 @@ import (
88
"time"
99
)
1010

11+
// Event represents a lifecycle event in the marshaling or unmarshalling
12+
// process.
1113
type Event int
1214

1315
const (
16+
// UnmarshalStart is the Event that is sent when deserialization of a payload
17+
// begins.
1418
UnmarshalStart Event = iota
19+
20+
// UnmarshalStop is the Event that is sent when deserialization of a payload
21+
// ends.
1522
UnmarshalStop
23+
24+
// MarshalStart is the Event that is sent sent when serialization of a payload
25+
// begins.
1626
MarshalStart
27+
28+
// MarshalStop is the Event that is sent sent when serialization of a payload
29+
// ends.
1730
MarshalStop
1831
)
1932

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.
2036
type Runtime struct {
2137
ctx map[string]interface{}
2238
}
2339

40+
// Events is the func type that provides the callback for handling event timings.
2441
type Events func(*Runtime, Event, string, time.Duration)
2542

43+
// Instrumentation is a a global Events variable. This is the handler for all
44+
// timing events.
2645
var Instrumentation Events
2746

47+
// NewRuntime creates a Runtime for use in an application.
2848
func NewRuntime() *Runtime { return &Runtime{make(map[string]interface{})} }
2949

50+
// WithValue adds custom state variables to the runtime context.
3051
func (r *Runtime) WithValue(key string, value interface{}) *Runtime {
3152
r.ctx[key] = value
3253

3354
return r
3455
}
3556

57+
// Value returns a state variable in the runtime context.
3658
func (r *Runtime) Value(key string) interface{} {
3759
return r.ctx[key]
3860
}
3961

62+
// Instrument is deprecated.
4063
func (r *Runtime) Instrument(key string) *Runtime {
4164
return r.WithValue("instrument", key)
4265
}
@@ -45,12 +68,14 @@ func (r *Runtime) shouldInstrument() bool {
4568
return Instrumentation != nil
4669
}
4770

71+
// UnmarshalPayload has docs in request.go for UnmarshalPayload.
4872
func (r *Runtime) UnmarshalPayload(reader io.Reader, model interface{}) error {
4973
return r.instrumentCall(UnmarshalStart, UnmarshalStop, func() error {
5074
return UnmarshalPayload(reader, model)
5175
})
5276
}
5377

78+
// UnmarshalManyPayload has docs in request.go for UnmarshalManyPayload.
5479
func (r *Runtime) UnmarshalManyPayload(reader io.Reader, kind reflect.Type) (elems []interface{}, err error) {
5580
r.instrumentCall(UnmarshalStart, UnmarshalStop, func() error {
5681
elems, err = UnmarshalManyPayload(reader, kind)
@@ -60,6 +85,7 @@ func (r *Runtime) UnmarshalManyPayload(reader io.Reader, kind reflect.Type) (ele
6085
return
6186
}
6287

88+
// MarshalPayload has docs in response.go for MarshalPayload.
6389
func (r *Runtime) MarshalPayload(w io.Writer, model interface{}) error {
6490
return r.instrumentCall(MarshalStart, MarshalStop, func() error {
6591
return MarshalPayload(w, model)

0 commit comments

Comments
 (0)