Utility class to fetch latest version of the segmented data. More...
#include <segment-fetcher.hpp>
Public Types | |
typedef function< void(const ConstBufferPtr &data)> | CompleteCallback |
typedef function< void(uint32_t code, const std::string &msg)> | ErrorCallback |
enum | ErrorCode { INTEREST_TIMEOUT = 1, DATA_HAS_NO_SEGMENT = 2, SEGMENT_VALIDATION_FAIL = 3, NACK_ERROR = 4 } |
Error codes that can be passed to ErrorCallback. More... | |
Static Public Member Functions | |
static void | fetch (Face &face, const Interest &baseInterest, security::v2::Validator &validator, const CompleteCallback &completeCallback, const ErrorCallback &errorCallback) |
Initiate segment fetching. More... | |
static void | fetch (Face &face, const Interest &baseInterest, shared_ptr< security::v2::Validator > validator, const CompleteCallback &completeCallback, const ErrorCallback &errorCallback) |
Initiate segment fetching. More... | |
Static Public Attributes | |
static const uint32_t | MAX_INTEREST_REEXPRESS = 3 |
Maximum number of times an interest will be reexpressed incase of NackCallback. More... | |
Utility class to fetch latest version of the segmented data.
SegmentFetcher assumes that the data is named /<prefix>/<version>/<segment>
, where:
<prefix>
is the specified prefix,<version>
is an unknown version that needs to be discovered, and<segment>
is a segment number (number of segments is unknown and is controlled by FinalBlockId
field in at least the last Data packetThe following logic is implemented in SegmentFetcher:
Interest:
/<prefix>?ChildSelector=1&MustBeFresh=yes
<version> = Data.getName().get(-2)
Interest:
/<prefix>/<version>/<segment=0>
Interest:
/<prefix>/<version>/<segment=(N+1))>
If an error occurs during the fetching process, an error callback is fired with a proper error code. The following errors are possible:
INTEREST_TIMEOUT
: if any of the Interests times outDATA_HAS_NO_SEGMENT
: if any of the retrieved Data packets don't have segment as a last component of the name (not counting implicit digest)SEGMENT_VALIDATION_FAIL
: if any retrieved segment fails user-provided validationIn order to validate individual segments, a Validator instance needs to be specified. If the segment validation is successful, afterValidationSuccess callback is fired, otherwise afterValidationFailure callback.
Examples:
void afterFetchComplete(const ConstBufferPtr& data) { ... } void afterFetchError(uint32_t errorCode, const std::string& errorMsg) { ... } ... SegmentFetcher::fetch(face, Interest("/data/prefix", time::seconds(1000)), validator, bind(&afterFetchComplete, this, _1), bind(&afterFetchError, this, _1, _2));
Definition at line 101 of file segment-fetcher.hpp.
typedef function<void (const ConstBufferPtr& data)> ndn::util::SegmentFetcher::CompleteCallback |
Definition at line 109 of file segment-fetcher.hpp.
typedef function<void (uint32_t code, const std::string& msg)> ndn::util::SegmentFetcher::ErrorCallback |
Definition at line 110 of file segment-fetcher.hpp.
Error codes that can be passed to ErrorCallback.
Enumerator | |
---|---|
INTEREST_TIMEOUT | |
DATA_HAS_NO_SEGMENT | |
SEGMENT_VALIDATION_FAIL | |
NACK_ERROR |
Definition at line 115 of file segment-fetcher.hpp.
|
static |
Initiate segment fetching.
face | Reference to the Face that should be used to fetch data |
baseInterest | An Interest for the initial segment of requested data. This interest may include custom InterestLifetime and selectors that will propagate to all subsequent Interests. The only exception is that the initial Interest will be forced to include "ChildSelector=rightmost" and "MustBeFresh=true" selectors, which will be turned off in subsequent Interests. |
validator | Reference to the Validator that should be used to validate data. Caller must ensure validator is valid until either completeCallback or errorCallback is invoked. |
completeCallback | Callback to be fired when all segments are fetched |
errorCallback | Callback to be fired when an error occurs ( |
Definition at line 49 of file segment-fetcher.cpp.
|
static |
Initiate segment fetching.
face | Reference to the Face that should be used to fetch data |
baseInterest | An Interest for the initial segment of requested data. This interest may include custom InterestLifetime and selectors that will propagate to all subsequent Interests. The only exception is that the initial Interest will be forced to include "ChildSelector=1" and "MustBeFresh=true" selectors, which will be turned off in subsequent Interests. |
validator | A shared_ptr to the Validator that should be used to validate data. |
completeCallback | Callback to be fired when all segments are fetched |
errorCallback | Callback to be fired when an error occurs ( |
Definition at line 60 of file segment-fetcher.cpp.
|
static |
Maximum number of times an interest will be reexpressed incase of NackCallback.
Definition at line 107 of file segment-fetcher.hpp.