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 | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 6 | #ifndef NDN_WIREFORMAT_HPP |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 7 | #define NDN_WIREFORMAT_HPP |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 8 | |
Jeff Thompson | b0979fd | 2013-07-30 15:48:21 -0700 | [diff] [blame] | 9 | #include "../common.hpp" |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 10 | #include <vector> |
| 11 | |
| 12 | namespace ndn { |
| 13 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 14 | class Interest; |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 15 | class Data; |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 16 | |
| 17 | class WireFormat { |
| 18 | public: |
Jeff Thompson | b0979fd | 2013-07-30 15:48:21 -0700 | [diff] [blame] | 19 | virtual ptr_lib::shared_ptr<std::vector<unsigned char> > encodeInterest(const Interest &interest); |
Jeff Thompson | 4238071 | 2013-06-28 10:59:33 -0700 | [diff] [blame] | 20 | virtual void decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength); |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 21 | |
Jeff Thompson | c87f39a | 2013-08-12 11:55:11 -0700 | [diff] [blame] | 22 | /** |
| 23 | * Encode data and return the encoding. Your derived class should override. |
| 24 | * @param data The Data object to encode. |
| 25 | * @param signedFieldsBeginOffset Return the offset in the encoding of the beginning of the fields which are signed. |
| 26 | * If you are not encoding in order to sign, you can call encodeData(const Data &data) to ignore this returned value. |
| 27 | * @param signedFieldsEndOffset Return the offset in the encoding of the end of the fields which are signed. |
| 28 | * If you are not encoding in order to sign, you can call encodeData(const Data &data) to ignore this returned value. |
| 29 | * @return A shared_ptr with the vector<unsigned char> containing the encoding. |
| 30 | * @throw logic_error for unimplemented if the derived class does not override. |
| 31 | */ |
| 32 | virtual ptr_lib::shared_ptr<std::vector<unsigned char> > encodeData |
| 33 | (const Data &data, unsigned int *signedFieldsBeginOffset, unsigned int *signedFieldsEndOffset); |
| 34 | |
| 35 | /** |
| 36 | * Encode data and return the encoding. |
| 37 | * @param data The Data object to encode. |
| 38 | * @return A shared_ptr with the vector<unsigned char> containing the encoding. |
| 39 | * @throw logic_error for unimplemented if the derived class does not override. |
| 40 | */ |
| 41 | ptr_lib::shared_ptr<std::vector<unsigned char> > encodeData(const Data &data) |
| 42 | { |
| 43 | unsigned int dummyBeginOffset, dummyEndOffset; |
| 44 | return encodeData(data, &dummyBeginOffset, &dummyEndOffset); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Decode input as a data packet and set the fields in the data object. Your derived class should override. |
| 49 | * @param data The Data object whose fields are updated. |
| 50 | * @param input A pointer to the input buffer to decode. |
| 51 | * @param inputLength The number of bytes in input. |
| 52 | * @param signedFieldsBeginOffset Return the offset in the input buffer of the beginning of the fields which are signed. |
| 53 | * If you are not decoding in order to verify, you can call |
| 54 | * decodeData(Data &data, const unsigned char *input, unsigned int inputLength) to ignore this returned value. |
| 55 | * @param signedFieldsEndOffset Return the offset in the input buffer of the end of the fields which are signed. |
| 56 | * If you are not decoding in order to verify, you can call |
| 57 | * decodeData(Data &data, const unsigned char *input, unsigned int inputLength) to ignore this returned value. |
| 58 | * @throw logic_error for unimplemented if the derived class does not override. |
| 59 | */ |
| 60 | virtual void decodeData |
| 61 | (Data &data, const unsigned char *input, unsigned int inputLength, unsigned int *signedFieldsBeginOffset, unsigned int *signedFieldsEndOffset); |
| 62 | |
| 63 | void decodeData(Data &data, const unsigned char *input, unsigned int inputLength) |
| 64 | { |
| 65 | unsigned int dummyBeginOffset, dummyEndOffset; |
| 66 | decodeData(data, input, inputLength, &dummyBeginOffset, &dummyEndOffset); |
| 67 | } |
Jeff Thompson | fa181ac | 2013-08-02 19:00:51 -0700 | [diff] [blame] | 68 | |
| 69 | /** |
| 70 | * Set the static default WireFormat used by default encoding and decoding methods. |
Jeff Thompson | 72fd81d | 2013-08-20 12:34:51 -0700 | [diff] [blame^] | 71 | * @param wireFormat A Pointer to an object of a subclass of WireFormat. This does not make a copy and |
Jeff Thompson | fa181ac | 2013-08-02 19:00:51 -0700 | [diff] [blame] | 72 | * the caller must ensure that the object remains allocated. |
| 73 | */ |
| 74 | static void setDefaultWireFormat(WireFormat *wireFormat) |
| 75 | { |
| 76 | defaultWireFormat_ = wireFormat; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Return the default WireFormat used by default encoding and decoding methods which was set with |
| 81 | * setDefaultWireFormat. |
| 82 | * @return A pointer to the WireFormat object. |
| 83 | */ |
Jeff Thompson | 535f21a | 2013-08-05 18:25:46 -0700 | [diff] [blame] | 84 | static WireFormat *getDefaultWireFormat(); |
Jeff Thompson | fa181ac | 2013-08-02 19:00:51 -0700 | [diff] [blame] | 85 | |
| 86 | private: |
| 87 | /** |
| 88 | * This is implemented by only one of the subclasses of WireFormat to return a new object used |
| 89 | * as the initial value for the default WireFormat. If the application doesn't include that class, then the application |
| 90 | * needs to include another subclass which defines WireFormat::newInitialDefaultWireFormat. |
| 91 | * @return a new object, which is held by a shared_ptr and freed when the application exits. |
| 92 | */ |
| 93 | static WireFormat *newInitialDefaultWireFormat(); |
| 94 | |
Jeff Thompson | fa181ac | 2013-08-02 19:00:51 -0700 | [diff] [blame] | 95 | static WireFormat *defaultWireFormat_; |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | } |
| 99 | |
| 100 | #endif |
| 101 | |