aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/algol/parc_Varint.h
blob: 6d7e60b845e5097172cabf0fc8eb7a6f0c0026b3 (plain)
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * 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.
 */

/**
 * @file parc_Varint.h
 * @ingroup datastructures
 * @brief A Variable Length Integer.
 *
 * A variable length integer.
 *
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
#ifndef libparc_parc_VarInt_h
#define libparc_parc_VarInt_h

#include <stdint.h>

#include <parc/algol/parc_Buffer.h>

/**
 * A variable length integer value.
 * <em>
 * This particular implementation is limited to a 64 bit value.
 * </em>
 */
struct parc_varint;
typedef struct parc_varint PARCVarint;


#define PARC_VARINT_INIT { 0 }

/**
 * Create a new instance of `PARCVarint`
 *
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_Create(void);

/**
 * Decode an instance of {@link PARCBuffer} of length @p length into a new instance of `PARCVarInt`
 *
 * @param [in] buffer A pointer to a `PARCBuffer`.
 * @param [in] length The number of bytes to decode.
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode */
PARCVarint *parcVarint_DecodeBuffer(PARCBuffer *buffer, size_t length);

/**
 * Decode an instance of {@link PARCBuffer} of length @p length into a new instance of `PARCVarInt`
 *
 * @param [in] buffer A pointer to a `PARCBuffer`.
 * @param [in] length The number of bytes to decode.
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_DecodeElasticByteBuffer(const PARCBuffer *buffer, size_t length);

/**
 * Create a new `PARCVarint` from bytes in a {@link PARCBuffer}.
 *
 * @param [in] buffer A pointer to a `PARCBuffer`.
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_FromElasticByteBuffer(const PARCBuffer *buffer);

/**
 * Create a `PARCVarint` with the value decoded from the given {@link PARCBuffer}
 * containing a UTF-8 string encoded number.
 *
 * @param [in] buffer A pointer to a `PARCBuffer` containing a UTF-8 string encoded number.
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_FromUTF8Buffer(PARCBuffer *buffer);

/**
 * Create a `PARCVarint` with the value decoded from the given {@link PARCBuffer}
 * containing a UTF-8 string encoded number.
 *
 * @param [in] buffer A pointer to a `PARCBuffer` containing a UTF-8 string encoded number.
 * @return A `PARCVarint` pointer, which must be deallocated via {@link parcVarint_Destroy()}.
 *
 */
PARCVarint *parcVarint_FromUTF8ByteBuffer(const PARCBuffer *buffer);


extern PARCVarint *parcVarint_FromUint8(uint8_t uint);

extern PARCVarint *parcVarint_FromUint32(uint32_t uint);

extern PARCVarint *parcVarint_FromUint64(uint64_t uint);

extern PARCVarint *parcVarint_ShiftLeft(PARCVarint *varint, int bits);

extern PARCVarint *parcVarint_ShiftRight(PARCVarint *varint, int bits);

extern PARCVarint *parcVarint_And(PARCVarint *varint, PARCVarint *operand);

extern PARCVarint *parcVarint_AndUint8(PARCVarint *varint, uint8_t operand);

extern PARCVarint *parcVarint_AndUint16(PARCVarint *varint, uint16_t operand);

extern PARCVarint *parcVarint_AndUint32(PARCVarint *varint, uint32_t operand);

extern PARCVarint *parcVarint_AndUint64(PARCVarint *varint, uint64_t operand);

extern PARCVarint *parcVarint_Or(PARCVarint *varint, PARCVarint *operand);

extern PARCVarint *parcVarint_OrUint8(PARCVarint *varint, uint8_t operand);

extern PARCVarint *parcVarint_OrUint16(PARCVarint *varint, uint16_t operand);

extern PARCVarint *parcVarint_OrUint32(PARCVarint *varint, uint32_t operand);

extern PARCVarint *parcVarint_OrUint64(PARCVarint *varint, uint64_t operand);

