-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema.go
executable file
·64 lines (51 loc) · 1.2 KB
/
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
63
64
package torm
import (
"errors"
"reflect"
)
// Schema model definition
type Schema struct {
Fields []*Field
PrimaryField *Field
attributes map[string]interface{}
}
func (s *Schema) SetId(id int64) error {
for _, f := range s.Fields {
if f.Primary {
f.SetValue(id)
break
}
}
return nil
}
func (s *Schema) Attributes() map[string]interface{} {
if s.attributes == nil {
s.attributes = make(map[string]interface{})
for _, field := range s.Fields {
if !field.Ignored {
s.attributes[field.Name] = field.Value.Addr().Interface()
}
}
}
return s.attributes
}
func NewSchema(model interface{}) (*Schema, error) {
results := reflect.Indirect(reflect.ValueOf(model))
kind := results.Kind()
if kind != reflect.Struct {
return nil, errors.New("unsupported value, should be struct")
}
var resultType reflect.Type
var resultValue reflect.Value
resultType = results.Type()
resultValue = results
var schema Schema
for i := 0; i < resultType.NumField(); i++ {
field := NewField(resultValue.Field(i), resultType.Field(i))
if schema.PrimaryField == nil && field.Primary {
schema.PrimaryField = field
}
schema.Fields = append(schema.Fields, field)
}
return &schema, nil
}