-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.go
62 lines (50 loc) · 948 Bytes
/
schema.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
package component
import (
"encoding/json"
"fmt"
)
type Metadata struct {
ExamplePath string
}
type Input interface {
any
fmt.Stringer
json.Marshaler
json.Unmarshaler
Payload() any
}
type Component interface {
Metadata() Metadata
Input() Input
}
type payload = any
type WrappedInput struct {
payload `json:",inline"`
}
func (wi WrappedInput) String() string {
switch v := wi.payload.(type) {
case fmt.Stringer:
return v.String()
default:
return fmt.Sprintf("%v", v)
}
}
func (wi WrappedInput) MarshalJSON() ([]byte, error) {
return json.Marshal(wi.payload)
}
func (wi WrappedInput) UnmarshalJSON(b []byte) error {
return json.Unmarshal(b, &wi.payload)
}
func (wi WrappedInput) Payload() any {
return wi.payload
}
func WrapInput(p any) Input {
return WrappedInput{payload: p}
}
func UnwrapInput(i Input, ref any) error {
b, err := i.MarshalJSON()
if err != nil {
return err
}
return json.Unmarshal(b, ref)
}