本文整理汇总了C++中ApiRequest::getPath方法的典型用法代码示例。如果您正苦于以下问题:C++ ApiRequest::getPath方法的具体用法?C++ ApiRequest::getPath怎么用?C++ ApiRequest::getPath使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ApiRequest
的用法示例。
在下文中一共展示了ApiRequest::getPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: get
bool Api::get(const ApiRequest& request, ApiResponse& response) {
response.clear();
// validate
bool requireValidExecutor(executor_ != NULL);
if (!requireValidExecutor) {
assert(requireValidExecutor && "Valid HttpRequestExecutor implementation expected.");
response.setError( FatalInternalError("Api Executor is not set.") );
return (response.good());
}
bool requireValidParser(parser_ != NULL);
if (!requireValidParser) {
assert(requireValidParser && "Valid XmlResponseParser implementation expected.");
response.setError( FatalInternalError("Api Parser is not set.") );
return (response.good());
}
FREDCPP_LOG_DEBUG("request:" << request);
// prepare request (ApiRequest >> HttpRequest)
std::string URI(std::string(apiURI_).append("/").append(request.getPath()));
internal::HttpRequest httpRequest(URI, request);
httpRequest.with(FRED_PARAM_API_KEY, apiKey_);
if (!apiFileType_.empty()) {
httpRequest.with(FRED_PARAM_FILE_TYPE, apiFileType_);
}
FREDCPP_LOG_DEBUG("http-request:" << httpRequest);
// execute request
internal::HttpResponse httpResponse;
executor_->execute(httpRequest, httpResponse);
if (!httpResponse.isXmlContent()) {
response.setError( ErrorHttpRequestFailed(request, httpRequest, httpResponse) );
FREDCPP_LOG_ERROR( response.error.message);
return (response.good());
}
// process response
//std::ofstream os("fred_dbg.bin",std::ifstream::binary);
//os << httpResponse.getContentStream().str();
std::istringstream xmlContent(httpResponse.getContentStream().str());
FREDCPP_LOG_DEBUG("http-response:" << httpResponse.getHttpStatus()
<< " " << "content-type:" << httpResponse.getContentType());
FREDCPP_LOG_DBGN(2, "content:{\n" << xmlContent.str() << "\n}");
if ( !parser_->parse(xmlContent, response) ) {
response.setError( ErrorXmlParseFailed(request, xmlContent) );
FREDCPP_LOG_ERROR( response.error.message );
return (response.good());
}
response.setErrorFromResult();
//TOADD:FREDCPP_LOG_INFO(response.result, timed)
return ( response.good() );
}