@dcl/protocol 1.0.0-28974105118.commit-a598406 → 1.0.0-28980486989.commit-1e80e43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +188 -0
- package/out-js/decentraland/kernel/apis/restricted_actions.gen.d.ts +19 -0
- package/out-js/decentraland/kernel/apis/restricted_actions.gen.js +54 -1
- package/out-js/decentraland/kernel/apis/restricted_actions.gen.js.map +1 -1
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.d.ts +21 -0
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +124 -4
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/avatar_shape.gen.d.ts +8 -0
- package/out-js/decentraland/sdk/components/avatar_shape.gen.js +35 -1
- package/out-js/decentraland/sdk/components/avatar_shape.gen.js.map +1 -1
- package/out-ts/decentraland/kernel/apis/restricted_actions.gen.ts +56 -0
- package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +166 -2
- package/out-ts/decentraland/sdk/components/avatar_shape.gen.ts +34 -0
- package/package.json +9 -6
- package/proto/decentraland/common/options.proto +51 -0
- package/proto/decentraland/common/quantization_example.proto +164 -0
- package/proto/decentraland/kernel/apis/restricted_actions.proto +5 -0
- package/proto/decentraland/kernel/comms/rfc4/comms.proto +11 -0
- package/proto/decentraland/pulse/pulse_client.proto +79 -0
- package/proto/decentraland/pulse/pulse_server.proto +142 -0
- package/proto/decentraland/pulse/pulse_shared.proto +57 -0
- package/proto/decentraland/sdk/components/avatar_shape.proto +5 -0
- package/proto/decentraland/sdk/components/light_source.proto +1 -1
- package/proto/decentraland/sdk/components/virtual_camera.proto +2 -0
- package/protoc-gen-bitwise/generator_csharp.js +248 -0
- package/protoc-gen-bitwise/options.js +139 -0
- package/protoc-gen-bitwise/plugin.js +87 -0
- package/protoc-gen-bitwise/runtime/cs/BitReader.cs +112 -0
- package/protoc-gen-bitwise/runtime/cs/BitWriter.cs +117 -0
- package/protoc-gen-bitwise/runtime/cs/Quantize.cs +70 -0
- package/protoc-gen-bitwise/wire.js +239 -0
- package/proto/buf.yaml +0 -47
- package/proto/google/LICENSE +0 -27
- package/proto/google/README.md +0 -1
- package/proto/google/api/annotations.json +0 -83
- package/proto/google/api/annotations.proto +0 -11
- package/proto/google/api/http.json +0 -86
- package/proto/google/api/http.proto +0 -31
- package/proto/google/protobuf/api.json +0 -118
- package/proto/google/protobuf/api.proto +0 -34
- package/proto/google/protobuf/descriptor.json +0 -739
- package/proto/google/protobuf/descriptor.proto +0 -286
- package/proto/google/protobuf/source_context.json +0 -20
- package/proto/google/protobuf/source_context.proto +0 -7
- package/proto/google/protobuf/type.json +0 -202
- package/proto/google/protobuf/type.proto +0 -89
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* C# code generator for the protoc-gen-bitwise plugin.
|
|
5
|
+
*
|
|
6
|
+
* For every proto message that contains at least one uint32 field annotated
|
|
7
|
+
* with [(quantized)], this module emits a C# partial class that adds a computed
|
|
8
|
+
* float property named {FieldName}Quantized. The getter decodes the stored
|
|
9
|
+
* uint32 to a float; the setter encodes a float back to a uint32. Standard
|
|
10
|
+
* protobuf handles serialization of the uint32 wire field; this class adds a
|
|
11
|
+
* typed float accessor on top.
|
|
12
|
+
*
|
|
13
|
+
* Only uint32 fields are supported. bit_packed and unannotated fields are
|
|
14
|
+
* passed through without generating any accessor.
|
|
15
|
+
*
|
|
16
|
+
* Port of the original generator_csharp.py — output is intended to be
|
|
17
|
+
* byte-for-byte identical.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
const { getFieldOptions } = require('./options')
|
|
21
|
+
|
|
22
|
+
// FieldDescriptorProto type/label constants.
|
|
23
|
+
const TYPE_UINT32 = 13
|
|
24
|
+
const LABEL_REPEATED = 3
|
|
25
|
+
|
|
26
|
+
// ---------------------------------------------------------------------------
|
|
27
|
+
// Helpers
|
|
28
|
+
// ---------------------------------------------------------------------------
|
|
29
|
+
|
|
30
|
+
/** Mirrors Python str.capitalize(): upper-first, lowercase the rest. */
|
|
31
|
+
function capitalize(word) {
|
|
32
|
+
if (word.length === 0) return ''
|
|
33
|
+
return word[0].toUpperCase() + word.slice(1).toLowerCase()
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/** position_x -> PositionX */
|
|
37
|
+
function snakeToPascal(name) {
|
|
38
|
+
return name.split('_').map(capitalize).join('')
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/** decentraland.kernel.comms.v3 -> Decentraland.Kernel.Comms.V3 */
|
|
42
|
+
function packageToNamespace(pkg) {
|
|
43
|
+
if (!pkg) return 'Generated'
|
|
44
|
+
return pkg.split('.').map(capitalize).join('.')
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Format a number with C printf %g semantics at `precision` significant digits:
|
|
49
|
+
* shortest of fixed/scientific, with trailing zeros and a trailing dot removed.
|
|
50
|
+
* Reproduces Python's `f'{value:.{precision}g}'`.
|
|
51
|
+
*/
|
|
52
|
+
function formatG(value, precision) {
|
|
53
|
+
if (precision <= 0) precision = 1
|
|
54
|
+
if (value === 0) return '0'
|
|
55
|
+
if (!Number.isFinite(value)) return value > 0 ? 'inf' : 'nan'
|
|
56
|
+
|
|
57
|
+
const negative = value < 0
|
|
58
|
+
const v = Math.abs(value)
|
|
59
|
+
|
|
60
|
+
// Correctly-rounded scientific form yields the decimal exponent X (handling
|
|
61
|
+
// carry such as 9.999 -> 1.0e+1).
|
|
62
|
+
const sci = v.toExponential(precision - 1)
|
|
63
|
+
const eIdx = sci.indexOf('e')
|
|
64
|
+
const X = parseInt(sci.slice(eIdx + 1), 10)
|
|
65
|
+
|
|
66
|
+
let result
|
|
67
|
+
if (X >= -4 && X < precision) {
|
|
68
|
+
// Fixed notation with (precision - 1 - X) fraction digits.
|
|
69
|
+
const fractionDigits = precision - 1 - X
|
|
70
|
+
result = v.toFixed(fractionDigits >= 0 ? fractionDigits : 0)
|
|
71
|
+
if (result.indexOf('.') !== -1) {
|
|
72
|
+
result = result.replace(/0+$/, '').replace(/\.$/, '')
|
|
73
|
+
}
|
|
74
|
+
} else {
|
|
75
|
+
// Scientific notation; printf prints at least two exponent digits.
|
|
76
|
+
let mantissa = sci.slice(0, eIdx)
|
|
77
|
+
if (mantissa.indexOf('.') !== -1) {
|
|
78
|
+
mantissa = mantissa.replace(/0+$/, '').replace(/\.$/, '')
|
|
79
|
+
}
|
|
80
|
+
const expSign = X < 0 ? '-' : '+'
|
|
81
|
+
let expDigits = String(Math.abs(X))
|
|
82
|
+
if (expDigits.length < 2) expDigits = '0' + expDigits
|
|
83
|
+
result = mantissa + 'e' + expSign + expDigits
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
return (negative ? '-' : '') + result
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/** Format a value as a C# float literal (e.g. -100.0f). */
|
|
90
|
+
function formatFloat(value) {
|
|
91
|
+
let text = formatG(value, 8)
|
|
92
|
+
if (text.indexOf('.') === -1 && text.indexOf('e') === -1 && text.indexOf('E') === -1) {
|
|
93
|
+
text += '.0'
|
|
94
|
+
}
|
|
95
|
+
return text + 'f'
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/** Format a quantization step size for a doc comment (e.g. "≈ 0.003"). */
|
|
99
|
+
function formatStep(step) {
|
|
100
|
+
return '≈ ' + formatG(step, 6)
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// ---------------------------------------------------------------------------
|
|
104
|
+
// Per-message code generation
|
|
105
|
+
// ---------------------------------------------------------------------------
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Generate a C# partial class for a proto message, or null if it has no
|
|
109
|
+
* quantized uint32 fields. Returns an array of lines (no trailing newline).
|
|
110
|
+
*/
|
|
111
|
+
function generateMessage(msgProto, indent) {
|
|
112
|
+
const i = indent || ' '
|
|
113
|
+
const props = []
|
|
114
|
+
|
|
115
|
+
for (const field of msgProto.field) {
|
|
116
|
+
// Repeated/map fields are not supported.
|
|
117
|
+
if (field.label === LABEL_REPEATED) continue
|
|
118
|
+
// Only uint32 fields are candidates for quantized accessors.
|
|
119
|
+
if (field.type !== TYPE_UINT32) continue
|
|
120
|
+
|
|
121
|
+
const { quantized, quantizedPower } = getFieldOptions(field.optionsRaw)
|
|
122
|
+
const propName = snakeToPascal(field.name)
|
|
123
|
+
|
|
124
|
+
let doc, getExpr, setExpr, step, bits
|
|
125
|
+
if (quantized !== null) {
|
|
126
|
+
const mn = formatFloat(quantized.min)
|
|
127
|
+
const mx = formatFloat(quantized.max)
|
|
128
|
+
bits = quantized.bits
|
|
129
|
+
// Uniform quantizer — the step is constant across the whole range.
|
|
130
|
+
step = (quantized.max - quantized.min) / ((1 << bits) - 1)
|
|
131
|
+
doc = `Range [${mn}, ${mx}], ${bits} bits, step ${formatStep(step)}.`
|
|
132
|
+
getExpr = `Quantize.Decode(${propName}, ${mn}, ${mx}, ${bits})`
|
|
133
|
+
setExpr = `Quantize.Encode(value, ${mn}, ${mx}, ${bits})`
|
|
134
|
+
} else if (quantizedPower !== null) {
|
|
135
|
+
const mx = formatFloat(quantizedPower.max)
|
|
136
|
+
const pw = formatFloat(quantizedPower.pow)
|
|
137
|
+
bits = quantizedPower.bits
|
|
138
|
+
// Power curve is non-uniform: the finest step sits next to zero (first magnitude code),
|
|
139
|
+
// the COARSEST at the top of the range. The coarsest step upper-bounds the error for any
|
|
140
|
+
// value, so that's what the exposed {Name}QuantizedStep const carries (safe as a tolerance).
|
|
141
|
+
const magSteps = (1 << (bits - 1)) - 1
|
|
142
|
+
const nearZeroStep = quantizedPower.max * Math.pow(1 / magSteps, quantizedPower.pow)
|
|
143
|
+
step = quantizedPower.max * (1 - Math.pow((magSteps - 1) / magSteps, quantizedPower.pow))
|
|
144
|
+
doc =
|
|
145
|
+
`Range [-${mx}, ${mx}], power ${pw}, ${bits} bits ` +
|
|
146
|
+
`(sign + ${bits - 1}-bit magnitude), near-zero step ${formatStep(nearZeroStep)}.`
|
|
147
|
+
getExpr = `Quantize.DecodePower(${propName}, ${mx}, ${pw}, ${bits})`
|
|
148
|
+
setExpr = `Quantize.EncodePower(value, ${mx}, ${pw}, ${bits})`
|
|
149
|
+
} else {
|
|
150
|
+
continue
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Highest code the encoder can emit for this field. Both the linear quantizer (top code
|
|
154
|
+
// `2^bits - 1`) and the power quantizer (`(magnitude << 1) | sign` with an `bits-1`-bit
|
|
155
|
+
// magnitude, so top code `((2^(bits-1)-1) << 1) | 1 == 2^bits - 1`) share this bound.
|
|
156
|
+
const maxCode = 2 ** bits - 1
|
|
157
|
+
|
|
158
|
+
props.push({ propName, doc, getExpr, setExpr, step, maxCode })
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
if (props.length === 0) return null
|
|
162
|
+
|
|
163
|
+
const lines = []
|
|
164
|
+
lines.push(`public partial class ${msgProto.name}`)
|
|
165
|
+
lines.push('{')
|
|
166
|
+
|
|
167
|
+
// Decode on every get, encode on every set — no backing cache. The raw uint32 property is the
|
|
168
|
+
// single source of truth, so the float accessor can never disagree with the code on the wire
|
|
169
|
+
// (get-after-set returns the on-grid value a receiver decodes) and there is no stale-cache
|
|
170
|
+
// hazard when the raw field is mutated directly. Decode is a multiply-add; only power fields
|
|
171
|
+
// pay a MathF.Pow.
|
|
172
|
+
for (const { propName, doc, getExpr, setExpr, step } of props) {
|
|
173
|
+
lines.push(`${i}/// <summary>Coarsest quantization step of <see cref="${propName}Quantized"/>. Safe as an equality tolerance.</summary>`)
|
|
174
|
+
lines.push(`${i}public const float ${propName}QuantizedStep = ${formatFloat(step)};`)
|
|
175
|
+
lines.push(`${i}/// <summary>Float accessor for <see cref="${propName}"/>. ${doc}</summary>`)
|
|
176
|
+
lines.push(`${i}public float ${propName}Quantized`)
|
|
177
|
+
lines.push(`${i}{`)
|
|
178
|
+
lines.push(`${i}${i}get => ${getExpr};`)
|
|
179
|
+
lines.push(`${i}${i}set => ${propName} = ${setExpr};`)
|
|
180
|
+
lines.push(`${i}}`)
|
|
181
|
+
lines.push('')
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
lines.push(`${i}/// <summary>`)
|
|
185
|
+
lines.push(`${i}/// True when every quantized field holds a wire code within its declared bit width`)
|
|
186
|
+
lines.push(`${i}/// (<c>0 .. 2^bits-1</c>). The encoder never emits a code above this bound, so a larger`)
|
|
187
|
+
lines.push(`${i}/// value is a malformed/hostile message: decoding it would land far outside the field's`)
|
|
188
|
+
lines.push(`${i}/// <c>[min, max]</c> and, since the server relays raw codes verbatim, poison every observer.`)
|
|
189
|
+
lines.push(`${i}/// Reject before storing or relaying. Pure integer comparison — no decode.`)
|
|
190
|
+
lines.push(`${i}/// </summary>`)
|
|
191
|
+
lines.push(`${i}public bool AreQuantizedFieldsInRange() =>`)
|
|
192
|
+
props.forEach(({ propName, maxCode }, idx) => {
|
|
193
|
+
const prefix = idx === 0 ? '' : '&& '
|
|
194
|
+
const suffix = idx === props.length - 1 ? ';' : ''
|
|
195
|
+
lines.push(`${i}${i}${prefix}${propName} <= ${maxCode}u${suffix}`)
|
|
196
|
+
})
|
|
197
|
+
|
|
198
|
+
lines.push('}')
|
|
199
|
+
return lines
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// ---------------------------------------------------------------------------
|
|
203
|
+
// Per-file code generation (public entry point)
|
|
204
|
+
// ---------------------------------------------------------------------------
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Generate a C# source file for a FileDescriptorProto, or null if the file
|
|
208
|
+
* contains no quantized uint32 fields.
|
|
209
|
+
* @returns {{name: string, content: string} | null}
|
|
210
|
+
*/
|
|
211
|
+
function generateCsharp(fileProto) {
|
|
212
|
+
const namespace = packageToNamespace(fileProto.package)
|
|
213
|
+
|
|
214
|
+
const protoFile = fileProto.name.split('/').pop()
|
|
215
|
+
const stem = snakeToPascal(protoFile.replace('.proto', ''))
|
|
216
|
+
const outName = `${stem}.Bitwise.cs`
|
|
217
|
+
|
|
218
|
+
const header = [
|
|
219
|
+
'// <auto-generated>',
|
|
220
|
+
'// Generated by protoc-gen-bitwise. DO NOT EDIT.',
|
|
221
|
+
`// Source: ${fileProto.name}`,
|
|
222
|
+
'// </auto-generated>',
|
|
223
|
+
'',
|
|
224
|
+
'using Decentraland.Networking.Bitwise;',
|
|
225
|
+
'',
|
|
226
|
+
`namespace ${namespace}`,
|
|
227
|
+
'{',
|
|
228
|
+
]
|
|
229
|
+
const footer = ['', `} // namespace ${namespace}`]
|
|
230
|
+
|
|
231
|
+
const body = []
|
|
232
|
+
for (const msg of fileProto.messageType) {
|
|
233
|
+
const msgLines = generateMessage(msg)
|
|
234
|
+
if (msgLines === null) continue
|
|
235
|
+
// Indent each line by 4 spaces (inside the namespace block).
|
|
236
|
+
for (const line of msgLines) {
|
|
237
|
+
body.push(line ? ' ' + line : '')
|
|
238
|
+
}
|
|
239
|
+
body.push('')
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
if (body.length === 0) return null
|
|
243
|
+
|
|
244
|
+
const content = header.concat(body, footer).join('\n') + '\n'
|
|
245
|
+
return { name: outName, content }
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
module.exports = { generateCsharp }
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Parser for the custom bitwise field options defined in options.proto.
|
|
5
|
+
*
|
|
6
|
+
* The descriptor decoder hands us the raw serialized FieldOptions bytes (it
|
|
7
|
+
* declares `options` as opaque bytes). We walk those bytes looking for the
|
|
8
|
+
* custom extension field numbers — protobuf preserves unknown/unregistered
|
|
9
|
+
* extension bytes, so they are always present even though no runtime here knows
|
|
10
|
+
* the extension schema. This mirrors the original options_pb2.py.
|
|
11
|
+
*
|
|
12
|
+
* Wire format: tag = (field_number << 3) | wire_type
|
|
13
|
+
* wire_type 0 = varint, 1 = 64-bit, 2 = length-delimited, 5 = 32-bit
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
const { readVarint, skipField } = require('./wire')
|
|
17
|
+
|
|
18
|
+
// Extension field numbers as defined in options.proto.
|
|
19
|
+
const QUANTIZED_FIELD_NUMBER = 50001
|
|
20
|
+
const BIT_PACKED_FIELD_NUMBER = 50002
|
|
21
|
+
const QUANTIZED_POWER_FIELD_NUMBER = 50003
|
|
22
|
+
|
|
23
|
+
/** Parse a serialized QuantizedFloatOptions message: { min, max, bits }. */
|
|
24
|
+
function parseQuantized(data) {
|
|
25
|
+
const opts = { min: 0.0, max: 0.0, bits: 0 }
|
|
26
|
+
let pos = 0
|
|
27
|
+
while (pos < data.length) {
|
|
28
|
+
let tag
|
|
29
|
+
;[tag, pos] = readVarint(data, pos)
|
|
30
|
+
const fieldNum = tag >>> 3
|
|
31
|
+
const wireType = tag & 0x7
|
|
32
|
+
if (fieldNum === 1 && wireType === 5) {
|
|
33
|
+
// min (float)
|
|
34
|
+
opts.min = data.readFloatLE(pos)
|
|
35
|
+
pos += 4
|
|
36
|
+
} else if (fieldNum === 2 && wireType === 5) {
|
|
37
|
+
// max (float)
|
|
38
|
+
opts.max = data.readFloatLE(pos)
|
|
39
|
+
pos += 4
|
|
40
|
+
} else if (fieldNum === 3 && wireType === 0) {
|
|
41
|
+
// bits (uint32)
|
|
42
|
+
;[opts.bits, pos] = readVarint(data, pos)
|
|
43
|
+
} else {
|
|
44
|
+
pos = skipField(data, pos, wireType)
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return opts
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** Parse a serialized QuantizedPowerFloatOptions message: { max, pow, bits }. */
|
|
51
|
+
function parseQuantizedPower(data) {
|
|
52
|
+
const opts = { max: 0.0, pow: 0.0, bits: 0 }
|
|
53
|
+
let pos = 0
|
|
54
|
+
while (pos < data.length) {
|
|
55
|
+
let tag
|
|
56
|
+
;[tag, pos] = readVarint(data, pos)
|
|
57
|
+
const fieldNum = tag >>> 3
|
|
58
|
+
const wireType = tag & 0x7
|
|
59
|
+
if (fieldNum === 1 && wireType === 5) {
|
|
60
|
+
// max (float)
|
|
61
|
+
opts.max = data.readFloatLE(pos)
|
|
62
|
+
pos += 4
|
|
63
|
+
} else if (fieldNum === 2 && wireType === 5) {
|
|
64
|
+
// pow (float)
|
|
65
|
+
opts.pow = data.readFloatLE(pos)
|
|
66
|
+
pos += 4
|
|
67
|
+
} else if (fieldNum === 3 && wireType === 0) {
|
|
68
|
+
// bits (uint32)
|
|
69
|
+
;[opts.bits, pos] = readVarint(data, pos)
|
|
70
|
+
} else {
|
|
71
|
+
pos = skipField(data, pos, wireType)
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
return opts
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/** Parse a serialized BitPackedOptions message: { bits }. */
|
|
78
|
+
function parseBitPacked(data) {
|
|
79
|
+
const opts = { bits: 0 }
|
|
80
|
+
let pos = 0
|
|
81
|
+
while (pos < data.length) {
|
|
82
|
+
let tag
|
|
83
|
+
;[tag, pos] = readVarint(data, pos)
|
|
84
|
+
const fieldNum = tag >>> 3
|
|
85
|
+
const wireType = tag & 0x7
|
|
86
|
+
if (fieldNum === 1 && wireType === 0) {
|
|
87
|
+
// bits (uint32)
|
|
88
|
+
;[opts.bits, pos] = readVarint(data, pos)
|
|
89
|
+
} else {
|
|
90
|
+
pos = skipField(data, pos, wireType)
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
return opts
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Extract custom bitwise options from raw FieldOptions bytes.
|
|
98
|
+
*
|
|
99
|
+
* @param {Buffer|null} optionsRaw serialized FieldOptions, or null when unset.
|
|
100
|
+
* @returns {{quantized: object|null, bitPacked: object|null, quantizedPower: object|null}}
|
|
101
|
+
*/
|
|
102
|
+
function getFieldOptions(optionsRaw) {
|
|
103
|
+
if (!optionsRaw || optionsRaw.length === 0) {
|
|
104
|
+
return { quantized: null, bitPacked: null, quantizedPower: null }
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
let quantized = null
|
|
108
|
+
let bitPacked = null
|
|
109
|
+
let quantizedPower = null
|
|
110
|
+
let pos = 0
|
|
111
|
+
|
|
112
|
+
while (pos < optionsRaw.length) {
|
|
113
|
+
let tag
|
|
114
|
+
;[tag, pos] = readVarint(optionsRaw, pos)
|
|
115
|
+
const fieldNum = tag >>> 3
|
|
116
|
+
const wireType = tag & 0x7
|
|
117
|
+
|
|
118
|
+
if (wireType === 2) {
|
|
119
|
+
let len
|
|
120
|
+
;[len, pos] = readVarint(optionsRaw, pos)
|
|
121
|
+
const valueBytes = optionsRaw.subarray(pos, pos + len)
|
|
122
|
+
pos += len
|
|
123
|
+
if (fieldNum === QUANTIZED_FIELD_NUMBER) {
|
|
124
|
+
quantized = parseQuantized(valueBytes)
|
|
125
|
+
} else if (fieldNum === BIT_PACKED_FIELD_NUMBER) {
|
|
126
|
+
bitPacked = parseBitPacked(valueBytes)
|
|
127
|
+
} else if (fieldNum === QUANTIZED_POWER_FIELD_NUMBER) {
|
|
128
|
+
quantizedPower = parseQuantizedPower(valueBytes)
|
|
129
|
+
}
|
|
130
|
+
// else: unknown length-delimited field — already consumed.
|
|
131
|
+
} else {
|
|
132
|
+
pos = skipField(optionsRaw, pos, wireType)
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
return { quantized, bitPacked, quantizedPower }
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
module.exports = { getFieldOptions }
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
'use strict'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* protoc-gen-bitwise — protoc plugin that generates C# bitwise serialization code.
|
|
6
|
+
*
|
|
7
|
+
* Protocol:
|
|
8
|
+
* 1. protoc writes a serialised CodeGeneratorRequest to this process's stdin.
|
|
9
|
+
* 2. This plugin reads it, generates C# partial classes with float accessor
|
|
10
|
+
* properties for every message that carries [(quantized)] field annotations.
|
|
11
|
+
* 3. A serialised CodeGeneratorResponse is written to stdout.
|
|
12
|
+
*
|
|
13
|
+
* Implemented in plain Node with a self-contained protobuf wire codec (see
|
|
14
|
+
* wire.js) so it runs with only `node` on PATH — no npm install required, even
|
|
15
|
+
* when invoked directly from a sibling checkout.
|
|
16
|
+
*
|
|
17
|
+
* Usage (from project root):
|
|
18
|
+
* protoc \
|
|
19
|
+
* --proto_path=proto \
|
|
20
|
+
* --bitwise_out=generated/ \
|
|
21
|
+
* --plugin=protoc-gen-bitwise=protoc-gen-bitwise/plugin.js \
|
|
22
|
+
* proto/my_messages.proto
|
|
23
|
+
*
|
|
24
|
+
* On Windows, protoc needs an executable wrapper, e.g. a .cmd that runs:
|
|
25
|
+
* node "<path>\protoc-gen-bitwise\plugin.js" %*
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
const { decodeRequest, encodeResponse } = require('./wire')
|
|
29
|
+
const { generateCsharp } = require('./generator_csharp')
|
|
30
|
+
|
|
31
|
+
// CodeGeneratorResponse.Feature.FEATURE_PROTO3_OPTIONAL — advertised so protoc
|
|
32
|
+
// does not reject the plugin when the schema uses proto3 `optional` fields.
|
|
33
|
+
const FEATURE_PROTO3_OPTIONAL = 1
|
|
34
|
+
|
|
35
|
+
function readStdin() {
|
|
36
|
+
return new Promise((resolve, reject) => {
|
|
37
|
+
const chunks = []
|
|
38
|
+
process.stdin.on('data', (chunk) => chunks.push(chunk))
|
|
39
|
+
process.stdin.on('end', () => resolve(Buffer.concat(chunks)))
|
|
40
|
+
process.stdin.on('error', reject)
|
|
41
|
+
})
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
async function main() {
|
|
45
|
+
const requestBytes = await readStdin()
|
|
46
|
+
const request = decodeRequest(requestBytes)
|
|
47
|
+
|
|
48
|
+
// Lookup map for all file descriptors (parity with the Python plugin).
|
|
49
|
+
const fileByName = new Map()
|
|
50
|
+
for (const file of request.protoFile) fileByName.set(file.name, file)
|
|
51
|
+
|
|
52
|
+
const files = []
|
|
53
|
+
let error = null
|
|
54
|
+
|
|
55
|
+
for (const fileName of request.fileToGenerate) {
|
|
56
|
+
// Skip the options definition file itself — it has no messages to generate.
|
|
57
|
+
if (fileName === 'decentraland/common/options.proto') continue
|
|
58
|
+
|
|
59
|
+
const fileProto = fileByName.get(fileName)
|
|
60
|
+
if (!fileProto) continue
|
|
61
|
+
|
|
62
|
+
try {
|
|
63
|
+
const generated = generateCsharp(fileProto)
|
|
64
|
+
if (generated) files.push(generated)
|
|
65
|
+
} catch (exc) {
|
|
66
|
+
error = `protoc-gen-bitwise: error processing ${fileName}: ${exc && exc.message ? exc.message : exc}`
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const response = encodeResponse({
|
|
71
|
+
error,
|
|
72
|
+
supportedFeatures: FEATURE_PROTO3_OPTIONAL,
|
|
73
|
+
files,
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
// Let the write flush before the process exits (do not call process.exit()).
|
|
77
|
+
process.stdout.write(response)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
main().catch((exc) => {
|
|
81
|
+
const response = encodeResponse({
|
|
82
|
+
error: `protoc-gen-bitwise: ${exc && exc.stack ? exc.stack : exc}`,
|
|
83
|
+
supportedFeatures: FEATURE_PROTO3_OPTIONAL,
|
|
84
|
+
files: [],
|
|
85
|
+
})
|
|
86
|
+
process.stdout.write(response)
|
|
87
|
+
})
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
// Decentraland.Networking.Bitwise — BitReader
|
|
2
|
+
// Copy this file into your Unity project alongside generated *.Bitwise.cs files.
|
|
3
|
+
|
|
4
|
+
using System;
|
|
5
|
+
|
|
6
|
+
namespace Decentraland.Networking.Bitwise
|
|
7
|
+
{
|
|
8
|
+
/// <summary>
|
|
9
|
+
/// Reads bits from a byte buffer, MSB first within each byte (big-endian bit
|
|
10
|
+
/// order). Symmetric counterpart of <see cref="BitWriter"/>: every
|
|
11
|
+
/// Write… call has a corresponding Read… call with identical arguments that
|
|
12
|
+
/// reproduces the original value.
|
|
13
|
+
/// </summary>
|
|
14
|
+
public sealed class BitReader
|
|
15
|
+
{
|
|
16
|
+
private readonly byte[] _buffer;
|
|
17
|
+
private int _bitPos;
|
|
18
|
+
|
|
19
|
+
/// <param name="buffer">Source buffer filled by a <see cref="BitWriter"/>.</param>
|
|
20
|
+
public BitReader(byte[] buffer)
|
|
21
|
+
{
|
|
22
|
+
_buffer = buffer ?? throw new ArgumentNullException(nameof(buffer));
|
|
23
|
+
_bitPos = 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/// <summary>Current read position in bits.</summary>
|
|
27
|
+
public int BitPosition => _bitPos;
|
|
28
|
+
|
|
29
|
+
/// <summary>
|
|
30
|
+
/// Returns <c>true</c> when all written bits have been consumed
|
|
31
|
+
/// (i.e. <see cref="BitPosition"/> has reached the end of the buffer).
|
|
32
|
+
/// </summary>
|
|
33
|
+
public bool IsAtEnd => _bitPos >= _buffer.Length * 8;
|
|
34
|
+
|
|
35
|
+
// -----------------------------------------------------------------
|
|
36
|
+
// Core primitive
|
|
37
|
+
// -----------------------------------------------------------------
|
|
38
|
+
|
|
39
|
+
/// <summary>
|
|
40
|
+
/// Reads <paramref name="bits"/> bits and returns them as the
|
|
41
|
+
/// least-significant bits of a <see cref="uint"/>, MSB first.
|
|
42
|
+
/// </summary>
|
|
43
|
+
public uint ReadBits(int bits)
|
|
44
|
+
{
|
|
45
|
+
uint value = 0;
|
|
46
|
+
for (int i = bits - 1; i >= 0; i--)
|
|
47
|
+
{
|
|
48
|
+
int byteIdx = _bitPos / 8;
|
|
49
|
+
int bitIdx = 7 - (_bitPos % 8);
|
|
50
|
+
|
|
51
|
+
if ((_buffer[byteIdx] >> bitIdx & 1) == 1)
|
|
52
|
+
value |= 1u << i;
|
|
53
|
+
|
|
54
|
+
_bitPos++;
|
|
55
|
+
}
|
|
56
|
+
return value;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// -----------------------------------------------------------------
|
|
60
|
+
// Quantized float
|
|
61
|
+
// -----------------------------------------------------------------
|
|
62
|
+
|
|
63
|
+
/// <summary>
|
|
64
|
+
/// Reads a quantized float encoded with <see cref="BitWriter.WriteQuantizedFloat"/>.
|
|
65
|
+
/// Arguments must match those used during encoding exactly.
|
|
66
|
+
/// </summary>
|
|
67
|
+
public float ReadQuantizedFloat(float min, float max, int bits)
|
|
68
|
+
{
|
|
69
|
+
uint maxQ = (1u << bits) - 1;
|
|
70
|
+
uint quantized = ReadBits(bits);
|
|
71
|
+
float normalized = (float)quantized / maxQ;
|
|
72
|
+
return min + normalized * (max - min);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// -----------------------------------------------------------------
|
|
76
|
+
// Standard IEEE 754 helpers
|
|
77
|
+
// -----------------------------------------------------------------
|
|
78
|
+
|
|
79
|
+
/// <summary>Reads a 32-bit IEEE 754 float written by <see cref="BitWriter.WriteFloat"/>.</summary>
|
|
80
|
+
public float ReadFloat()
|
|
81
|
+
{
|
|
82
|
+
uint bits = ReadBits(32);
|
|
83
|
+
byte[] bytes =
|
|
84
|
+
{
|
|
85
|
+
(byte)(bits & 0xFF),
|
|
86
|
+
(byte)((bits >> 8) & 0xFF),
|
|
87
|
+
(byte)((bits >> 16) & 0xFF),
|
|
88
|
+
(byte)((bits >> 24) & 0xFF),
|
|
89
|
+
};
|
|
90
|
+
return BitConverter.ToSingle(bytes, 0);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/// <summary>Reads a 64-bit IEEE 754 double written by <see cref="BitWriter.WriteDouble"/>.</summary>
|
|
94
|
+
public double ReadDouble()
|
|
95
|
+
{
|
|
96
|
+
uint hi = ReadBits(32);
|
|
97
|
+
uint lo = ReadBits(32);
|
|
98
|
+
byte[] bytes =
|
|
99
|
+
{
|
|
100
|
+
(byte)(lo & 0xFF),
|
|
101
|
+
(byte)((lo >> 8) & 0xFF),
|
|
102
|
+
(byte)((lo >> 16) & 0xFF),
|
|
103
|
+
(byte)((lo >> 24) & 0xFF),
|
|
104
|
+
(byte)(hi & 0xFF),
|
|
105
|
+
(byte)((hi >> 8) & 0xFF),
|
|
106
|
+
(byte)((hi >> 16) & 0xFF),
|
|
107
|
+
(byte)((hi >> 24) & 0xFF),
|
|
108
|
+
};
|
|
109
|
+
return BitConverter.ToDouble(bytes, 0);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|