/**
 * Determine if two `PARCVarint` instances are equal.
 *
 * The following equivalence relations on non-null `PARCVarint` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCVarint_Equals(x, x)`
 *      must return true.
 *
 *  * It is symmetric: for any non-null reference values x and y,
 *    `parcVarint_Equals(x, y)` must return true if and only if
 *        `parcVarint_Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcVarint_Equals(x, y)` returns true and
 *        `parcVarint_Equals(y, z)` returns true,
 *        then  `parcVarint_Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcVarint_Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcVarint_Equals(x, NULL)` must
 *      return false.
 *
 * @param varint A pointer to a `PARCVarint` instance.
 * @param operand A pointer to a `PARCVarint` instance.
 * @return true if the two `PARCVarint` instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCVarint *a = parcVarint_Create();
 *    PARCVarint *b = parcVarint_Create();
 *
 *    if (parcVarint_Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */

extern int parcVarint_Equals(PARCVarint *varint, PARCVarint *operand);

/**
 * Determine if a `PARCVarint` instance is equal to a 64bit integer.
 *
 * The following equivalence relations on non-null `PARCVarint` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCVarint_Uint64Equals(x, x)`
 *      must return true.
 *
 *  * It is NOT symmetric: for any non-null reference values x and y,
 *    `parcVarint_Uint64Equals(x, y)` may not return true even if
 *        `parcVarint_Uint64Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcVarint_Uint64Equals(x, y)` returns true and
 *        `parcVarint_Uint64Equals(y, z)` returns true,
 *        then  `parcVarint_Uint64Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcVarint_Uint64Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcVarint_Uint64Equals(x, NULL)` must
 *      return false.
 *
 * @param [in] varint A pointer to a `PARCVarint` instance.
 * @param [in] value A pointer to a `uint64_t` instance.
 * @return true if the two instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCVarint *a = parcVarint_Create();
 *    uint64_t *b = 10; // some integer value
 *
 *    if (parcVarint_Uint64Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */
extern int parcVarint_EqualsUint64(PARCVarint *varint, uint64_t value);

/**
 * Determine if a `PARCVarint` instance is equal to a 32 bit integer.
 *
 * The following equivalence relations on non-null `PARCVarint` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCVarint_Uint32Equals(x, x)`
 *      must return true.
 *
 *  * It is NOT symmetric: for any non-null reference values x and y,
 *    `parcVarint_Uint32Equals(x, y)` may not return true even if
 *        `parcVarint_Uint32Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcVarint_Uint32Equals(x, y)` returns true and
 *        `parcVarint_Uint32Equals(y, z)` returns true,
 *        then  `parcVarint_Uint32Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcVarint_Uint32Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcVarint_Uint32Equals(x, NULL)` must
 *      return false.
 *
 * @param [in] varint A pointer to a `PARCVarint` instance.
 * @param [in] value A pointer to a `uint32_t` instance.
 * @return true if the two instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCVarint *a = parcVarint_Create();
 *    uint32_t *b = 10; // some integer value
 *
 *    if (parcVarint_Uint32Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */
extern int parcVarint_EqualsUint32(PARCVarint *varint, uint32_t value);

/**
 * Determine if a `PARCVarint` instance is equal to a 16 bit integer.
 *
 * The following equivalence relations on non-null `PARCVarint` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCVarint_Uint16Equals(x, x)`
 *      must return true.
 *
 *  * It is NOT symmetric: for any non-null reference values x and y,
 *    `parcVarint_Uint16Equals(x, y)` may not return true even if
 *        `parcVarint_Uint16Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcVarint_Uint16Equals(x, y)` returns true and
 *        `parcVarint_Uint16Equals(y, z)` returns true,
 *        then  `parcVarint_Uint16Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcVarint_Uint16Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcVarint_Uint16Equals(x, NULL)` must
 *      return false.
 *
 * @param [in] varint A pointer to a `PARCVarint` instance.
 * @param [in] value A pointer to a `uint16_t` instance.
 * @return true if the two instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCVarint *a = parcVarint_Create();
 *    uint16_t *b = 10; // some integer value
 *
 *    if (parcVarint_Uint16Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */
