-
Notifications
You must be signed in to change notification settings - Fork 36
/
metadata_model.go
273 lines (239 loc) · 8.96 KB
/
metadata_model.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package godata
import (
"encoding/xml"
)
const (
GoDataString = "Edm.String"
GoDataInt16 = "Edm.Int16"
GoDataInt32 = "Edm.Int32"
GoDataInt64 = "Edm.Int64"
GoDataDecimal = "Edm.Decimal"
GoDataBinary = "Edm.Binary"
GoDataBoolean = "Edm.Boolean"
GoDataTimeOfDay = "Edm.TimeOfDay"
GoDataDate = "Edm.Date"
GoDataDateTimeOffset = "Edm.DateTimeOffset"
)
type GoDataMetadata struct {
XMLName xml.Name `xml:"edmx:Edmx"`
XMLNamespace string `xml:"xmlns:edmx,attr"`
Version string `xml:"Version,attr"`
DataServices *GoDataServices
References []*GoDataReference
}
func (t *GoDataMetadata) Bytes() ([]byte, error) {
output, err := xml.MarshalIndent(t, "", " ")
if err != nil {
return nil, err
}
return append([]byte(xml.Header), output...), nil
}
type GoDataReference struct {
XMLName xml.Name `xml:"edmx:Reference"`
Uri string `xml:"Uri,attr"`
Includes []*GoDataInclude
IncludeAnnotations []*GoDataIncludeAnnotations
}
type GoDataInclude struct {
XMLName xml.Name `xml:"edmx:Include"`
Namespace string `xml:"Namespace,attr"`
Alias string `xml:"Alias,attr,omitempty"`
}
type GoDataIncludeAnnotations struct {
XMLName xml.Name `xml:"edmx:IncludeAnnotations"`
TermNamespace string `xml:"TermNamespace,attr"`
Qualifier string `xml:"Qualifier,attr,omitempty"`
TargetNamespace string `xml:"TargetNamespace,attr,omitempty"`
}
type GoDataServices struct {
XMLName xml.Name `xml:"edmx:DataServices"`
Schemas []*GoDataSchema
}
type GoDataSchema struct {
XMLName xml.Name `xml:"Schema"`
Namespace string `xml:"Namespace,attr"`
Alias string `xml:"Alias,attr,omitempty"`
Actions []*GoDataAction
Annotations []*GoDataAnnotations
Annotation []*GoDataAnnotation
ComplexTypes []*GoDataComplexType
EntityContainers []*GoDataEntityContainer
EntityTypes []*GoDataEntityType
EnumTypes []*GoDataEnumType
Functions []*GoDataFunction
Terms []*GoDataTerm
TypeDefinitions []*GoDataTypeDefinition
}
type GoDataAction struct {
XMLName xml.Name `xml:"Action"`
Name string `xml:"Name,attr"`
IsBound string `xml:"IsBound,attr,omitempty"`
EntitySetPath string `xml:"EntitySetPath,attr,omitempty"`
Parameters []*GoDataParameter
ReturnType *GoDataReturnType
}
type GoDataAnnotations struct {
XMLName xml.Name `xml:"Annotations"`
Target string `xml:"Target,attr"`
Qualifier string `xml:"Qualifier,attr,omitempty"`
Annotations []*GoDataAnnotation
}
type GoDataAnnotation struct {
XMLName xml.Name `xml:"Annotation"`
Term string `xml:"Term,attr"`
Qualifier string `xml:"Qualifier,attr,omitempty"`
}
type GoDataComplexType struct {
XMLName xml.Name `xml:"ComplexType"`
Name string `xml:"Name,attr"`
BaseType string `xml:"BaseType,attr,omitempty"`
Abstract string `xml:"Abstract,attr,omitempty"`
OpenType string `xml:"OpenType,attr,omitempty"`
Properties []*GoDataProperty
NavigationProperties []*GoDataNavigationProperty
}
type GoDataEntityContainer struct {
XMLName xml.Name `xml:"EntityContainer"`
Name string `xml:"Name,attr"`
Extends string `xml:"Extends,attr,omitempty"`
EntitySets []*GoDataEntitySet
Singletons []*GoDataSingleton
ActionImports []*GoDataActionImport
FunctionImports []*GoDataFunctionImport
}
type GoDataEntityType struct {
XMLName xml.Name `xml:"EntityType"`
Name string `xml:"Name,attr"`
BaseType string `xml:"BaseType,attr,omitempty"`
Abstract string `xml:"Abstract,attr,omitempty"`
OpenType string `xml:"OpenType,attr,omitempty"`
HasStream string `xml:"HasStream,attr,omitempty"`
Key *GoDataKey
Properties []*GoDataProperty
NavigationProperties []*GoDataNavigationProperty
}
type GoDataEnumType struct {
XMLName xml.Name `xml:"EnumType"`
Name string `xml:"Name,attr"`
UnderlyingType string `xml:"UnderlyingType,attr,omitempty"`
IsFlags string `xml:"IsFlags,attr,omitempty"`
Members []*GoDataMember
}
type GoDataFunction struct {
XMLName xml.Name `xml:"Function"`
Name string `xml:"Name,attr"`
IsBound string `xml:"IsBound,attr,omitempty"`
IsComposable string `xml:"IsComposable,attr,omitempty"`
EntitySetPath string `xml:"EntitySetPath,attr,omitempty"`
Parameters []*GoDataParameter
ReturnType *GoDataReturnType
}
type GoDataTypeDefinition struct {
XMLName xml.Name `xml:"TypeDefinition"`
Name string `xml:"Name,attr"`
UnderlyingType string `xml:"UnderlyingTypeattr,omitempty"`
Annotations []*GoDataAnnotation
}
type GoDataProperty struct {
XMLName xml.Name `xml:"Property"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
Nullable string `xml:"Nullable,attr,omitempty"`
MaxLength int `xml:"MaxLength,attr,omitempty"`
Precision int `xml:"Precision, attr,omitempty"`
Scale int `xml:"Scale,attr,omitempty"`
Unicode string `xml:"Unicode,attr,omitempty"`
SRID string `xml:"SRID,attr,omitempty"`
DefaultValue string `xml:"DefaultValue,attr,omitempty"`
}
type GoDataNavigationProperty struct {
XMLName xml.Name `xml:"NavigationProperty"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
Nullable string `xml:"Nullable,attr,omitempty"`
Partner string `xml:"Partner,attr,omitempty"`
ContainsTarget string `xml:"ContainsTarget,attr,omitempty"`
ReferentialConstraints []*GoDataReferentialConstraint
}
type GoDataReferentialConstraint struct {
XMLName xml.Name `xml:"ReferentialConstraint"`
Property string `xml:"Property,attr"`
ReferencedProperty string `xml:"ReferencedProperty,attr"`
OnDelete *GoDataOnDelete `xml:"OnDelete,omitempty"`
}
type GoDataOnDelete struct {
XMLName xml.Name `xml:"OnDelete"`
Action string `xml:"Action,attr"`
}
type GoDataEntitySet struct {
XMLName xml.Name `xml:"EntitySet"`
Name string `xml:"Name,attr"`
EntityType string `xml:"EntityType,attr"`
IncludeInServiceDocument string `xml:"IncludeInServiceDocument,attr,omitempty"`
NavigationPropertyBindings []*GoDataNavigationPropertyBinding
}
type GoDataSingleton struct {
XMLName xml.Name `xml:"Singleton"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
NavigationPropertyBindings []*GoDataNavigationPropertyBinding
}
type GoDataNavigationPropertyBinding struct {
XMLName xml.Name `xml:"NavigationPropertyBinding"`
Path string `xml:"Path,attr"`
Target string `xml:"Target,attr"`
}
type GoDataActionImport struct {
XMLName xml.Name `xml:"ActionImport"`
Name string `xml:"Name,attr"`
Action string `xml:"Action,attr"`
EntitySet string `xml:"EntitySet,attr,omitempty"`
}
type GoDataFunctionImport struct {
XMLName xml.Name `xml:"FunctionImport"`
Name string `xml:"Name,attr"`
Function string `xml:"Function,attr"`
EntitySet string `xml:"EntitySet,attr,omitempty"`
IncludeInServiceDocument string `xml:"IncludeInServiceDocument,attr,omitempty"`
}
type GoDataKey struct {
XMLName xml.Name `xml:"Key"`
PropertyRef *GoDataPropertyRef
}
type GoDataPropertyRef struct {
XMLName xml.Name `xml:"PropertyRef"`
Name string `xml:"Name,attr"`
}
type GoDataParameter struct {
XMLName xml.Name `xml:"Parameter"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
Nullable string `xml:"Nullable,attr,omitempty"`
MaxLength int `xml:"MaxLength,attr,omitempty"`
Precision int `xml:"Precision,attr,omitempty"`
Scale int `xml:"Scale,attr,omitempty"`
SRID string `xml:"SRID,attr,omitempty"`
}
type GoDataReturnType struct {
XMLName xml.Name `xml:"ReturnType"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
Nullable string `xml:"Nullable,attr,omitempty"`
MaxLength int `xml:"MaxLength,attr,omitempty"`
Precision int `xml:"Precision,attr,omitempty"`
Scale int `xml:"Scale,attr,omitempty"`
SRID string `xml:"SRID,attr,omitempty"`
}
type GoDataMember struct {
XMLName xml.Name `xml:"Member"`
Name string `xml:"Name,attr"`
Value string `xml:"Value,attr,omitempty"`
}
type GoDataTerm struct {
XMLName xml.Name `xml:"Term"`
Name string `xml:"Name,attr"`
Type string `xml:"Type,attr"`
BaseTerm string `xml:"BaseTerm,attr,omitempty"`
DefaultValue string `xml:"DefaultValue,attr,omitempty"`
AppliesTo string `xml:"AppliesTo,attr,omitempty"`
}