-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathmaps.go
More file actions
387 lines (338 loc) · 10.8 KB
/
Copy pathmaps.go
File metadata and controls
387 lines (338 loc) · 10.8 KB
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
package zog
import (
"fmt"
"reflect"
"github.com/Oudwins/zog/conf"
p "github.com/Oudwins/zog/pkgs/internals"
"github.com/Oudwins/zog/zconst"
)
// ! INTERNALS
var _ ComplexZogSchema = &MapSchema[string, any]{}
type MapSchema[K p.ZogPrimitive, V any] struct {
processors []p.ZProcessor[any]
keySchema PrimitiveZogSchema[K]
valueSchema ZogSchema
required *p.Test[any]
defaultFunc func() map[K]V
}
// Returns the type of the schema
func (v *MapSchema[K, V]) getType() zconst.ZogType {
return zconst.TypeMap
}
// Sets the coercer for the schema (no-op for maps, kept for interface compliance)
func (v *MapSchema[K, V]) setCoercer(c conf.CoercerFunc) {
// Maps don't need coercers as we use generics
}
// ! USER FACING FUNCTIONS
// Creates a map schema. That is a Zog representation of a map.
// It takes a PrimitiveZogSchema for keys and a ZogSchema for values.
func EXPERIMENTAL_MAP[K p.ZogPrimitive, V any](keySchema PrimitiveZogSchema[K], valueSchema ZogSchema, opts ...SchemaOption) *MapSchema[K, V] {
s := &MapSchema[K, V]{
keySchema: keySchema,
valueSchema: valueSchema,
}
for _, opt := range opts {
opt(s)
}
return s
}
// Validates a map
func (v *MapSchema[K, V]) Validate(data *map[K]V, options ...ExecOption) ZogIssueList {
errs := p.NewErrsList()
defer errs.Free()
ctx := p.NewExecCtx(errs, conf.IssueFormatter)
defer ctx.Free()
for _, opt := range options {
opt(ctx)
}
path := p.NewPathBuilder()
defer path.Free()
sctx := ctx.NewSchemaCtx(data, data, path, v.getType())
defer sctx.Free()
v.validate(sctx)
return errs.List
}
// Internal function to validate the data
func (v *MapSchema[K, V]) validate(ctx *p.SchemaCtx) {
mapRefVal := reflect.ValueOf(ctx.ValPtr)
if !mapRefVal.IsValid() || mapRefVal.Kind() != reflect.Pointer {
// We have to go directly to the exec context as that is what formats. We cannot use ctx because it will try to catch the issue and this is an uncatchable issue
// since we cannot set the value as its not a pointer to map
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("pointer to map", ctx.ValPtr, "validating a map schema"))
return
}
refVal := mapRefVal.Elem()
if !refVal.IsValid() || refVal.Kind() != reflect.Map {
// We have to go directly to the exec context as that is what formats. We cannot use ctx because it will try to catch the issue and this is an uncatchable issue
// since we cannot set the value as its not a map
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("map", ctx.ValPtr, "validating a map schema"))
return
}
isZeroVal := p.IsZeroValue(ctx.ValPtr)
if isZeroVal || refVal.Len() == 0 {
if v.defaultFunc != nil {
refVal.Set(reflect.ValueOf(v.defaultFunc()))
} else if v.required == nil {
return
} else {
// REQUIRED & ZERO VALUE
ctx.AddIssue(ctx.IssueFromTest(v.required, ctx.ValPtr))
return
}
}
// Create contexts once for reuse
keySubCtx := ctx.NewValidateSchemaCtx(ctx.ValPtr, ctx.Path, v.keySchema.getType())
defer keySubCtx.Free()
subCtx := ctx.NewValidateSchemaCtx(ctx.ValPtr, ctx.Path, v.valueSchema.getType())
defer subCtx.Free()
// Validate map entries
for _, key := range refVal.MapKeys() {
keyVal := key.Interface().(K)
k := fmt.Sprintf(`["%v"]`, keyVal)
// Validate key
keyPtr := &keyVal
keySubCtx.ValPtr = keyPtr
keySubCtx.Path.Push(&k)
keySubCtx.Exit = false
v.keySchema.validate(keySubCtx)
keySubCtx.Path.Pop()
// Validate value - use map's value type, not runtime type of the value
// This ensures proper handling of interface types like `any`
valueType := refVal.Type().Elem()
valuePtr := reflect.New(valueType).Interface()
reflect.ValueOf(valuePtr).Elem().Set(refVal.MapIndex(key))
subCtx.ValPtr = valuePtr
subCtx.Path.Push(&k)
subCtx.Exit = false
v.valueSchema.validate(subCtx)
subCtx.Path.Pop()
}
for _, processor := range v.processors {
ctx.Processor = processor
processor.ZProcess(ctx.ValPtr, ctx)
if ctx.Exit {
return
}
}
}
// Parse the data into the destination map
func (v *MapSchema[K, V]) Parse(data any, dest any, options ...ExecOption) ZogIssueList {
errs := p.NewErrsList()
defer errs.Free()
ctx := p.NewExecCtx(errs, conf.IssueFormatter)
defer ctx.Free()
for _, opt := range options {
opt(ctx)
}
path := p.NewPathBuilder()
defer path.Free()
sctx := ctx.NewSchemaCtx(data, dest, path, v.getType())
defer sctx.Free()
v.process(sctx)
return errs.List
}
// Internal function to process the data
func (v *MapSchema[K, V]) process(ctx *p.SchemaCtx) {
isZeroVal := p.IsParseZeroValue(ctx.Data, ctx)
var inputMap reflect.Value
if isZeroVal {
if v.defaultFunc != nil {
inputMap = reflect.ValueOf(v.defaultFunc())
} else if v.required == nil {
return
} else {
// REQUIRED & ZERO VALUE
ctx.AddIssue(ctx.IssueFromTest(v.required, ctx.Data))
return
}
} else {
// Verify input is a map
inputMap = reflect.ValueOf(ctx.Data)
if inputMap.Kind() != reflect.Map {
ctx.AddIssue(ctx.Issue().SetCode(zconst.IssueCodeCoerce).SetMessage(fmt.Sprintf("expected map, got %v", inputMap.Kind())))
return
}
}
// Create destination map
destPtrVal := reflect.ValueOf(ctx.ValPtr)
if !destPtrVal.IsValid() || destPtrVal.Kind() != reflect.Pointer {
// We have to go directly to the exec context as that is what formats. We cannot use ctx because it will try to catch the issue and this is an uncatchable issue
// since we cannot set the value as its not a pointer to map
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("pointer to map", ctx.ValPtr, "processing a map schema"))
return
}
destVal := destPtrVal.Elem()
if !destVal.IsValid() {
// We have to go directly to the exec context as that is what formats. We cannot use ctx because it will try to catch the issue and this is an uncatchable issue
// since we cannot set the value as its not a map
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("map", ctx.ValPtr, "processing a map schema"))
return
}
destType := destVal.Type()
if destType.Kind() != reflect.Map {
// We have to go directly to the exec context as that is what formats. We cannot use ctx because it will try to catch the issue and this is an uncatchable issue
// since we cannot set the value as its not a map
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("map", ctx.ValPtr, "processing a map schema"))
return
}
destMap := reflect.MakeMap(destType)
// Create contexts once for reuse
keySubCtx := ctx.NewSchemaCtx(ctx.Data, ctx.ValPtr, ctx.Path, v.keySchema.getType())
defer keySubCtx.Free()
subCtx := ctx.NewSchemaCtx(ctx.Data, ctx.ValPtr, ctx.Path, v.valueSchema.getType())
defer subCtx.Free()
// Process map entries
for _, key := range inputMap.MapKeys() {
keyData := key.Interface()
valueData := inputMap.MapIndex(key).Interface()
k := fmt.Sprintf(`["%v"]`, keyData)
// Parse key - create a zero value and get pointer to it
keyPtr := reflect.New(destType.Key()).Interface()
keySubCtx.Data = keyData
keySubCtx.ValPtr = keyPtr
keySubCtx.Path.Push(&k)
keySubCtx.Exit = false
v.keySchema.process(keySubCtx)
keySubCtx.Path.Pop()
if keySubCtx.Exit {
continue
}
parsedKey := reflect.ValueOf(keyPtr).Elem().Interface().(K)
// Parse value - create a zero value and get pointer to it
valuePtr := reflect.New(destType.Elem()).Interface()
subCtx.Data = valueData
subCtx.ValPtr = valuePtr
subCtx.Path.Push(&k)
subCtx.Exit = false
v.valueSchema.process(subCtx)
subCtx.Path.Pop()
// Only add to map if no errors occurred
// Use reflect.Value directly to avoid type assertion issues with nil interfaces
if !subCtx.Exit {
parsedValueReflect := reflect.ValueOf(valuePtr).Elem()
destMap.SetMapIndex(reflect.ValueOf(parsedKey), parsedValueReflect)
}
}
destVal.Set(destMap)
for _, processor := range v.processors {
ctx.Processor = processor
processor.ZProcess(ctx.ValPtr, ctx)
if ctx.Exit {
return
}
}
}
// Adds transform function to schema.
func (v *MapSchema[K, V]) Transform(transform Transform[any]) *MapSchema[K, V] {
v.processors = append(v.processors, &p.TransformProcessor[any]{
Transform: p.Transform[any](transform),
})
return v
}
// !MODIFIERS
// marks field as required
func (v *MapSchema[K, V]) Required(options ...TestOption) *MapSchema[K, V] {
r := p.Required[any]()
for _, opt := range options {
opt(&r)
}
v.required = &r
return v
}
// marks field as optional
func (v *MapSchema[K, V]) Optional() *MapSchema[K, V] {
v.required = nil
return v
}
// sets the default value
func (v *MapSchema[K, V]) Default(val map[K]V) *MapSchema[K, V] {
return v.DefaultFunc(func() map[K]V {
return val
})
}
// sets the default value using a function
func (v *MapSchema[K, V]) DefaultFunc(defaultFunc func() map[K]V) *MapSchema[K, V] {
v.defaultFunc = defaultFunc
return v
}
// !TESTS
// custom test function call it -> schema.Test(t z.Test)
func (v *MapSchema[K, V]) Test(t Test[any]) *MapSchema[K, V] {
x := p.Test[any](t)
v.processors = append(v.processors, &x)
return v
}
// Create a custom test function for the schema. This is similar to Zod's `.refine()` method.
func (v *MapSchema[K, V]) TestFunc(testFunc BoolTFunc[any], opts ...TestOption) *MapSchema[K, V] {
t := p.NewTestFunc("", p.BoolTFunc[any](testFunc), opts...)
v.Test(Test[any](*t))
return v
}
// Minimum number of entries
func (v *MapSchema[K, V]) Min(n int, options ...TestOption) *MapSchema[K, V] {
t, fn := mapMin(n)
return v.addTest(&t, fn, options...)
}
// Maximum number of entries
func (v *MapSchema[K, V]) Max(n int, options ...TestOption) *MapSchema[K, V] {
t, fn := mapMax(n)
return v.addTest(&t, fn, options...)
}
// Exact number of entries
func (v *MapSchema[K, V]) Len(n int, options ...TestOption) *MapSchema[K, V] {
t, fn := mapLength(n)
return v.addTest(&t, fn, options...)
}
func mapMin(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Map {
return false
}
return rv.Len() >= n
}
t := p.Test[any]{
IssueCode: zconst.IssueCodeMin,
Params: make(map[string]any, 1),
}
t.Params[zconst.IssueCodeMin] = n
return t, fn
}
func mapMax(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Map {
return false
}
return rv.Len() <= n
}
t := p.Test[any]{
IssueCode: zconst.IssueCodeMax,
Params: make(map[string]any, 1),
}
t.Params[zconst.IssueCodeMax] = n
return t, fn
}
func mapLength(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Map {
return false
}
return rv.Len() == n
}
t := p.Test[any]{
IssueCode: zconst.IssueCodeLen,
Params: make(map[string]any, 1),
}
t.Params[zconst.IssueCodeLen] = n
return t, fn
}
func (v *MapSchema[K, V]) addTest(t *p.Test[any], fn p.BoolTFunc[any], options ...TestOption) *MapSchema[K, V] {
p.TestFuncFromBool(fn, t)
for _, opt := range options {
opt(t)
}
v.processors = append(v.processors, t)
return v
}