extern int parcVarint_EqualsUint16(PARCVarint *varint, uint16_t value);

/**
 * Determine if a `PARCVarint` instance is equal to an 8 bit integer.
 *
 * The following equivalence relations on non-null `PARCVarint` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCVarint_Uint8Equals(x, x)`
 *      must return true.
 *
 *  * It is NOT symmetric: for any non-null reference values x and y,
 *    `parcVarint_Uint8Equals(x, y)` may not return true even if
 *        `parcVarint_Uint8Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcVarint_Uint8Equals(x, y)` returns true and
 *        `parcVarint_Uint8Equals(y, z)` returns true,
 *        then  `parcVarint_Uint8Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcVarint_Uint8Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcVarint_Uint8Equals(x, NULL)` must
 *      return false.
 *
 * @param [in] varint A pointer to a `PARCVarint` instance.
 * @param [in] value A pointer to a `uint8_t` instance.
 * @return true if the two instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCVarint *a = parcVarint_Create();
 *    uint8_t *b = 10; // some integer value
 *
 *    if (parcVarint_Uint8Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */
extern int parcVarint_EqualsUint8(PARCVarint *varint, uint8_t value);

extern void parcVarint_Destroy(PARCVarint **varintP);

extern char *parcVarint_ToString(char **string, PARCVarint *varint);

extern uint8_t parcVarint_AsUint8(const PARCVarint *varint);

extern uint16_t parcVarint_AsUint16(const PARCVarint *varint);

extern uint32_t parcVarint_AsUint32(const PARCVarint *varint);

/**
 * Produce the 16 low-order bits of this `PARCVarint` as a `uint8_t`.
 *
 * @param [in] varint The inpu instance of `PARCVarint`
 * @return The 16 low-order bits as a `uint8_t`
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
uint64_t parcVarint_AsUint64(const PARCVarint *varint);

/**
 * Return the value of the given `PARCVarint` cast as a `size_t`
 *
 * @param [in] varint The `PARCVarint` to cast as a `size_t`
 *
 * @return The given `PARCVarint` cast as a `size_t`
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
size_t parcVarint_AsSize(const PARCVarint *varint);

/**
 * Set the value of the given `PARCVarint` to the given value.
 *
 * @param [in,out] varint The `PARCVarint` to be modified
 * @param [in] newValue The new value for the `PARCVarint`
 * @return The modified `PARCVarint`.
 */
PARCVarint *parcVarint_Set(PARCVarint *varint, uint64_t newValue);

/**
 * Multiply the `PARCVarint`
 *
 * @param [in,out] varint The `PARCVarint` to be multiplied by the @p multiplicand
 * @param [in] multiplicand The multiplicand to multiply by
 * @return The `PARCVarint` used as input.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_Multiply(PARCVarint *varint, int multiplicand);

/**
 * Divide the `PARCVarint` by a divisor
 *
 * @param [in,out] varint The `PARCVarint` to be divided by the @p divisor
 * @param [in] divisor The divisor to use
 * @return The `PARCVarint` used as input.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_Divide(PARCVarint *varint, int divisor);
/**
 * Multiply the `PARCVarint`
 *
 * @param [in,out] varint The `PARCVarint` to which the @p addend should be added
 * @param [in] addend The number to add to the `PARCVarint`
 * @return The `PARCVarint` used as input.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_Add(PARCVarint *varint, int addend);

/**
 * Subtract the @p subtrahend from the `PARCVarint`.
 *
 * @param [in,out] varint The `PARCVarint` from which to subtract the @p subtrahend
 * @param [in] subtrahend The number to subtract from the  `PARCVarint`
 * @return The `PARCVarint` used as input.
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
PARCVarint *parcVarint_Subtract(PARCVarint *varint, int subtrahend);
#endif // libparc_parc_VarInt_h