-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_change.pb.change.go
155 lines (136 loc) · 3.17 KB
/
user_change.pb.change.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
// Code generated by protoc-gen-goten-resource
// Resource change: UserChange
// DO NOT EDIT!!!
package user
import (
gotenresource "github.com/cloudwan/goten-sdk/runtime/resource"
)
// proto imports
import (
field_mask "google.golang.org/genproto/protobuf/field_mask"
)
// ensure the imports are used
var (
_ = new(gotenresource.ListQuery)
)
// make sure we're using proto imports
var (
_ = &field_mask.FieldMask{}
)
func (c *UserChange) IsAdd() bool {
if c == nil {
return false
}
_, ok := c.ChangeType.(*UserChange_Added_)
return ok
}
func (c *UserChange) IsModify() bool {
if c == nil {
return false
}
_, ok := c.ChangeType.(*UserChange_Modified_)
return ok
}
func (c *UserChange) IsCurrent() bool {
if c == nil {
return false
}
_, ok := c.ChangeType.(*UserChange_Current_)
return ok
}
func (c *UserChange) IsDelete() bool {
if c == nil {
return false
}
_, ok := c.ChangeType.(*UserChange_Removed_)
return ok
}
func (c *UserChange) GetCurrentViewIndex() int32 {
switch cType := c.ChangeType.(type) {
case *UserChange_Added_:
return cType.Added.ViewIndex
case *UserChange_Modified_:
return cType.Modified.ViewIndex
}
return 0
}
func (c *UserChange) GetPreviousViewIndex() int32 {
switch cType := c.ChangeType.(type) {
case *UserChange_Removed_:
return cType.Removed.ViewIndex
case *UserChange_Modified_:
return cType.Modified.PreviousViewIndex
}
return 0
}
func (c *UserChange) GetUser() *User {
if c == nil {
return nil
}
switch cType := c.ChangeType.(type) {
case *UserChange_Added_:
return cType.Added.User
case *UserChange_Modified_:
return cType.Modified.User
case *UserChange_Current_:
return cType.Current.User
case *UserChange_Removed_:
return nil
}
return nil
}
func (c *UserChange) GetRawResource() gotenresource.Resource {
return c.GetUser()
}
func (c *UserChange) GetUserName() *Name {
if c == nil {
return nil
}
switch cType := c.ChangeType.(type) {
case *UserChange_Added_:
return cType.Added.User.GetName()
case *UserChange_Modified_:
return cType.Modified.Name
case *UserChange_Current_:
return cType.Current.User.GetName()
case *UserChange_Removed_:
return cType.Removed.Name
}
return nil
}
func (c *UserChange) GetRawName() gotenresource.Name {
return c.GetUserName()
}
func (c *UserChange) SetAddedRaw(snapshot gotenresource.Resource, idx int) {
c.ChangeType = &UserChange_Added_{
Added: &UserChange_Added{
User: snapshot.(*User),
ViewIndex: int32(idx),
},
}
}
func (c *UserChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, newIdx int) {
c.ChangeType = &UserChange_Modified_{
Modified: &UserChange_Modified{
Name: name.(*Name),
User: snapshot.(*User),
PreviousViewIndex: int32(prevIdx),
ViewIndex: int32(newIdx),
},
}
}
func (c *UserChange) SetCurrentRaw(snapshot gotenresource.Resource) {
c.ChangeType = &UserChange_Current_{
Current: &UserChange_Current{
User: snapshot.(*User),
},
}
}
func (c *UserChange) SetDeletedRaw(name gotenresource.Name, idx int) {
c.ChangeType = &UserChange_Removed_{
Removed: &UserChange_Removed{
Name: name.(*Name),
ViewIndex: int32(idx),
},
}
}