-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsql_enum.go
269 lines (238 loc) · 6.27 KB
/
sql_enum.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
// Code generated by go-enum DO NOT EDIT.
// Version: example
// Revision: example
// Build Date: example
// Built By: example
//go:build example
// +build example
package example
import (
"database/sql/driver"
"encoding/json"
"errors"
"fmt"
"strconv"
)
const (
ProjectStatusPending ProjectStatus = iota
ProjectStatusInWork
ProjectStatusCompleted
ProjectStatusRejected
)
var ErrInvalidProjectStatus = errors.New("not a valid ProjectStatus")
const _ProjectStatusName = "pendinginWorkcompletedrejected"
var _ProjectStatusMap = map[ProjectStatus]string{
ProjectStatusPending: _ProjectStatusName[0:7],
ProjectStatusInWork: _ProjectStatusName[7:13],
ProjectStatusCompleted: _ProjectStatusName[13:22],
ProjectStatusRejected: _ProjectStatusName[22:30],
}
// String implements the Stringer interface.
func (x ProjectStatus) String() string {
if str, ok := _ProjectStatusMap[x]; ok {
return str
}
return fmt.Sprintf("ProjectStatus(%d)", x)
}
// IsValid provides a quick way to determine if the typed value is
// part of the allowed enumerated values
func (x ProjectStatus) IsValid() bool {
_, ok := _ProjectStatusMap[x]
return ok
}
var _ProjectStatusValue = map[string]ProjectStatus{
_ProjectStatusName[0:7]: ProjectStatusPending,
_ProjectStatusName[7:13]: ProjectStatusInWork,
_ProjectStatusName[13:22]: ProjectStatusCompleted,
_ProjectStatusName[22:30]: ProjectStatusRejected,
}
// ParseProjectStatus attempts to convert a string to a ProjectStatus.
func ParseProjectStatus(name string) (ProjectStatus, error) {
if x, ok := _ProjectStatusValue[name]; ok {
return x, nil
}
return ProjectStatus(0), fmt.Errorf("%s is %w", name, ErrInvalidProjectStatus)
}
func (x ProjectStatus) Ptr() *ProjectStatus {
return &x
}
// MarshalText implements the text marshaller method.
func (x ProjectStatus) MarshalText() ([]byte, error) {
return []byte(x.String()), nil
}
// UnmarshalText implements the text unmarshaller method.
func (x *ProjectStatus) UnmarshalText(text []byte) error {
name := string(text)
tmp, err := ParseProjectStatus(name)
if err != nil {
return err
}
*x = tmp
return nil
}
var errProjectStatusNilPtr = errors.New("value pointer is nil") // one per type for package clashes
// Scan implements the Scanner interface.
func (x *ProjectStatus) Scan(value interface{}) (err error) {
if value == nil {
*x = ProjectStatus(0)
return
}
// A wider range of scannable types.
// driver.Value values at the top of the list for expediency
switch v := value.(type) {
case int64:
*x = ProjectStatus(v)
case string:
*x, err = ParseProjectStatus(v)
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(v); verr == nil {
*x, err = ProjectStatus(val), nil
}
}
case []byte:
*x, err = ParseProjectStatus(string(v))
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(string(v)); verr == nil {
*x, err = ProjectStatus(val), nil
}
}
case ProjectStatus:
*x = v
case int:
*x = ProjectStatus(v)
case *ProjectStatus:
if v == nil {
return errProjectStatusNilPtr
}
*x = *v
case uint:
*x = ProjectStatus(v)
case uint64:
*x = ProjectStatus(v)
case *int:
if v == nil {
return errProjectStatusNilPtr
}
*x = ProjectStatus(*v)
case *int64:
if v == nil {
return errProjectStatusNilPtr
}
*x = ProjectStatus(*v)
case float64: // json marshals everything as a float64 if it's a number
*x = ProjectStatus(v)
case *float64: // json marshals everything as a float64 if it's a number
if v == nil {
return errProjectStatusNilPtr
}
*x = ProjectStatus(*v)
case *uint:
if v == nil {
return errProjectStatusNilPtr
}
*x = ProjectStatus(*v)
case *uint64:
if v == nil {
return errProjectStatusNilPtr
}
*x = ProjectStatus(*v)
case *string:
if v == nil {
return errProjectStatusNilPtr
}
*x, err = ParseProjectStatus(*v)
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(*v); verr == nil {
*x, err = ProjectStatus(val), nil
}
}
}
return
}
// Value implements the driver Valuer interface.
func (x ProjectStatus) Value() (driver.Value, error) {
return x.String(), nil
}
type NullProjectStatus struct {
ProjectStatus ProjectStatus
Valid bool
Set bool
}
func NewNullProjectStatus(val interface{}) (x NullProjectStatus) {
x.Scan(val) // yes, we ignore this error, it will just be an invalid value.
return
}
// Scan implements the Scanner interface.
func (x *NullProjectStatus) Scan(value interface{}) (err error) {
x.Set = true
if value == nil {
x.ProjectStatus, x.Valid = ProjectStatus(0), false
return
}
err = x.ProjectStatus.Scan(value)
x.Valid = (err == nil)
return
}
// Value implements the driver Valuer interface.
func (x NullProjectStatus) Value() (driver.Value, error) {
if !x.Valid {
return nil, nil
}
// driver.Value accepts int64 for int values.
return int64(x.ProjectStatus), nil
}
// MarshalJSON correctly serializes a NullProjectStatus to JSON.
func (n NullProjectStatus) MarshalJSON() ([]byte, error) {
const nullStr = "null"
if n.Valid {
return json.Marshal(n.ProjectStatus)
}
return []byte(nullStr), nil
}
// UnmarshalJSON correctly deserializes a NullProjectStatus from JSON.
func (n *NullProjectStatus) UnmarshalJSON(b []byte) error {
n.Set = true
var x interface{}
err := json.Unmarshal(b, &x)
if err != nil {
return err
}
err = n.Scan(x)
return err
}
type NullProjectStatusStr struct {
NullProjectStatus
}
func NewNullProjectStatusStr(val interface{}) (x NullProjectStatusStr) {
x.Scan(val) // yes, we ignore this error, it will just be an invalid value.
return
}
// Value implements the driver Valuer interface.
func (x NullProjectStatusStr) Value() (driver.Value, error) {
if !x.Valid {
return nil, nil
}
return x.ProjectStatus.String(), nil
}
// MarshalJSON correctly serializes a NullProjectStatus to JSON.
func (n NullProjectStatusStr) MarshalJSON() ([]byte, error) {
const nullStr = "null"
if n.Valid {
return json.Marshal(n.ProjectStatus)
}
return []byte(nullStr), nil
}
// UnmarshalJSON correctly deserializes a NullProjectStatus from JSON.
func (n *NullProjectStatusStr) UnmarshalJSON(b []byte) error {
n.Set = true
var x interface{}
err := json.Unmarshal(b, &x)
if err != nil {
return err
}
err = n.Scan(x)
return err
}