-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocument.go
252 lines (210 loc) · 5.39 KB
/
document.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
package lime
import (
"encoding/json"
"errors"
)
func init() {
RegisterDocumentFactory(func() Document {
d := TextDocument("")
return &d
})
RegisterDocumentFactory(func() Document {
return &JsonDocument{}
})
RegisterDocumentFactory(func() Document {
return &DocumentContainer{}
})
RegisterDocumentFactory(func() Document {
return &DocumentCollection{}
})
RegisterDocumentFactory(func() Document {
return &Ping{}
})
}
// Document defines an entity with a media type.
type Document interface {
// MediaType gets the type of the media for the document.
MediaType() MediaType
}
// JsonDocument represents a generic JSON document.
type JsonDocument map[string]interface{}
func (d *JsonDocument) MediaType() MediaType {
return MediaTypeApplicationJson()
}
// TextDocument represents a plain document.
type TextDocument string
func (d TextDocument) MediaType() MediaType {
return MediaTypeTextPlain()
}
// DocumentContainer represents a generic container for a document,
// providing a media type for the correct handling of its value by the nodes.
// This type can be used along with DocumentCollection to transport distinct
// document types in a single message.
type DocumentContainer struct {
// The media type of the contained document.
Type MediaType
// The contained document value.
Value Document
}
func NewDocumentContainer(d Document) *DocumentContainer {
return &DocumentContainer{
Type: d.MediaType(),
Value: d,
}
}
func (d *DocumentContainer) MediaType() MediaType {
return MediaType{
MediaTypeApplication,
"vnd.lime.container",
"json",
}
}
// rawDocumentContainer is a wrapper for custom marshalling
type rawDocumentContainer struct {
Type *MediaType `json:"type"`
Value *json.RawMessage `json:"value"`
}
func (d *DocumentContainer) MarshalJSON() ([]byte, error) {
dw, err := d.raw()
if err != nil {
return nil, err
}
return json.Marshal(dw)
}
func (d *DocumentContainer) UnmarshalJSON(b []byte) error {
raw := rawDocumentContainer{}
err := json.Unmarshal(b, &raw)
if err != nil {
return err
}
documentContainer := DocumentContainer{}
err = documentContainer.populate(&raw)
if err != nil {
return err
}
*d = documentContainer
return nil
}
func (d *DocumentContainer) raw() (*rawDocumentContainer, error) {
raw := rawDocumentContainer{
Type: &d.Type,
}
b, err := json.Marshal(d.Value)
if err != nil {
return &rawDocumentContainer{}, err
}
r := json.RawMessage(b)
raw.Value = &r
return &raw, nil
}
func (d *DocumentContainer) populate(raw *rawDocumentContainer) error {
// Create the document type instance and unmarshal the json to it
if raw.Type == nil {
return errors.New("document type is required")
}
document, err := UnmarshalDocument(raw.Value, *raw.Type)
if err != nil {
return err
}
d.Type = *raw.Type
d.Value = document
return nil
}
// DocumentCollection represents a collection of documents.
type DocumentCollection struct {
// The total of items in the collection.
// This value refers to the original source collection,
// without any applied filter that may exist in the
// items on this instance.
Total int
// The media type of all items of the collection.
ItemType MediaType
// The collection items.
Items []Document
}
func (d *DocumentCollection) MediaType() MediaType {
return MediaType{MediaTypeApplication, "vnd.lime.collection", "json"}
}
func NewDocumentCollection(items []Document, t MediaType) *DocumentCollection {
return &DocumentCollection{
Total: len(items),
ItemType: t,
Items: items,
}
}
// rawDocumentCollection is a wrapper for custom marshalling
type rawDocumentCollection struct {
Total int `json:"total,omitempty"`
ItemType *MediaType `json:"itemType"`
Items []*json.RawMessage `json:"items"`
}
func (d *DocumentCollection) MarshalJSON() ([]byte, error) {
raw, err := d.raw()
if err != nil {
return nil, err
}
return json.Marshal(raw)
}
func (d *DocumentCollection) UnmarshalJSON(b []byte) error {
raw := rawDocumentCollection{}
err := json.Unmarshal(b, &raw)
if err != nil {
return err
}
documentCollection := DocumentCollection{}
err = documentCollection.populate(&raw)
if err != nil {
return err
}
*d = documentCollection
return nil
}
func (d *DocumentCollection) raw() (*rawDocumentCollection, error) {
raw := rawDocumentCollection{
ItemType: &d.ItemType,
Total: d.Total,
}
if d.Items != nil {
raw.Items = make([]*json.RawMessage, len(d.Items))
for i, v := range d.Items {
b, err := json.Marshal(v)
if err != nil {
return &rawDocumentCollection{}, err
}
r := json.RawMessage(b)
raw.Items[i] = &r
}
}
return &raw, nil
}
func (d *DocumentCollection) populate(raw *rawDocumentCollection) error {
// Create the document type instance and unmarshal the json to it
if raw.ItemType == nil {
return errors.New("document collection item type is required")
}
if raw.Items != nil {
d.Items = make([]Document, len(raw.Items))
for i, v := range raw.Items {
document, err := UnmarshalDocument(v, *raw.ItemType)
if err != nil {
return err
}
d.Items[i] = document
}
}
d.ItemType = *raw.ItemType
d.Total = raw.Total
return nil
}
// Ping allows the nodes to test the network connectivity.
type Ping struct{}
func MediaTypePing() MediaType {
return MediaType{
Type: "application",
Subtype: "vnd.lime.ping",
Suffix: "json",
}
}
func (p *Ping) MediaType() MediaType {
return MediaTypePing()
}