我正在尝试使用boost the进行http调用,并希望在写入套接字之前将其写入;我尝试使用getting流获取请求的值,以便在打印的日志中获取它,并获得以下错误消息:
string verb = "POST";
using http::field;
http::request<http::string_body> request;
request.method_string(verb);
request.target(server_endpoint);
request.version(11);
request.set(field::host, hostname);
request.set(field::accept, "*/*");
request.set(field::authorization, authorization_token);
request.set(field::user_agent, client_name);
request.set(field::content_length, req_str.length());
request.set(field::content_type, "application/x-www-form-urlencoded");
request.set(field::connection, field::close);
request.body() = req_str;
request.prepare_payload();
fast_ostringstream oss;
oss <<"Request message" << request;
PBLOG_INFO(oss.str());
oss.clear();
HttpTracRequestHandler.cpp:78:26: error: invalid operands to binary expression ('framework::string_::fast_ostringstream' and
'http::request<http::string_body>' (aka 'boost::beast::http::message<true, boost::beast::http::basic_string_body<char,
std::char_traits<char>, std::allocator<char> >, boost::beast::http::basic_fields<std::allocator<char> > >'))
oss <<"Request message" << request;
~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~
/BARXPBViewstore/GIT_Workspace/barx_rel/mq8_barx/barx-server/appl/include/FoxException/GenericException.h:133:19: note: candidate function
[with TData = boost::beast::http::message<true, boost::beast::http::basic_string_body<char, std::char_traits<char>,
std::allocator<char> >, boost::beast::http::basic_fields<std::allocator<char> > >] not viable: no known conversion from
'framework::string_::fast_ostringstream' to 'GenericException &' for 1st argument
GenericException& operator<<(GenericException &e, const TData& data)
^
/BARXPBViewstore/GIT_Workspace/boost/boost_1_70_0/boost/beast/http/impl/write.hpp:921:1: note: candidate function [with isRequest = true,
Body = boost::beast::http::basic_string_body<char, std::char_traits<char>, std::allocator<char> >, Fields =
boost::beast::http::basic_fields<std::allocator<char> >] not viable: no known conversion from 'framework::string_::fast_ostringstream'
to 'std::ostream &' (aka 'basic_ostream<char> &') for 1st argument
operator<<(std::ostream& os,
^
/BARXPBViewstore/GIT_Workspace/boost/boost_1_70_0/boost/beast/http/write.hpp:721:1: note: candidate function [with isRequest = true, Fields
= boost::beast::http::basic_fields<std::allocator<char> >] not viable: no known conversion from
'framework::string_::fast_ostringstream' to 'std::ostream &' (aka 'basic_ostream<char> &') for 1st argument
operator<<(std::ostream& os,
^
/BARXPBViewstore/GIT_Workspace/boost/boost_1_70_0/boost/beast/http/impl/write.hpp:901:1: note: candidate function [with Fields =
boost::beast::http::basic_fields<std::allocator<char> >] not viable: no known conversion from 'framework::string_::fast_ostringstream'
to 'std::ostream &' (aka 'basic_ostream<char> &') for 1st argument
发布于 2020-08-18 16:28:11
你的代码看起来很正常。实际上,它适用于标准字符串流:
#include <boost/beast/http.hpp>
#include <iostream>
#include <sstream>
namespace http = boost::beast::http;
#define PBLOG_INFO(a) do { std::clog << (a) << std::endl; } while(0);
int main() {
std::string verb = "POST", req_str = "payload";
using http::field;
http::request<http::string_body> request;
request.method_string(verb);
request.target("server_endpoint");
request.version(11);
request.set(field::host, "hostname");
request.set(field::accept, "*/*");
request.set(field::authorization, "authorization_token");
request.set(field::user_agent, "client_name");
request.set(field::content_length, req_str.length());
request.set(field::content_type, "application/x-www-form-urlencoded");
request.set(field::connection, field::close);
request.body() = req_str;
request.prepare_payload();
{
std::ostringstream oss;
oss <<"Request message " << request;
PBLOG_INFO(oss.str());
oss.clear();
}
}
打印
Request message POST server_endpoint HTTP/1.1
Host: hostname
Accept: */*
Authorization: authorization_token
User-Agent: client_name
Content-Type: application/x-www-form-urlencoded
Connection: Close
Content-Length: 7
payload
有什么问题吗?
问题似乎在于Beast的流媒体运营商重载不适用于任何类型的fast_ostringstream
。这是精心设计的:
no known conversion from 'framework::string_::fast_ostringstream'
to 'std::ostream &' (aka 'basic_ostream<char> &')
作者fast_ostringstream
显然作弊的意思是它可能是快速的,但它肯定不是一个ostream&
:)。
我试图通过创建自己的欺骗流来获得类似的错误:
struct my_cheat_stream {
using Device = boost::iostreams::back_insert_device<std::string>;
using Stream = boost::iostreams::stream<Device>;
std::string buf;
Stream _impl { buf };
template <typename T> my_cheat_stream& operator<<(T&& rhs) {
_impl << std::forward<T>(rhs);
return *this;
}
std::string&& str()&& { _impl.flush(); return std::move(buf); }
std::string_view str()& { _impl.flush(); return buf; }
void clear() {
buf.clear();
_impl.clear(std::ios::failbit|std::ios::badbit);
}
};
然而,它只是编译,因为,很明显,operator<< <T>()
只是适用。也许您可以相应地修复您的fast_ostringstream
,或者使用其他的东西。
肮脏的解决办法:
您可以使用上面的反例作为杠杆:
template <typename Stream> struct wrap_non_std_stream {
Stream& _wrapped;
explicit wrap_non_std_stream(Stream& ref) : _wrapped(ref) {}
template <typename T> auto& operator<<(T const& rhs) {
_wrapped << rhs;
return *this;
}
auto& operator<<(std::ostream&(*manip)(std::ostream&)) {
_wrapped << manip;
return *this;
}
};
现在你应该能
fast_ostringstream oss;
wrap_non_std_stream woss{oss};
woss << "Request message " << request;
如果底层流这样做了,它还将支持操纵器:
woss << std::endl << std::fixed << std::boolalpha << std::flush;
https://stackoverflow.com/questions/63456351
复制相似问题