Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef NDN_BINARYXMLENCODER_H |
| 7 | #define NDN_BINARYXMLENCODER_H |
| 8 | |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 9 | #include "../errors.h" |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 10 | #include "../util/DynamicUCharArray.h" |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 11 | #include "BinaryXML.h" |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 12 | |
| 13 | #ifdef __cplusplus |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 17 | /** An ndn_BinaryXMLEncoder struct is used by all the encoding functions. You should initialize it with |
| 18 | * ndn_BinaryXMLEncoder_init. |
| 19 | */ |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 20 | struct ndn_BinaryXMLEncoder { |
| 21 | struct ndn_DynamicUCharArray output; /**< receives the encoded output */ |
| 22 | unsigned int offset; /**< the offset into output.array for the next encoding */ |
| 23 | }; |
| 24 | |
| 25 | /** |
| 26 | * Initialize an ndn_BinaryXMLEncoder_init struct with the arguments for initializing the ndn_DynamicUCharArray. |
| 27 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 28 | * @param outputArray the allocated array buffer to receive the encoding |
| 29 | * @param outputArrayLength the length of outputArray |
| 30 | * @param reallocFunction the realloc function used by ndn_DynamicUCharArray_ensureLength. If outputArrayLength |
| 31 | * is large enough to receive the entire encoding, this can be 0. |
| 32 | */ |
| 33 | static inline void ndn_BinaryXMLEncoder_init |
| 34 | (struct ndn_BinaryXMLEncoder *self, unsigned char *outputArray, unsigned int outputArrayLength, |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 35 | unsigned char * (*reallocFunction)(unsigned char *, unsigned int)) |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 36 | { |
| 37 | ndn_DynamicUCharArray_init(&self->output, outputArray, outputArrayLength, reallocFunction); |
| 38 | self->offset = 0; |
| 39 | } |
| 40 | |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 41 | /** |
| 42 | * Encode a header with the type and value and write it to self->output. |
| 43 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 44 | * @param type the header type |
| 45 | * @param value the header value |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 46 | * @return 0 for success, else an error code |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 47 | */ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 48 | ndn_Error ndn_BinaryXMLEncoder_encodeTypeAndValue(struct ndn_BinaryXMLEncoder *self, unsigned int type, unsigned int value); |
Jeff Thompson | 433e6da | 2013-07-01 15:09:00 -0700 | [diff] [blame] | 49 | |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 50 | /** |
| 51 | * Write an element start header using DTAG with the tag to self->output. |
| 52 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 53 | * @param tag the DTAG tag |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 54 | * @return 0 for success, else an error code |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 55 | */ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 56 | static inline ndn_Error ndn_BinaryXMLEncoder_writeElementStartDTag(struct ndn_BinaryXMLEncoder *self, unsigned int tag) |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 57 | { |
| 58 | return ndn_BinaryXMLEncoder_encodeTypeAndValue(self, ndn_BinaryXML_DTAG, tag); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Write an element close to self->output. |
| 63 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 64 | * @return 0 for success, else an error code |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 65 | */ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 66 | ndn_Error ndn_BinaryXMLEncoder_writeElementClose(struct ndn_BinaryXMLEncoder *self); |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
| 69 | * Write a BLOB header, then the bytes of the blob value to self->output. |
| 70 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 71 | * @param value an array of bytes for the blob value |
| 72 | * @param valueLength the length of the array |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 73 | * @return 0 for success, else an error code |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 74 | */ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 75 | ndn_Error ndn_BinaryXMLEncoder_writeBlob(struct ndn_BinaryXMLEncoder *self, unsigned char *value, unsigned int valueLength); |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 76 | |
| 77 | /** |
| 78 | * Write an element start header using DTAG with the tag to self->output, then the blob, then an element close. |
| 79 | * (If you want to just write the blob, use ndn_BinaryXMLEncoder_writeBlob .) |
| 80 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 81 | * @param tag the DTAG tag |
| 82 | * @param value an array of bytes for the blob value |
| 83 | * @param valueLength the length of the array |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 84 | * @return 0 for success, else an error code |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 85 | */ |
Jeff Thompson | 8b66600 | 2013-07-08 01:16:26 -0700 | [diff] [blame] | 86 | ndn_Error ndn_BinaryXMLEncoder_writeBlobDTagElement(struct ndn_BinaryXMLEncoder *self, unsigned int tag, unsigned char *value, unsigned int valueLength); |
Jeff Thompson | 5a98483 | 2013-07-01 19:28:27 -0700 | [diff] [blame] | 87 | |
Jeff Thompson | e227689 | 2013-07-08 02:44:18 -0700 | [diff] [blame] | 88 | /** |
Jeff Thompson | a8749a5 | 2013-07-11 11:48:05 -0700 | [diff] [blame^] | 89 | * If value or valueLen is 0, then do nothing, otherwise call ndn_BinaryXMLEncoder_writeBlobDTagElement. |
| 90 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 91 | * @param tag the DTAG tag |
| 92 | * @param value an array of bytes for the blob value |
| 93 | * @param valueLength the length of the array |
| 94 | * @return 0 for success, else an error code |
| 95 | */ |
| 96 | static inline ndn_Error ndn_BinaryXMLEncoder_writeOptionalBlobDTagElement |
| 97 | (struct ndn_BinaryXMLEncoder *self, unsigned int tag, unsigned char *value, unsigned int valueLength) |
| 98 | { |
| 99 | if (value && valueLength > 0) |
| 100 | return ndn_BinaryXMLEncoder_writeBlobDTagElement(self, tag, value, valueLength); |
| 101 | else |
| 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | /** |
Jeff Thompson | 5b696e0 | 2013-07-08 15:04:22 -0700 | [diff] [blame] | 106 | * Write a UDATA header, then the value as an unsigned decimal integer. |
Jeff Thompson | e227689 | 2013-07-08 02:44:18 -0700 | [diff] [blame] | 107 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 108 | * @param value the unsigned int |
| 109 | * @return 0 for success, else an error code |
| 110 | */ |
| 111 | ndn_Error ndn_BinaryXMLEncoder_writeUnsignedDecimalInt(struct ndn_BinaryXMLEncoder *self, unsigned int value); |
| 112 | |
Jeff Thompson | 5b696e0 | 2013-07-08 15:04:22 -0700 | [diff] [blame] | 113 | /** |
| 114 | * Write an element start header using DTAG with the tag to self->output, then the value as an unsigned decimal integer, |
| 115 | * then an element close. |
| 116 | * (If you want to just write the integer, use ndn_BinaryXMLEncoder_writeUnsignedDecimalInt .) |
| 117 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 118 | * @param tag the DTAG tag |
| 119 | * @param value the unsigned int |
| 120 | * @return 0 for success, else an error code |
| 121 | */ |
| 122 | ndn_Error ndn_BinaryXMLEncoder_writeUnsignedDecimalIntDTagElement(struct ndn_BinaryXMLEncoder *self, unsigned int tag, unsigned int value); |
| 123 | |
Jeff Thompson | a259cc4 | 2013-07-08 17:14:09 -0700 | [diff] [blame] | 124 | /** |
| 125 | * Write a BLOB header, then the value to self->output encoded as big endian. |
| 126 | * @param self pointer to the ndn_BinaryXMLEncoder struct |
| 127 | * @param value the unsigned int to encode as big endian. If value is 0, the big endian encoding has zero bytes. |
| 128 | * @return 0 for success, else an error code |
| 129 | */ |
| 130 | ndn_Error ndn_BinaryXMLEncoder_writeUnsignedIntBigEndianBlob(struct ndn_BinaryXMLEncoder *self, unsigned int value); |
| 131 | |
Jeff Thompson | c896365 | 2013-06-28 20:17:43 -0700 | [diff] [blame] | 132 | #ifdef __cplusplus |
| 133 | } |
| 134 | #endif |
| 135 | |
| 136 | #endif |
| 137 | |