-
Notifications
You must be signed in to change notification settings - Fork 0
/
payload.go
244 lines (209 loc) · 6.92 KB
/
payload.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
package ocmf_go
const OcmfVersion = "0.4"
type MeterError string
const (
MeterNotPresent = MeterError("N")
MeterOk = MeterError("G")
MeterTimeout = MeterError("T")
MeterDisconnected = MeterError("D")
MeterRemoved = MeterError("R")
MeterManipulated = MeterError("M")
MeterExchanged = MeterError("X")
MeterIncompatible = MeterError("I")
MeterOutOfRange = MeterError("O")
MeterSubstitute = MeterError("S")
MeterOtherError = MeterError("E")
MeterReadError = MeterError("F")
)
func isValidMeterError(me MeterError) bool {
switch me {
case MeterNotPresent, MeterOk, MeterTimeout, MeterDisconnected, MeterRemoved, MeterManipulated,
MeterExchanged, MeterIncompatible, MeterOutOfRange, MeterSubstitute, MeterOtherError, MeterReadError:
return true
default:
return false
}
}
type UserAssignmentState string
const (
UserAssignmentStateNONE = UserAssignmentState("NONE")
UserAssignmentStateHearsay = UserAssignmentState("HEARSAY")
UserAssignmentStateTrusted = UserAssignmentState("TRUSTED")
UserAssignmentStateVerified = UserAssignmentState("VERIFIED")
UserAssignmentStateCertified = UserAssignmentState("CERTIFIED")
UserAssignmentStateSecure = UserAssignmentState("SECURE")
UserAssignmentStateMismatch = UserAssignmentState("MISMATCH")
UserAssignmentStateInvalid = UserAssignmentState("INVALID")
UserAssignmentStateOutdated = UserAssignmentState("OUTDATED")
UserAssignmentStateUnknown = UserAssignmentState("UNKNOWN")
)
func isValidUserAssignmentState(state UserAssignmentState) bool {
switch state {
case UserAssignmentStateNONE, UserAssignmentStateHearsay, UserAssignmentStateTrusted,
UserAssignmentStateVerified, UserAssignmentStateCertified, UserAssignmentStateSecure,
UserAssignmentStateMismatch, UserAssignmentStateInvalid, UserAssignmentStateOutdated,
UserAssignmentStateUnknown:
return true
default:
return false
}
}
type UserAssignmentType string
const ()
type ISO15118State string
const (
ISO15118None = ISO15118State("ISO15118_NONE")
ISO15118PlugAndCharge = ISO15118State("ISO15118_PNC")
)
func isValidISO15118State(state ISO15118State) bool {
switch state {
case ISO15118None, ISO15118PlugAndCharge:
return true
default:
return false
}
}
type OcppState string
const (
OcppNone = OcppState("OCPP_NONE")
OcppRemoteStart = OcppState("OCPP_RS")
OcppAuthorizeMethod = OcppState("OCPP_AUTH")
OcppRemoteStartTLS = OcppState("OCPP_RS_TLS")
OcppAuthorizeMethodTLS = OcppState("OCPP_AUTH_TLS")
OcppCache = OcppState("OCPP_CACHE")
OcppWhiteList = OcppState("OCPP_WHITELIST")
OcppCertified = OcppState("OCPP_CERTIFIED")
)
func isValidOcppState(state OcppState) bool {
switch state {
case OcppNone, OcppRemoteStart, OcppAuthorizeMethod,
OcppRemoteStartTLS, OcppAuthorizeMethodTLS,
OcppCache, OcppWhiteList, OcppCertified:
return true
default:
return false
}
}
type RfidState string
const (
RfidNone = RfidState("RFID_NONE")
RfidPlain = RfidState("RFID_PLAIN")
RfidRelated = RfidState("RFID_RELATED")
RfidPreSharedKey = RfidState("RFID_PSK")
)
func isValidRfidState(state RfidState) bool {
switch state {
case RfidNone, RfidPlain, RfidRelated, RfidPreSharedKey:
return true
default:
return false
}
}
type ChargePointAssignmentType string
const (
ChargePointAssignmentTypeEVSEID = ChargePointAssignmentType("EVSE_ID")
ChargePointAssignmentTypeCBIDC = ChargePointAssignmentType("CBIDC")
)
func isValidChargePointAssignmentType(t ChargePointAssignmentType) bool {
switch t {
case ChargePointAssignmentTypeEVSEID, ChargePointAssignmentTypeCBIDC:
return true
default:
return false
}
}
type TimeStatus string
const (
TimeStatusUnknown = TimeStatus("U")
TimeStatusInformative = TimeStatus("I")
TimeStatusSynchronized = TimeStatus("S")
TimeStatusRelative = TimeStatus("R")
)
func isValidTimeStatus(ts TimeStatus) bool {
switch ts {
case TimeStatusUnknown, TimeStatusInformative, TimeStatusSynchronized, TimeStatusRelative:
return true
default:
return false
}
}
type Units string
const (
UnitsWh = Units("Wh")
UnitskWh = Units("kWh")
UnitsMilliOhm = Units("mOhm")
UnitsMicroOhm = Units("uOhm")
)
func isValidUnit(u Units) bool {
switch u {
case UnitsWh, UnitskWh, UnitsMilliOhm, UnitsMicroOhm:
return true
default:
return false
}
}
type CurrentType string
const (
CurrentTypeAC = CurrentType("AC")
CurrentTypeDC = CurrentType("DC")
)
func isValidCurrentType(ct CurrentType) bool {
switch ct {
case CurrentTypeAC, CurrentTypeDC:
return true
default:
return false
}
}
type PayloadSection struct {
// General information
FormatVersion string `json:"FV,omitempty"`
GatewayID string `json:"GI,omitempty"`
GatewaySerial string `json:"GS,omitempty"`
GatewayVersion string `json:"GV,omitempty"`
// Pagination
Pagination string `json:"PG" validate:"required"`
// Meter identification
MeterVendor string `json:"MV,omitempty"`
MeterModel string `json:"MM,omitempty"`
MeterSerial string `json:"MS" validate:"required"`
MeterFirmware string `json:"MF,omitempty"`
// User assignment
IdentificationStatus bool `json:"IS"`
IdentificationLevel string `json:"IL,omitempty" validate:"omitempty,userAssignmentState"`
IdentificationFlags []string `json:"IF" validate:"omitempty,max=4"`
IdentificationType string `json:"IT" validate:"required,rfidState"`
IdentificationData string `json:"ID,omitempty" validate:"omitempty,hexadecimal"`
TariffText string `json:"TT,omitempty" validate:"omitempty,max=250"`
// EVSE metrologic parameters
LossCompensation LossCompensation `json:"LC,omitempty"`
// Assignment of the charge point
ChargeControllerVersion string `json:"CF,omitempty" validate:"omitempty,max=25"`
ChargePointIdentificationType string `json:"CT,omitempty" validate:"omitempty,chargePointAssignment"`
ChargePointIdentification string `json:"CI,omitempty"`
// Readings
Readings []Reading `json:"RD" validate:"required,dive"`
}
func (p *PayloadSection) Validate() error {
return messageValidator.Struct(p)
}
type LossCompensation struct {
Naming string `json:"LN"`
Identification int `json:"LI"`
CableResistance float64 `json:"LR"`
CableResistanceUnit string `json:"LU"`
}
type Reading struct {
Time string `json:"TM" validate:"required,iso8601"`
Transaction string `json:"TX,omitempty" validate:"omitempty,oneof=B C X E L R A P S T"`
ReadingValue float64 `json:"RV" validate:"required"`
ReadingIdentifier string `json:"RI,omitempty"`
ReadingUnit string `json:"RU" validate:"required,unit"`
ReadingType string `json:"RT,omitempty" validate:"omitempty,currentType"`
CumulatedLoss float64 `json:"CL,omitempty"`
ErrorFlags string `json:"EF,omitempty" validate:"omitempty,oneof=E t"`
Status string `json:"ST" validate:"required,meterError"`
}
func (r *Reading) Validate() error {
return messageValidator.Struct(r)
}