This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenums.go
166 lines (146 loc) · 3.59 KB
/
enums.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
package main
import (
"encoding"
"fmt"
"strings"
)
type EnumData[T any] struct {
Value T
GoName string
Name string
Aliases []string
}
type ColumnID byte
const (
IgnoreID ColumnID = iota
DomainID
DateRequestedID
DateDecidedID
RequesterID
ReceiptsID
IsBlockedID
ReasonID
TagsID
)
var columnIDDataArray = [...]EnumData[ColumnID]{
{IgnoreID, "IgnoreID", "ignore", nil},
{DomainID, "DomainID", "domain", []string{"instance"}},
{DateRequestedID, "DateRequestedID", "date_requested", nil},
{DateDecidedID, "DateDecidedID", "date_decided", nil},
{RequesterID, "RequesterID", "requester", nil},
{ReceiptsID, "ReceiptsID", "receipts", nil},
{IsBlockedID, "IsBlockedID", "is_blocked", nil},
{ReasonID, "ReasonID", "reason", nil},
{TagsID, "TagsID", "tags", nil},
}
func (enum ColumnID) Data() EnumData[ColumnID] {
i := uint(enum)
j := uint(len(columnIDDataArray))
if i < j {
return columnIDDataArray[i]
}
goName := fmt.Sprintf("ColumnID(%d)", i)
name := fmt.Sprintf("column-id-%d", i)
return EnumData[ColumnID]{enum, goName, name, nil}
}
func (enum ColumnID) GoString() string {
return enum.Data().GoName
}
func (enum ColumnID) String() string {
return enum.Data().Name
}
func (enum ColumnID) MarshalText() ([]byte, error) {
str := enum.String()
return []byte(str), nil
}
func (enum *ColumnID) UnmarshalText(raw []byte) error {
str := string(raw)
for _, data := range columnIDDataArray {
if strings.EqualFold(str, data.Name) {
*enum = data.Value
return nil
}
for _, alias := range data.Aliases {
if strings.EqualFold(str, alias) {
*enum = data.Value
return nil
}
}
}
*enum = 0
return fmt.Errorf("unknown ColumnID enum value %q", str)
}
var (
_ encoding.TextMarshaler = ColumnID(0)
_ encoding.TextUnmarshaler = (*ColumnID)(nil)
)
type GIOType byte
const (
UnknownType GIOType = iota
TextType
ParagraphType
HTMLParagraphType
CheckboxType
MultipleChoiceType
NumberType
DateType
TimeType
LinkType
ImageType
AddressType
)
var gioColumnTypeDataArray = [...]EnumData[GIOType]{
{UnknownType, "UnknownType", "unknown", nil},
{TextType, "TextType", "text", nil},
{ParagraphType, "ParagraphType", "paragraph", nil},
{HTMLParagraphType, "HTMLParagraphType", "html_paragraph", nil},
{CheckboxType, "CheckboxType", "checkbox", nil},
{MultipleChoiceType, "MultipleChoiceType", "multiple_choice", []string{"multi_choice"}},
{NumberType, "NumberType", "number", nil},
{DateType, "DateType", "date", nil},
{TimeType, "TimeType", "time", nil},
{LinkType, "LinkType", "link", nil},
{ImageType, "ImageType", "image", nil},
{AddressType, "AddressType", "address", nil},
}
func (enum GIOType) Data() EnumData[GIOType] {
i := uint(enum)
j := uint(len(gioColumnTypeDataArray))
if i < j {
return gioColumnTypeDataArray[i]
}
goName := fmt.Sprintf("GIOType(%d)", i)
name := fmt.Sprintf("type-%d", i)
return EnumData[GIOType]{enum, goName, name, nil}
}
func (enum GIOType) GoString() string {
return enum.Data().GoName
}
func (enum GIOType) String() string {
return enum.Data().Name
}
func (enum GIOType) MarshalText() ([]byte, error) {
str := enum.String()
return []byte(str), nil
}
func (enum *GIOType) UnmarshalText(raw []byte) error {
str := string(raw)
for _, data := range gioColumnTypeDataArray {
if strings.EqualFold(str, data.Name) {
*enum = data.Value
return nil
}
for _, alias := range data.Aliases {
if strings.EqualFold(str, alias) {
*enum = data.Value
return nil
}
}
}
*enum = 0
return fmt.Errorf("unknown GIOType enum value %q", str)
}
var (
_ encoding.TextMarshaler = GIOType(0)
_ encoding.TextUnmarshaler = (*GIOType)(nil)
)