本文整理汇总了C++中std::tr1::shared_ptr::getRange方法的典型用法代码示例。如果您正苦于以下问题:C++ shared_ptr::getRange方法的具体用法?C++ shared_ptr::getRange怎么用?C++ shared_ptr::getRange使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类std::tr1::shared_ptr
的用法示例。
在下文中一共展示了shared_ptr::getRange方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: get
void MeerkatChunkHandler::get(std::tr1::shared_ptr<RemoteFileMetadata> file,
std::tr1::shared_ptr<Chunk> chunk, ChunkCallback callback) {
//Check for null arguments
std::tr1::shared_ptr<DenseData> bad;
if (!file) {
SILOG(transfer, error, "HttpChunkHandler get called with null file parameter");
callback(bad);
return;
}
if (!chunk) {
SILOG(transfer, error, "HttpChunkHandler get called with null chunk parameter");
callback(bad);
return;
}
//Make sure chunk given is part of file
bool foundIt = false;
const ChunkList & chunks = file->getChunkList();
for (ChunkList::const_iterator it = chunks.begin(); it != chunks.end(); it++) {
if(*chunk == *it) {
foundIt = true;
}
}
if(!foundIt) {
SILOG(transfer, error, "HttpChunkHandler get called with chunk not present in file metadata");
callback(bad);
return;
}
//Check to see if it's in the cache first
SharedChunkCache::getSingleton().getCache()->getData(file->getFingerprint(), chunk->getRange(), std::tr1::bind(
&MeerkatChunkHandler::cache_check_callback, this, _1, file->getURI(), chunk, callback));
}
示例2: cache_check_callback
void MeerkatChunkHandler::cache_check_callback(const SparseData* data, const URI& uri,
std::tr1::shared_ptr<Chunk> chunk, ChunkCallback callback) {
if (data) {
mStats.downloaded++;
std::tr1::shared_ptr<const DenseData> flattened = data->flatten();
callback(flattened);
} else {
URL url(uri);
assert(!url.empty());
std::string download_uri_prefix = CDN_DOWNLOAD_URI_PREFIX;
std::string host_name = CDN_HOST_NAME;
Network::Address cdn_addr = mCdnAddr;
if (url.host() != "") {
host_name = url.context().hostname();
std::string service = url.context().service();
if (service == "") {
service = CDN_SERVICE;
}
Network::Address given_addr(host_name, service);
cdn_addr = given_addr;
}
HttpManager::Headers headers;
headers["Host"] = host_name;
headers["Accept-Encoding"] = "deflate, gzip";
bool chunkReq = false;
if(!chunk->getRange().goesToEndOfFile() || chunk->getRange().startbyte() != 0) {
chunkReq = true;
headers["Range"] = "bytes=" + boost::lexical_cast<String>(chunk->getRange().startbyte()) +
"-" + boost::lexical_cast<String>(chunk->getRange().endbyte());
}
HttpManager::getSingleton().get(
cdn_addr, download_uri_prefix + "/" + chunk->getHash().convertToHexString(),
std::tr1::bind(&MeerkatChunkHandler::request_finished, this, _1, _2, _3, uri, chunk, chunkReq, callback),
headers
);
}
}
示例3: request_finished
void MeerkatChunkHandler::request_finished(std::tr1::shared_ptr<HttpManager::HttpResponse> response,
HttpManager::ERR_TYPE error, const boost::system::error_code& boost_error,
const URI& uri, std::tr1::shared_ptr<Chunk> chunk,
bool chunkReq, ChunkCallback callback) {
std::tr1::shared_ptr<DenseData> bad;
std::string reqType = "file request";
if(chunkReq) reqType = "chunk request";
if (error == Transfer::HttpManager::REQUEST_PARSING_FAILED) {
SILOG(transfer, error, "Request parsing failed during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
} else if (error == Transfer::HttpManager::RESPONSE_PARSING_FAILED) {
SILOG(transfer, error, "Response parsing failed during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
} else if (error == Transfer::HttpManager::BOOST_ERROR) {
SILOG(transfer, error, "A boost error happened during an HTTP " << reqType << ". Boost error = " << boost_error.message() << " (" << uri << ")");
callback(bad);
return;
} else if (error != HttpManager::SUCCESS) {
SILOG(transfer, error, "An unknown error happened during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
}
if (response->getHeaders().size() == 0) {
SILOG(transfer, error, "There were no headers returned during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
}
HttpManager::Headers::const_iterator it;
it = response->getHeaders().find("Content-Length");
if (it == response->getHeaders().end()) {
SILOG(transfer, error, "Content-Length header was not present when it should be during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
}
if (response->getStatusCode() != 200) {
SILOG(transfer, error, "HTTP status code = " << response->getStatusCode() << " instead of 200 during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
}
if (!response->getData()) {
SILOG(transfer, error, "Body not present during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
}
it = response->getHeaders().find("Content-Range");
if (chunkReq && it == response->getHeaders().end()) {
SILOG(transfer, error, "Expected Content-Range header not present during an HTTP " << reqType << " (" << uri << ")");
callback(bad);
return;
} else if (chunkReq) {
std::string range_str = it->second;
bool range_parsed = false;
if (range_str.substr(0,6) == "bytes ") {
range_str = range_str.substr(6);
size_type dashPos = range_str.find('-');
if (dashPos != std::string::npos) {
range_str.replace(dashPos, 1, " ");
//total file size is optional
size_type slashPos = range_str.find('/');
if (slashPos != std::string::npos) {
range_str.replace(slashPos, 1, " ");
}
std::istringstream instream(range_str);
uint64 range_start;
uint64 range_end;
instream >> range_start;
instream >> range_end;
if (range_start == chunk->getRange().startbyte() &&
range_end == chunk->getRange().endbyte() &&
response->getData()->length() == chunk->getRange().length()) {
range_parsed = true;
}
}
}