protobufjs 6.8.8 → 6.8.9

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.
Files changed (104) hide show
  1. package/LICENSE +39 -39
  2. package/README.md +879 -879
  3. package/cli/LICENSE +33 -33
  4. package/cli/README.md +11 -11
  5. package/cli/index.d.ts +3 -3
  6. package/cli/index.js +3 -3
  7. package/cli/lib/tsd-jsdoc/LICENSE +20 -20
  8. package/cli/lib/tsd-jsdoc/README.md +23 -23
  9. package/cli/lib/tsd-jsdoc/plugin.js +21 -21
  10. package/cli/lib/tsd-jsdoc/publish.js +693 -693
  11. package/cli/lib/tsd-jsdoc.json +18 -18
  12. package/cli/package.standalone.json +31 -31
  13. package/cli/pbjs.d.ts +9 -9
  14. package/cli/pbjs.js +329 -329
  15. package/cli/pbts.d.ts +9 -9
  16. package/cli/pbts.js +197 -197
  17. package/cli/targets/json-module.js +38 -38
  18. package/cli/targets/json.js +8 -8
  19. package/cli/targets/proto.js +326 -326
  20. package/cli/targets/proto2.js +10 -10
  21. package/cli/targets/proto3.js +10 -10
  22. package/cli/targets/static-module.js +29 -29
  23. package/cli/targets/static.js +702 -702
  24. package/cli/util.js +183 -183
  25. package/cli/wrappers/amd.js +7 -7
  26. package/cli/wrappers/closure.js +7 -7
  27. package/cli/wrappers/commonjs.js +7 -7
  28. package/cli/wrappers/default.js +15 -15
  29. package/cli/wrappers/es6.js +5 -5
  30. package/dist/README.md +31 -31
  31. package/dist/light/README.md +31 -31
  32. package/dist/light/protobuf.js +6030 -6030
  33. package/dist/light/protobuf.js.map +1 -1
  34. package/dist/light/protobuf.min.js +1 -1
  35. package/dist/light/protobuf.min.js.map +1 -1
  36. package/dist/minimal/README.md +31 -31
  37. package/dist/minimal/protobuf.js +1876 -1876
  38. package/dist/minimal/protobuf.js.map +1 -1
  39. package/dist/minimal/protobuf.min.js +1 -1
  40. package/dist/minimal/protobuf.min.js.map +1 -1
  41. package/dist/protobuf.js +7595 -7595
  42. package/dist/protobuf.js.map +1 -1
  43. package/dist/protobuf.min.js +1 -1
  44. package/dist/protobuf.min.js.map +1 -1
  45. package/ext/debug/README.md +4 -4
  46. package/ext/debug/index.js +71 -71
  47. package/ext/descriptor/README.md +72 -72
  48. package/ext/descriptor/index.js +1052 -1052
  49. package/ext/descriptor/test.js +54 -54
  50. package/google/LICENSE +27 -27
  51. package/google/README.md +1 -1
  52. package/google/api/annotations.proto +10 -10
  53. package/google/protobuf/descriptor.proto +286 -286
  54. package/google/protobuf/source_context.proto +7 -7
  55. package/index.js +4 -4
  56. package/light.d.ts +2 -2
  57. package/light.js +3 -3
  58. package/minimal.d.ts +2 -2
  59. package/minimal.js +4 -4
  60. package/package-lock.json +1748 -642
  61. package/package.json +119 -122
  62. package/scripts/changelog.js +150 -150
  63. package/scripts/postinstall.js +35 -35
  64. package/src/common.js +399 -399
  65. package/src/converter.js +293 -293
  66. package/src/decoder.js +106 -106
  67. package/src/encoder.js +99 -99
  68. package/src/enum.js +181 -181
  69. package/src/field.js +371 -371
  70. package/src/index-light.js +104 -104
  71. package/src/index-minimal.js +36 -36
  72. package/src/index.js +12 -12
  73. package/src/mapfield.js +126 -126
  74. package/src/message.js +138 -138
  75. package/src/method.js +151 -151
  76. package/src/namespace.js +433 -433
  77. package/src/object.js +200 -200
  78. package/src/oneof.js +203 -203
  79. package/src/parse.js +758 -758
  80. package/src/reader.js +405 -405
  81. package/src/reader_buffer.js +44 -44
  82. package/src/root.js +351 -351
  83. package/src/roots.js +18 -18
  84. package/src/rpc/service.js +142 -142
  85. package/src/rpc.js +36 -36
  86. package/src/service.js +167 -167
  87. package/src/tokenize.js +397 -397
  88. package/src/type.js +589 -589
  89. package/src/types.js +196 -196
  90. package/src/typescript.jsdoc +15 -15
  91. package/src/util/longbits.js +200 -200
  92. package/src/util/minimal.js +414 -414
  93. package/src/util.js +178 -178
  94. package/src/verifier.js +176 -176
  95. package/src/wrappers.js +83 -83
  96. package/src/writer.js +459 -459
  97. package/src/writer_buffer.js +81 -81
  98. package/tsconfig.json +6 -6
  99. package/cli/node_modules/os-tmpdir/index.js +0 -25
  100. package/cli/node_modules/os-tmpdir/license +0 -21
  101. package/cli/node_modules/os-tmpdir/readme.md +0 -32
  102. package/cli/node_modules/tmp/LICENSE +0 -21
  103. package/cli/node_modules/tmp/README.md +0 -314
  104. package/cli/node_modules/tmp/lib/tmp.js +0 -611
