-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathtypes.ts
301 lines (245 loc) · 6.73 KB
/
types.ts
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
* SPDX-FileCopyrightText: © Hypermode Inc. <[email protected]>
* SPDX-License-Identifier: Apache-2.0
*/
import * as jspb from "google-protobuf"
import * as messages from "../generated/api_pb"
import { b64ToStr, isBase64, strToB64, strToJson, strToU8, u8ToStr } from "./util"
// Alter classes.
/**
* Payload represents the return value of an alter operation.
*/
export class Payload extends messages.Payload {
public getData(): any {
let jsonStr: string
const value = super.getData()
if (value instanceof Uint8Array) {
jsonStr = u8ToStr(value)
} else {
jsonStr = b64ToStr(value)
}
return strToJson(jsonStr)
}
public getData_asB64(): string {
const value = super.getData()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getData_asU8(): Uint8Array {
const value = super.getData()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setData(value: any): void {
if (value instanceof Uint8Array) {
super.setData(value)
return
}
if (typeof value === "string" || value instanceof String) {
super.setData(value.toString())
return
}
const jsonStr = JSON.stringify(value)
super.setData(strToU8(jsonStr))
}
}
export function createPayload(oldPayload: messages.Payload): Payload {
return messages.Payload.deserializeBinaryFromReader(
new Payload(),
new jspb.BinaryReader(oldPayload.serializeBinary()),
)
}
// Mutation and Query classes.
/**
* Response represents the return value of a mutation or query operations.
*/
export class Response extends messages.Response {
public getJson(): any {
let jsonStr: string
const value = super.getJson()
if (value instanceof Uint8Array) {
jsonStr = u8ToStr(value)
} else {
jsonStr = b64ToStr(value)
}
return strToJson(jsonStr)
}
public getJson_asB64(): string {
const value = super.getJson()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getJson_asU8(): Uint8Array {
const value = super.getJson()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setJson(value: any): void {
if (value instanceof Uint8Array) {
super.setJson(value)
return
}
if (typeof value === "string" || value instanceof String) {
super.setJson(value.toString())
return
}
const jsonStr = JSON.stringify(value)
super.setJson(strToU8(jsonStr))
}
}
export function createResponse(oldResponse: messages.Response): Response {
return messages.Response.deserializeBinaryFromReader(
new Response(),
new jspb.BinaryReader(oldResponse.serializeBinary()),
)
}
// Mutate classes.
/**
* Mutation represents the request value of a muatate operation.
*/
export class Mutation extends messages.Mutation {
public getSetJson(): any {
let jsonStr: string
const value = super.getSetJson()
if (value instanceof Uint8Array) {
jsonStr = u8ToStr(value)
} else {
jsonStr = b64ToStr(value)
}
return strToJson(jsonStr)
}
public getSetJson_asB64(): string {
const value = super.getSetJson()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getSetJson_asU8(): Uint8Array {
const value = super.getSetJson()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setSetJson(value: any): void {
if (value instanceof Uint8Array) {
super.setSetJson(value)
return
}
if (typeof value === "string" || value instanceof String) {
super.setSetJson(value.toString())
return
}
const jsonStr = JSON.stringify(value)
super.setSetJson(strToU8(jsonStr))
}
public getDeleteJson(): any {
let jsonStr: string
const value = super.getDeleteJson()
if (value instanceof Uint8Array) {
jsonStr = u8ToStr(value)
} else {
jsonStr = b64ToStr(value)
}
return strToJson(jsonStr)
}
public getDeleteJson_asB64(): string {
const value = super.getDeleteJson()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getDeleteJson_asU8(): Uint8Array {
const value = super.getDeleteJson()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setDeleteJson(value: any): void {
if (value instanceof Uint8Array) {
super.setDeleteJson(value)
return
}
if (typeof value === "string" || value instanceof String) {
super.setDeleteJson(value.toString())
return
}
const jsonStr = JSON.stringify(value)
super.setDeleteJson(strToU8(jsonStr))
}
public getSetNquads(): Uint8Array | string {
const value = super.getSetNquads()
if (value instanceof Uint8Array) {
return u8ToStr(value)
}
return b64ToStr(value)
}
public getSetNquads_asB64(): string {
const value = super.getSetNquads()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getSetNquads_asU8(): Uint8Array {
const value = super.getSetNquads()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setSetNquads(value: Uint8Array | string): void {
if (value instanceof Uint8Array) {
super.setSetNquads(value)
return
}
if (isBase64(value)) {
super.setSetNquads(value)
return
}
super.setSetNquads(strToB64(value))
}
public getDelNquads(): Uint8Array | string {
const value = super.getDelNquads()
if (value instanceof Uint8Array) {
return u8ToStr(value)
}
return b64ToStr(value)
}
public getDelNquads_asB64(): string {
const value = super.getDelNquads()
if (value instanceof Uint8Array) {
return jspb.Message.bytesAsB64(value)
}
return value
}
public getDelNquads_asU8(): Uint8Array {
const value = super.getDelNquads()
if (typeof value === "string" || value instanceof String) {
return jspb.Message.bytesAsU8(value.toString())
}
return value
}
public setDelNquads(value: Uint8Array | string): void {
if (value instanceof Uint8Array) {
super.setDelNquads(value)
return
}
if (isBase64(value)) {
super.setDelNquads(value)
return
}
super.setDelNquads(strToB64(value))
}
}