-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathslices.go
More file actions
392 lines (339 loc) · 10.1 KB
/
Copy pathslices.go
File metadata and controls
392 lines (339 loc) · 10.1 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
388
389
390
391
392
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 = &SliceSchema{}
type SliceSchema struct {
processors []p.ZProcessor[any]
schema ZogSchema
required *p.Test[any]
defaultFunc func() any
// catch any
coercer conf.CoercerFunc
isNot bool
}
type NotSliceSchema interface {
Len(n int, options ...TestOption) *SliceSchema
Contains(value any, options ...TestOption) *SliceSchema
}
// Returns the type of the schema
func (v *SliceSchema) getType() zconst.ZogType {
return zconst.TypeSlice
}
// Sets the coercer for the schema
func (v *SliceSchema) setCoercer(c conf.CoercerFunc) {
v.coercer = c
}
// ! USER FACING FUNCTIONS
// Creates a slice schema. That is a Zog representation of a slice.
// It takes a ZogSchema which will be used to validate against all the items in the slice.
func Slice(schema ZogSchema, opts ...SchemaOption) *SliceSchema {
s := &SliceSchema{
schema: schema,
coercer: conf.Coercers.Slice, // default coercer
}
for _, opt := range opts {
opt(s)
}
return s
}
// Validates a slice
func (v *SliceSchema) Validate(data 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, data, path, v.getType())
defer sctx.Free()
v.validate(sctx)
return errs.List
}
// Internal function to validate the data
func (v *SliceSchema) validate(ctx *p.SchemaCtx) {
sliceRefVal := reflect.ValueOf(ctx.ValPtr)
if !sliceRefVal.IsValid() || sliceRefVal.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 slice
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("pointer to slice", ctx.ValPtr, "validating a slice schema"))
return
}
refVal := sliceRefVal.Elem() // we use this to set the value to the ptr. But we still reference the ptr everywhere. This is correct even if it seems confusing.
if !refVal.IsValid() || refVal.Kind() != reflect.Slice {
// 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 slice
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("slice", ctx.ValPtr, "validating a slice schema"))
return
}
// 2. cast data to string & handle default/required
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
}
}
// 3.1 tests for slice items
subCtx := ctx.NewValidateSchemaCtx(ctx.ValPtr, ctx.Path, v.schema.getType())
defer subCtx.Free()
for idx := 0; idx < refVal.Len(); idx++ {
item := refVal.Index(idx).Addr().Interface()
k := fmt.Sprintf("[%d]", idx)
subCtx.ValPtr = item
subCtx.Path.Push(&k)
subCtx.Exit = false
v.schema.validate(subCtx)
subCtx.Path.Pop()
}
for _, processor := range v.processors {
ctx.Processor = processor
processor.ZProcess(ctx.ValPtr, ctx)
if ctx.Exit {
// can catch here
return
}
}
}
// Only supports parsing from data=slice[any] to a dest =&slice[] (this can be typed. Doesn't have to be any)
func (v *SliceSchema) 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 *SliceSchema) process(ctx *p.SchemaCtx) {
// 2. cast data to string & handle default/required
isZeroVal := p.IsParseZeroValue(ctx.Data, ctx)
var refVal reflect.Value
if isZeroVal {
if v.defaultFunc != nil {
refVal = reflect.ValueOf(v.defaultFunc())
} else if v.required == nil {
return
} else {
// REQUIRED & ZERO VALUE
ctx.AddIssue(ctx.IssueFromTest(v.required, ctx.Data))
return
}
} else {
// make sure val is a slice if not try to make it one
v, err := v.coercer(ctx.Data)
if err != nil {
ctx.AddIssue(ctx.IssueFromCoerce(err))
return
}
refVal = reflect.ValueOf(v)
}
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 slice
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("pointer to slice", ctx.ValPtr, "processing a slice schema"))
return
}
destVal := destPtrVal.Elem()
if !destVal.IsValid() || destVal.Kind() != reflect.Slice {
// 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 slice
ctx.ExecCtx.AddIssue(ctx.IssueFromInvalidType("slice", ctx.ValPtr, "processing a slice schema"))
return
}
destVal.Set(reflect.MakeSlice(destVal.Type(), refVal.Len(), refVal.Len()))
// 3.1 tests for slice items
subCtx := ctx.NewSchemaCtx(ctx.Data, ctx.ValPtr, ctx.Path, v.schema.getType())
defer subCtx.Free()
for idx := 0; idx < refVal.Len(); idx++ {
item := refVal.Index(idx).Interface()
ptr := destVal.Index(idx).Addr().Interface()
k := fmt.Sprintf("[%d]", idx)
subCtx.Data = item
subCtx.ValPtr = ptr
subCtx.Path.Push(&k)
v.schema.process(subCtx)
subCtx.Path.Pop()
}
for _, processor := range v.processors {
ctx.Processor = processor
processor.ZProcess(ctx.ValPtr, ctx)
if ctx.Exit {
return
}
}
}
// Adds transform function to schema.
func (v *SliceSchema) Transform(transform Transform[any]) *SliceSchema {
v.processors = append(v.processors, &p.TransformProcessor[any]{
Transform: p.Transform[any](transform),
})
return v
}
// !MODIFIERS
// marks field as required
func (v *SliceSchema) Required(options ...TestOption) *SliceSchema {
r := p.Required[any]()
for _, opt := range options {
opt(&r)
}
v.required = &r
return v
}
// marks field as optional
func (v *SliceSchema) Optional() *SliceSchema {
v.required = nil
return v
}
// sets the default value
func (v *SliceSchema) Default(val any) *SliceSchema {
return v.DefaultFunc(func() any {
return val
})
}
// sets the default value using a function
func (v *SliceSchema) DefaultFunc(defaultFunc func() any) *SliceSchema {
v.defaultFunc = defaultFunc
return v
}
// NOT IMPLEMENTED YET
// sets the catch value (i.e the value to use if the validation fails)
// func (v *SliceSchema) Catch(val string) *SliceSchema {
// v.catch = &val
// return v
// }
// !TESTS
// custom test function call it -> schema.Test(t z.Test)
func (v *SliceSchema) Test(t Test[any]) *SliceSchema {
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 *SliceSchema) TestFunc(testFunc BoolTFunc[any], opts ...TestOption) *SliceSchema {
t := p.NewTestFunc("", p.BoolTFunc[any](testFunc), opts...)
v.Test(Test[any](*t))
return v
}
// Minimum number of items
func (v *SliceSchema) Min(n int, options ...TestOption) *SliceSchema {
t, fn := sliceMin(n)
return v.addTest(&t, fn, options...)
}
// Maximum number of items
func (v *SliceSchema) Max(n int, options ...TestOption) *SliceSchema {
t, fn := sliceMax(n)
return v.addTest(&t, fn, options...)
}
// Exact number of items
func (v *SliceSchema) Len(n int, options ...TestOption) *SliceSchema {
t, fn := sliceLength(n)
return v.addTest(&t, fn, options...)
}
// Slice contains a specific value
func (v *SliceSchema) Contains(value any, options ...TestOption) *SliceSchema {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Slice {
return false
}
for idx := 0; idx < rv.Len(); idx++ {
v := rv.Index(idx).Interface()
if reflect.DeepEqual(v, value) {
return true
}
}
return false
}
t := &p.Test[any]{
IssueCode: zconst.IssueCodeContains,
Params: map[string]any{
zconst.IssueCodeContains: value,
},
}
return v.addTest(t, fn, options...)
}
func sliceMin(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Slice {
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 sliceMax(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Slice {
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 sliceLength(n int) (p.Test[any], p.BoolTFunc[any]) {
fn := func(val any, ctx Ctx) bool {
rv := reflect.ValueOf(val).Elem()
if rv.Kind() != reflect.Slice {
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 *SliceSchema) Not() NotSliceSchema {
v.isNot = true
return v
}
func (v *SliceSchema) addTest(t *p.Test[any], fn p.BoolTFunc[any], options ...TestOption) *SliceSchema {
if v.isNot {
p.TestNotFuncFromBool(fn, t)
t.IssueCode = zconst.NotIssueCode(t.IssueCode)
v.isNot = false
} else {
p.TestFuncFromBool(fn, t)
}
for _, opt := range options {
opt(t)
}
v.processors = append(v.processors, t)
return v
}