@@ -1,200 +1,200 @@
1
- "use strict";
2
- module.exports = LongBits;
3
-
4
- var util = require("../util/minimal");
5
-
6
- /**
7
- * Constructs new long bits.
8
- * @classdesc Helper class for working with the low and high bits of a 64 bit value.
9
- * @memberof util
10
- * @constructor
11
- * @param {number} lo Low 32 bits, unsigned
12
- * @param {number} hi High 32 bits, unsigned
13
- */
14
- function LongBits(lo, hi) {
15
-
16
- // note that the casts below are theoretically unnecessary as of today, but older statically
17
- // generated converter code might still call the ctor with signed 32bits. kept for compat.
18
-
19
- /**
20
- * Low bits.
21
- * @type {number}
22
- */
23
- this.lo = lo >>> 0;
24
-
25
- /**
26
- * High bits.
27
- * @type {number}
28
- */
29
- this.hi = hi >>> 0;
30
- }
31
-
32
- /**
33
- * Zero bits.
34
- * @memberof util.LongBits
35
- * @type {util.LongBits}
36
- */
37
- var zero = LongBits.zero = new LongBits(0, 0);
38
-
39
- zero.toNumber = function() { return 0; };
40
- zero.zzEncode = zero.zzDecode = function() { return this; };
41
- zero.length = function() { return 1; };
42
-
43
- /**
44
- * Zero hash.
45
- * @memberof util.LongBits
46
- * @type {string}
47
- */
48
- var zeroHash = LongBits.zeroHash = "\0\0\0\0\0\0\0\0";
49
-
50
- /**
51
- * Constructs new long bits from the specified number.
52
- * @param {number} value Value
53
- * @returns {util.LongBits} Instance
54
- */
55
- LongBits.fromNumber = function fromNumber(value) {
56
- if (value === 0)
57
- return zero;
58
- var sign = value < 0;
59
- if (sign)
60
- value = -value;
61
- var lo = value >>> 0,
62
- hi = (value - lo) / 4294967296 >>> 0;
63
- if (sign) {
64
- hi = ~hi >>> 0;
65
- lo = ~lo >>> 0;
66
- if (++lo > 4294967295) {
67
- lo = 0;
68
- if (++hi > 4294967295)
69
- hi = 0;
70
- }
71
- }
72
- return new LongBits(lo, hi);
73
- };
74
-
75
- /**
76
- * Constructs new long bits from a number, long or string.
77
- * @param {Long|number|string} value Value
78
- * @returns {util.LongBits} Instance
79
- */
80
- LongBits.from = function from(value) {
81
- if (typeof value === "number")
82
- return LongBits.fromNumber(value);
83
- if (util.isString(value)) {
84
- /* istanbul ignore else */
85
- if (util.Long)
86
- value = util.Long.fromString(value);
87
- else
88
- return LongBits.fromNumber(parseInt(value, 10));
89
- }
90
- return value.low || value.high ? new LongBits(value.low >>> 0, value.high >>> 0) : zero;
91
- };
92
-
93
- /**
94
- * Converts this long bits to a possibly unsafe JavaScript number.
95
- * @param {boolean} [unsigned=false] Whether unsigned or not
96
- * @returns {number} Possibly unsafe number
97
- */
98
- LongBits.prototype.toNumber = function toNumber(unsigned) {
99
- if (!unsigned && this.hi >>> 31) {
100
- var lo = ~this.lo + 1 >>> 0,
101
- hi = ~this.hi >>> 0;
102
- if (!lo)
103
- hi = hi + 1 >>> 0;
104
- return -(lo + hi * 4294967296);
105
- }
106
- return this.lo + this.hi * 4294967296;
107
- };
108
-
109
- /**
110
- * Converts this long bits to a long.
111
- * @param {boolean} [unsigned=false] Whether unsigned or not
112
- * @returns {Long} Long
113
- */
114
- LongBits.prototype.toLong = function toLong(unsigned) {
115
- return util.Long
116
- ? new util.Long(this.lo | 0, this.hi | 0, Boolean(unsigned))
117
- /* istanbul ignore next */
118
- : { low: this.lo | 0, high: this.hi | 0, unsigned: Boolean(unsigned) };
119
- };
120
-
121
- var charCodeAt = String.prototype.charCodeAt;
122
-
123
- /**
124
- * Constructs new long bits from the specified 8 characters long hash.
125
- * @param {string} hash Hash
126
- * @returns {util.LongBits} Bits
127
- */
128
- LongBits.fromHash = function fromHash(hash) {
129
- if (hash === zeroHash)
130
- return zero;
131
- return new LongBits(
132
- ( charCodeAt.call(hash, 0)
133
- | charCodeAt.call(hash, 1) << 8
134
- | charCodeAt.call(hash, 2) << 16
135
- | charCodeAt.call(hash, 3) << 24) >>> 0
136
- ,
137
- ( charCodeAt.call(hash, 4)
138
- | charCodeAt.call(hash, 5) << 8
139
- | charCodeAt.call(hash, 6) << 16
140
- | charCodeAt.call(hash, 7) << 24) >>> 0
141
- );
142
- };
143
-
144
- /**
145
- * Converts this long bits to a 8 characters long hash.
146
- * @returns {string} Hash
147
- */
148
- LongBits.prototype.toHash = function toHash() {
149
- return String.fromCharCode(
150
- this.lo & 255,
151
- this.lo >>> 8 & 255,
152
- this.lo >>> 16 & 255,
153
- this.lo >>> 24 ,
154
- this.hi & 255,
155
- this.hi >>> 8 & 255,
156
- this.hi >>> 16 & 255,
157
- this.hi >>> 24
158
- );
159
- };
160
-
161
- /**
162
- * Zig-zag encodes this long bits.
163
- * @returns {util.LongBits} `this`
164
- */
165
- LongBits.prototype.zzEncode = function zzEncode() {
166
- var mask = this.hi >> 31;
167
- this.hi = ((this.hi << 1 | this.lo >>> 31) ^ mask) >>> 0;
168
- this.lo = ( this.lo << 1 ^ mask) >>> 0;
169
- return this;
170
- };
171
-
172
- /**
173
- * Zig-zag decodes this long bits.
174
- * @returns {util.LongBits} `this`
175
- */
176
- LongBits.prototype.zzDecode = function zzDecode() {
177
- var mask = -(this.lo & 1);
178
- this.lo = ((this.lo >>> 1 | this.hi << 31) ^ mask) >>> 0;
179
- this.hi = ( this.hi >>> 1 ^ mask) >>> 0;
180
- return this;
181
- };
182
-
183
- /**
184
- * Calculates the length of this longbits when encoded as a varint.
185
- * @returns {number} Length
186
- */
187
- LongBits.prototype.length = function length() {
188
- var part0 = this.lo,
189
- part1 = (this.lo >>> 28 | this.hi << 4) >>> 0,
190
- part2 = this.hi >>> 24;
191
- return part2 === 0
192
- ? part1 === 0
193
- ? part0 < 16384
194
- ? part0 < 128 ? 1 : 2
195
- : part0 < 2097152 ? 3 : 4
196
- : part1 < 16384
197
- ? part1 < 128 ? 5 : 6
198
- : part1 < 2097152 ? 7 : 8
199
- : part2 < 128 ? 9 : 10;
200
- };
1
+ "use strict";
2
+ module.exports = LongBits;
3
+
4
+ var util = require("../util/minimal");
5
+
6
+ /**
7
+ * Constructs new long bits.
8
+ * @classdesc Helper class for working with the low and high bits of a 64 bit value.
9
+ * @memberof util
10
+ * @constructor
11
+ * @param {number} lo Low 32 bits, unsigned
12
+ * @param {number} hi High 32 bits, unsigned
13
+ */
14
+ function LongBits(lo, hi) {
15
+
16
+ // note that the casts below are theoretically unnecessary as of today, but older statically
17
+ // generated converter code might still call the ctor with signed 32bits. kept for compat.
18
+
19
+ /**
20
+ * Low bits.
21
+ * @type {number}
22
+ */
23
+ this.lo = lo >>> 0;
24
+
25
+ /**
26
+ * High bits.
27
+ * @type {number}
28
+ */
29
+ this.hi = hi >>> 0;
30
+ }
31
+
32
+ /**
33
+ * Zero bits.
34
+ * @memberof util.LongBits
35
+ * @type {util.LongBits}
36
+ */
37
+ var zero = LongBits.zero = new LongBits(0, 0);
38
+
39
+ zero.toNumber = function() { return 0; };
40
+ zero.zzEncode = zero.zzDecode = function() { return this; };
41
+ zero.length = function() { return 1; };
42
+
43
+ /**
44
+ * Zero hash.
45
+ * @memberof util.LongBits
46
+ * @type {string}
47
+ */
48
+ var zeroHash = LongBits.zeroHash = "\0\0\0\0\0\0\0\0";
49
+
50
+ /**
51
+ * Constructs new long bits from the specified number.
52
+ * @param {number} value Value
53
+ * @returns {util.LongBits} Instance
54
+ */
55
+ LongBits.fromNumber = function fromNumber(value) {
56
+ if (value === 0)
57
+ return zero;
58
+ var sign = value < 0;
59
+ if (sign)
60
+ value = -value;
61
+ var lo = value >>> 0,
62
+ hi = (value - lo) / 4294967296 >>> 0;
63
+ if (sign) {
64
+ hi = ~hi >>> 0;
65
+ lo = ~lo >>> 0;
66
+ if (++lo > 4294967295) {
67
+ lo = 0;
68
+ if (++hi > 4294967295)
69
+ hi = 0;
70
+ }
71
+ }
72
+ return new LongBits(lo, hi);
73
+ };
74
+
75
+ /**
76
+ * Constructs new long bits from a number, long or string.
77
+ * @param {Long|number|string} value Value
78
+ * @returns {util.LongBits} Instance
79
+ */
80
+ LongBits.from = function from(value) {
81
+ if (typeof value === "number")
82
+ return LongBits.fromNumber(value);
83
+ if (util.isString(value)) {
84
+ /* istanbul ignore else */
85
+ if (util.Long)
86
+ value = util.Long.fromString(value);
87
+ else
88
+ return LongBits.fromNumber(parseInt(value, 10));
89
+ }
90
+ return value.low || value.high ? new LongBits(value.low >>> 0, value.high >>> 0) : zero;
91
+ };
92
+
93
+ /**
94
+ * Converts this long bits to a possibly unsafe JavaScript number.
95
+ * @param {boolean} [unsigned=false] Whether unsigned or not
96
+ * @returns {number} Possibly unsafe number
97
+ */
98
+ LongBits.prototype.toNumber = function toNumber(unsigned) {
99
+ if (!unsigned && this.hi >>> 31) {
100
+ var lo = ~this.lo + 1 >>> 0,
101
+ hi = ~this.hi >>> 0;
102
+ if (!lo)
103
+ hi = hi + 1 >>> 0;
104
+ return -(lo + hi * 4294967296);
105
+ }
106
+ return this.lo + this.hi * 4294967296;
107
+ };
108
+
109
+ /**
110
+ * Converts this long bits to a long.
111
+ * @param {boolean} [unsigned=false] Whether unsigned or not
112
+ * @returns {Long} Long
113
+ */
114
+ LongBits.prototype.toLong = function toLong(unsigned) {
115
+ return util.Long
116
+ ? new util.Long(this.lo | 0, this.hi | 0, Boolean(unsigned))
117
+ /* istanbul ignore next */
118
+ : { low: this.lo | 0, high: this.hi | 0, unsigned: Boolean(unsigned) };
119
+ };
120
+
121
+ var charCodeAt = String.prototype.charCodeAt;
122
+
123
+ /**
124
+ * Constructs new long bits from the specified 8 characters long hash.
125
+ * @param {string} hash Hash
126
+ * @returns {util.LongBits} Bits
127
+ */
128
+ LongBits.fromHash = function fromHash(hash) {
129
+ if (hash === zeroHash)
130
+ return zero;
131
+ return new LongBits(
132
+ ( charCodeAt.call(hash, 0)
133
+ | charCodeAt.call(hash, 1) << 8
134
+ | charCodeAt.call(hash, 2) << 16
135
+ | charCodeAt.call(hash, 3) << 24) >>> 0
136
+ ,
137
+ ( charCodeAt.call(hash, 4)
138
+ | charCodeAt.call(hash, 5) << 8
139
+ | charCodeAt.call(hash, 6) << 16
140
+ | charCodeAt.call(hash, 7) << 24) >>> 0
141
+ );
142
+ };
143
+
144
+ /**
145
+ * Converts this long bits to a 8 characters long hash.
146
+ * @returns {string} Hash
147
+ */
148
+ LongBits.prototype.toHash = function toHash() {
149
+ return String.fromCharCode(
150
+ this.lo & 255,
151
+ this.lo >>> 8 & 255,
152
+ this.lo >>> 16 & 255,
153
+ this.lo >>> 24 ,
154
+ this.hi & 255,
155
+ this.hi >>> 8 & 255,
156
+ this.hi >>> 16 & 255,
157
+ this.hi >>> 24
158
+ );
159
+ };
160
+
161
+ /**
162
+ * Zig-zag encodes this long bits.
163
+ * @returns {util.LongBits} `this`
164
+ */
165
+ LongBits.prototype.zzEncode = function zzEncode() {
166
+ var mask = this.hi >> 31;
167
+ this.hi = ((this.hi << 1 | this.lo >>> 31) ^ mask) >>> 0;
168
+ this.lo = ( this.lo << 1 ^ mask) >>> 0;
169
+ return this;
170
+ };
171
+
172
+ /**
173
+ * Zig-zag decodes this long bits.
174
+ * @returns {util.LongBits} `this`
175
+ */
176
+ LongBits.prototype.zzDecode = function zzDecode() {
177
+ var mask = -(this.lo & 1);
178
+ this.lo = ((this.lo >>> 1 | this.hi << 31) ^ mask) >>> 0;
179
+ this.hi = ( this.hi >>> 1 ^ mask) >>> 0;
180
+ return this;
181
+ };
182
+
183
+ /**
184
+ * Calculates the length of this longbits when encoded as a varint.
185
+ * @returns {number} Length
186
+ */
187
+ LongBits.prototype.length = function length() {
188
+ var part0 = this.lo,
189
+ part1 = (this.lo >>> 28 | this.hi << 4) >>> 0,
190
+ part2 = this.hi >>> 24;
191
+ return part2 === 0
192
+ ? part1 === 0
193
+ ? part0 < 16384
194
+ ? part0 < 128 ? 1 : 2
195
+ : part0 < 2097152 ? 3 : 4
196
+ : part1 < 16384
197
+ ? part1 < 128 ? 5 : 6
198
+ : part1 < 2097152 ? 7 : 8
199
+ : part2 < 128 ? 9 : 10;
200
+ };