-
Notifications
You must be signed in to change notification settings - Fork 2
/
EiffelSourceChangeCreatedEventV1.go
214 lines (181 loc) · 6.4 KB
/
EiffelSourceChangeCreatedEventV1.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
// Copyright Axis Communications AB.
//
// For a full list of individual contributors, please see the commit history.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// THIS FILE IS AUTOMATICALLY GENERATED AND MUST NOT BE EDITED BY HAND.
package eiffelevents
import (
"fmt"
"reflect"
"time"
"github.com/clarketm/json"
"github.com/google/uuid"
)
// NewSourceChangeCreatedV1 creates a new struct pointer that represents
// major version 1 of EiffelSourceChangeCreatedEvent.
// The returned struct has all required meta members populated.
// The event version is set to the most recent 1.x.x
// currently known by this SDK.
func NewSourceChangeCreatedV1(modifiers ...Modifier) (*SourceChangeCreatedV1, error) {
var event SourceChangeCreatedV1
event.Meta.Type = "EiffelSourceChangeCreatedEvent"
event.Meta.ID = uuid.NewString()
event.Meta.Version = eventTypeTable[event.Meta.Type][1].latestVersion
event.Meta.Time = time.Now().UnixMilli()
for _, modifier := range modifiers {
if err := modifier(&event); err != nil {
return nil, fmt.Errorf("error applying modifier to new SourceChangeCreatedV1: %w", err)
}
}
return &event, nil
}
// MarshalJSON returns the JSON encoding of the event.
func (e *SourceChangeCreatedV1) MarshalJSON() ([]byte, error) {
// The standard encoding/json package doesn't honor omitempty for
// non-pointer structs (it doesn't recurse into values, only examines
// the immediate value). This is a not terribly elegant way of making
// sure that this struct is marshaled by github.com/clarketm/json
// without the infinite loop we'd get by just passing the struct to
// github.com/clarketm/json.Marshal.
//
// Make sure the links slice is non-null so that non-initialized slices
// get serialized as "[]" instead of "null".
links := e.Links
if links == nil {
links = make(EventLinksV1, 0)
}
s := struct {
Data *SCCV1Data `json:"data"`
Links EventLinksV1 `json:"links"`
Meta *MetaV1 `json:"meta"`
}{
Data: &e.Data,
Links: links,
Meta: &e.Meta,
}
return json.Marshal(s)
}
func (e *SourceChangeCreatedV1) SetField(fieldName string, value interface{}) error {
return setField(reflect.ValueOf(e), fieldName, value)
}
// String returns the JSON encoding of the event.
func (e *SourceChangeCreatedV1) String() string {
b, err := e.MarshalJSON()
if err != nil {
// This should never happen, and if it does happen it's not clear that
// there's a reasonable way to recover. Returning an error message
// instead of the JSON string won't end well.
panic(err)
}
return string(b)
}
var (
_ CapabilityTeller = &SourceChangeCreatedV1{}
_ FieldSetter = &SourceChangeCreatedV1{}
_ MetaTeller = &SourceChangeCreatedV1{}
)
// ID returns the value of the meta.id field.
func (e SourceChangeCreatedV1) ID() string {
return e.Meta.ID
}
// Type returns the value of the meta.type field.
func (e SourceChangeCreatedV1) Type() string {
return e.Meta.Type
}
// Version returns the value of the meta.version field.
func (e SourceChangeCreatedV1) Version() string {
return e.Meta.Version
}
// Time returns the value of the meta.time field.
func (e SourceChangeCreatedV1) Time() int64 {
return e.Meta.Time
}
// DomainID returns the value of the meta.source.domainId field.
func (e SourceChangeCreatedV1) DomainID() string {
return e.Meta.Source.DomainID
}
// SupportsSigning returns true if the event supports signatures according
// to V3 of the meta field, i.e. events where the signature is found under
// meta.security.integrityProtection.
func (e SourceChangeCreatedV1) SupportsSigning() bool {
return false
}
type SourceChangeCreatedV1 struct {
// Mandatory fields
Data SCCV1Data `json:"data"`
Links EventLinksV1 `json:"links"`
Meta MetaV1 `json:"meta"`
// Optional fields
}
type SCCV1Data struct {
// Mandatory fields
// Optional fields
Author SCCV1DataAuthor `json:"author,omitempty"`
CcCompositeIdentifier SCCV1DataCcCompositeIdentifier `json:"ccCompositeIdentifier,omitempty"`
Change SCCV1DataChange `json:"change,omitempty"`
CustomData []CustomDataV1 `json:"customData,omitempty"`
GitIdentifier SCCV1DataGitIdentifier `json:"gitIdentifier,omitempty"`
HgIdentifier SCCV1DataHgIdentifier `json:"hgIdentifier,omitempty"`
Issues []interface{} `json:"issues,omitempty"`
SvnIdentifier SCCV1DataSvnIdentifier `json:"svnIdentifier,omitempty"`
}
type SCCV1DataAuthor struct {
// Mandatory fields
// Optional fields
Email string `json:"email,omitempty"`
Group string `json:"group,omitempty"`
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
}
type SCCV1DataCcCompositeIdentifier struct {
// Mandatory fields
Branch string `json:"branch"`
ConfigSpec string `json:"configSpec"`
Vobs []string `json:"vobs"`
// Optional fields
}
type SCCV1DataChange struct {
// Mandatory fields
// Optional fields
Deletions int64 `json:"deletions,omitempty"`
Details string `json:"details,omitempty"`
Files string `json:"files,omitempty"`
ID string `json:"id,omitempty"`
Insertions int64 `json:"insertions,omitempty"`
Tracker string `json:"tracker,omitempty"`
}
type SCCV1DataGitIdentifier struct {
// Mandatory fields
CommitID string `json:"commitId"`
RepoURI string `json:"repoUri"`
// Optional fields
Branch string `json:"branch,omitempty"`
RepoName string `json:"repoName,omitempty"`
}
type SCCV1DataHgIdentifier struct {
// Mandatory fields
CommitID string `json:"commitId"`
RepoURI string `json:"repoUri"`
// Optional fields
Branch string `json:"branch,omitempty"`
RepoName string `json:"repoName,omitempty"`
}
type SCCV1DataSvnIdentifier struct {
// Mandatory fields
Directory string `json:"directory"`
RepoURI string `json:"repoUri"`
Revision int64 `json:"revision"`
// Optional fields
RepoName string `json:"repoName,omitempty"`
}