Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 6 | #ifndef NDN_DATA_HPP |
Jeff Thompson | a0d18c9 | 2013-08-06 13:55:32 -0700 | [diff] [blame] | 7 | #define NDN_DATA_HPP |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 8 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 9 | #include "common.hpp" |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 10 | #include "name.hpp" |
| 11 | #include "publisher-public-key-digest.hpp" |
| 12 | #include "key.hpp" |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 13 | #include "c/data.h" |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 14 | |
| 15 | namespace ndn { |
| 16 | |
| 17 | class Signature { |
| 18 | public: |
| 19 | /** |
| 20 | * Set the signatureStruct to point to the values in this signature object, without copying any memory. |
| 21 | * WARNING: The resulting pointers in signatureStruct are invalid after a further use of this object which could reallocate memory. |
| 22 | * @param signatureStruct a C ndn_Signature struct where the name components array is already allocated. |
| 23 | */ |
| 24 | void get(struct ndn_Signature &signatureStruct) const; |
| 25 | |
| 26 | /** |
| 27 | * Clear this signature, and set the values by copying from the ndn_Signature struct. |
| 28 | * @param signatureStruct a C ndn_Signature struct |
| 29 | */ |
| 30 | void set(const struct ndn_Signature &signatureStruct); |
| 31 | |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 32 | const std::vector<unsigned char> &getDigestAlgorithm() const { return digestAlgorithm_; } |
| 33 | std::vector<unsigned char> &getDigestAlgorithm() { return digestAlgorithm_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 34 | |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 35 | const std::vector<unsigned char> &getWitness() const { return witness_; } |
| 36 | std::vector<unsigned char> &getWitness() { return witness_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 37 | |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 38 | const std::vector<unsigned char> &getSignature() const { return signature_; } |
| 39 | std::vector<unsigned char> &getSignature() { return signature_; } |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 40 | |
| 41 | void setDigestAlgorithm(const std::vector<unsigned char> &digestAlgorithm) { digestAlgorithm_ = digestAlgorithm; } |
| 42 | void setDigestAlgorithm(const unsigned char *digestAlgorithm, unsigned int digestAlgorithmLength) |
| 43 | { |
| 44 | setVector(digestAlgorithm_, digestAlgorithm, digestAlgorithmLength); |
| 45 | } |
| 46 | |
| 47 | void setWitness(const std::vector<unsigned char> &witness) { witness_ = witness; } |
| 48 | void setWitness(const unsigned char *witness, unsigned int witnessLength) |
| 49 | { |
| 50 | setVector(witness_, witness, witnessLength); |
| 51 | } |
| 52 | |
| 53 | void setSignature(const std::vector<unsigned char> &signature) { signature_ = signature; } |
| 54 | void setSignature(const unsigned char *signature, unsigned int signatureLength) |
| 55 | { |
| 56 | setVector(signature_, signature, signatureLength); |
| 57 | } |
| 58 | |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 59 | private: |
| 60 | std::vector<unsigned char> digestAlgorithm_; /**< if empty, the default is 2.16.840.1.101.3.4.2.1 (sha-256) */ |
| 61 | std::vector<unsigned char> witness_; |
| 62 | std::vector<unsigned char> signature_; |
| 63 | }; |
| 64 | |
| 65 | class SignedInfo { |
| 66 | public: |
| 67 | SignedInfo() |
| 68 | { |
| 69 | type_ = ndn_ContentType_DATA; |
| 70 | freshnessSeconds_ = -1; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Set the signedInfoStruct to point to the values in this signed info object, without copying any memory. |
| 75 | * WARNING: The resulting pointers in signedInfoStruct are invalid after a further use of this object which could reallocate memory. |
| 76 | * @param signedInfoStruct a C ndn_SignedInfo struct where the name components array is already allocated. |
| 77 | */ |
| 78 | void get(struct ndn_SignedInfo &signedInfoStruct) const; |
| 79 | |
| 80 | /** |
| 81 | * Clear this signed info, and set the values by copying from the ndn_SignedInfo struct. |
| 82 | * @param signedInfoStruct a C ndn_SignedInfo struct |
| 83 | */ |
| 84 | void set(const struct ndn_SignedInfo &signedInfoStruct); |
| 85 | |
| 86 | const PublisherPublicKeyDigest &getPublisherPublicKeyDigest() const { return publisherPublicKeyDigest_; } |
Jeff Thompson | ac1b0ac | 2013-08-08 20:09:39 -0700 | [diff] [blame] | 87 | PublisherPublicKeyDigest &getPublisherPublicKeyDigest() { return publisherPublicKeyDigest_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 88 | |
Jeff Thompson | 210b92f | 2013-07-11 15:16:03 -0700 | [diff] [blame] | 89 | double getTimestampMilliseconds() const { return timestampMilliseconds_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 90 | |
| 91 | int getType() const { return type_; } |
| 92 | |
| 93 | int getFreshnessSeconds() const { return freshnessSeconds_; } |
| 94 | |
| 95 | const std::vector<unsigned char> getFinalBlockID() const { return finalBlockID_; } |
Jeff Thompson | ac1b0ac | 2013-08-08 20:09:39 -0700 | [diff] [blame] | 96 | std::vector<unsigned char> getFinalBlockID() { return finalBlockID_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 97 | |
| 98 | const KeyLocator &getKeyLocator() const { return keyLocator_; } |
Jeff Thompson | ac1b0ac | 2013-08-08 20:09:39 -0700 | [diff] [blame] | 99 | KeyLocator &getKeyLocator() { return keyLocator_; } |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 100 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 101 | void setPublisherPublicKeyDigest(const PublisherPublicKeyDigest &publisherPublicKeyDigest) { publisherPublicKeyDigest_ = publisherPublicKeyDigest; } |
| 102 | |
| 103 | void setTimestampMilliseconds(double timestampMilliseconds) { timestampMilliseconds_ = timestampMilliseconds; } |
| 104 | |
| 105 | void setType(int type) { type_ = type; } |
| 106 | |
| 107 | void setFreshnessSeconds(int freshnessSeconds) { freshnessSeconds_ = freshnessSeconds; } |
| 108 | |
| 109 | void setFinalBlockID(const std::vector<unsigned char> &finalBlockID) { finalBlockID_ = finalBlockID; } |
| 110 | void setFinalBlockID(const unsigned char *finalBlockID, unsigned int finalBlockIdLength) |
| 111 | { |
| 112 | setVector(finalBlockID_, finalBlockID, finalBlockIdLength); |
| 113 | } |
| 114 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 115 | void setKeyLocator(const KeyLocator &keyLocator) { keyLocator_ = keyLocator; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 116 | |
| 117 | private: |
| 118 | PublisherPublicKeyDigest publisherPublicKeyDigest_; |
Jeff Thompson | 210b92f | 2013-07-11 15:16:03 -0700 | [diff] [blame] | 119 | double timestampMilliseconds_; /**< milliseconds since 1/1/1970. -1 for none */ |
| 120 | int type_; /**< default is ndn_ContentType_DATA. -1 for none */ |
| 121 | int freshnessSeconds_; /**< -1 for none */ |
| 122 | std::vector<unsigned char> finalBlockID_; /** size 0 for none */ |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 123 | KeyLocator keyLocator_; |
| 124 | }; |
| 125 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 126 | class Data { |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 127 | public: |
Jeff Thompson | f5dbd27 | 2013-08-08 16:49:55 -0700 | [diff] [blame] | 128 | Data() |
| 129 | { |
| 130 | } |
| 131 | |
| 132 | Data(const Name &name) |
| 133 | : name_(name) |
| 134 | { |
| 135 | } |
| 136 | |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 137 | ptr_lib::shared_ptr<std::vector<unsigned char> > wireEncode(WireFormat &wireFormat) const |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 138 | { |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 139 | return wireFormat.encodeData(*this); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 140 | } |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 141 | ptr_lib::shared_ptr<std::vector<unsigned char> > wireEncode() const |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 142 | { |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 143 | return wireEncode(*WireFormat::getDefaultWireFormat()); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 144 | } |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 145 | void wireDecode(const unsigned char *input, unsigned int inputLength, WireFormat &wireFormat) |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 146 | { |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 147 | wireFormat.decodeData(*this, input, inputLength); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 148 | } |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 149 | void wireDecode(const unsigned char *input, unsigned int inputLength) |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 150 | { |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 151 | wireDecode(input, inputLength, *WireFormat::getDefaultWireFormat()); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 152 | } |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 153 | void wireDecode(const std::vector<unsigned char> &input, WireFormat &wireFormat) |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 154 | { |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 155 | wireDecode(&input[0], input.size(), wireFormat); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 156 | } |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 157 | void wireDecode(const std::vector<unsigned char> &input) |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 158 | { |
Jeff Thompson | 67e9e0a | 2013-08-02 19:16:19 -0700 | [diff] [blame] | 159 | wireDecode(&input[0], input.size()); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /** |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 163 | * Set the dataStruct to point to the values in this interest, without copying any memory. |
| 164 | * WARNING: The resulting pointers in dataStruct are invalid after a further use of this object which could reallocate memory. |
| 165 | * @param dataStruct a C ndn_Data struct where the name components array is already allocated. |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 166 | */ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 167 | void get(struct ndn_Data &dataStruct) const; |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 168 | |
| 169 | /** |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 170 | * Clear this data object, and set the values by copying from the ndn_Data struct. |
| 171 | * @param dataStruct a C ndn_Data struct |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 172 | */ |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 173 | void set(const struct ndn_Data &dataStruct); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 174 | |
| 175 | const Signature &getSignature() const { return signature_; } |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 176 | Signature &getSignature() { return signature_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 177 | |
| 178 | const Name &getName() const { return name_; } |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 179 | Name &getName() { return name_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 180 | |
| 181 | const SignedInfo &getSignedInfo() const { return signedInfo_; } |
Jeff Thompson | 237fbc0 | 2013-08-08 20:33:21 -0700 | [diff] [blame] | 182 | SignedInfo &getSignedInfo() { return signedInfo_; } |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 183 | |
| 184 | const std::vector<unsigned char> getContent() const { return content_; } |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 185 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 186 | void setSignature(const Signature &signature) { signature_ = signature; } |
| 187 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 188 | void setName(const Name &name) { name_ = name; } |
| 189 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 190 | void setSignedInfo(const SignedInfo &signedInfo) { signedInfo_ = signedInfo; } |
| 191 | |
| 192 | void setContent(const std::vector<unsigned char> &content) { content_ = content; } |
| 193 | void setContent(const unsigned char *content, unsigned int contentLength) |
| 194 | { |
| 195 | setVector(content_, content, contentLength); |
| 196 | } |
Jeff Thompson | ac1b0ac | 2013-08-08 20:09:39 -0700 | [diff] [blame] | 197 | |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 198 | private: |
| 199 | Signature signature_; |
| 200 | Name name_; |
| 201 | SignedInfo signedInfo_; |
| 202 | std::vector<unsigned char> content_; |
| 203 | }; |
| 204 | |
| 205 | } |
| 206 | |
| 207 | #endif |