- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我目前正在尝试使用 boost::asio 编写一些代码,使用 clang 3.1 进行编译。
我有一个简单的函数对象:
struct tcp_socket_match_condition
{
template <typename TIter>
std::pair<TIter, bool> operator()(TIter begin, TIter end) const
{
auto result(std::find(begin, end, '\n'));
const bool found(result != end);
return std::make_pair(found ? ++result : end, found);
}
};
我尝试将其传递给 boost::asio::read_until
函数,如下所示:
boost::asio::read_until(socket, stream, match_condition_, error);
生成的编译器错误看起来指出它找不到正确的函数重载。知道为什么这不起作用吗?
我提供了完整的类和编译器错误。
In file included from src/network/admin_socket.cpp:1:
In file included from include/bytes42/arthur/network/admin_socket.hpp:4:
include/bytes42/arthur/network/tcp_socket.hpp:95:21: error: no matching function for call to 'read_until'
boost::asio::read_until(socket, stream, match_condition_, error);
^~~~~~~~~~~~~~~~~~~~~~~
src/network/admin_socket.cpp:81:10: note: in instantiation of member function
'bytes42::arthur::network::tcp_socket<bytes42::arthur::network::detail::tcp_socket_match_condition>::listen' requested here
socket_.listen();
^
/usr/local/include/boost/asio/impl/read_until.hpp:47:13: note: candidate function [with SyncReadStream =
boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >, Allocator =
std::__1::allocator<char>] not viable: no known conversion from 'bytes42::arthur::network::detail::tcp_socket_match_condition' to 'char' for 3rd
argument;
std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:138:13: note: candidate function [with SyncReadStream =
boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >, Allocator =
std::__1::allocator<char>] not viable: no known conversion from 'bytes42::arthur::network::detail::tcp_socket_match_condition' to
'const std::string' (aka 'const basic_string<char, char_traits<char>, allocator<char> >') for 3rd argument;
std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:203:13: note: candidate function [with SyncReadStream =
boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >, Allocator =
std::__1::allocator<char>] not viable: no known conversion from 'bytes42::arthur::network::detail::tcp_socket_match_condition' to
'const boost::regex' (aka 'const basic_regex<char, regex_traits<char> >') for 3rd argument;
std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:260:13: note: candidate template ignored: substitution failure [with SyncReadStream =
boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >, Allocator =
std::__1::allocator<char>, MatchCondition = bytes42::arthur::network::detail::tcp_socket_match_condition]
std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:312:20: note: candidate template ignored: substitution failure [with SyncReadStream =
boost::asio::basic_stream_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >, Allocator =
std::__1::allocator<char>, MatchCondition = bytes42::arthur::network::detail::tcp_socket_match_condition]
inline std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:37:20: note: candidate function template not viable: requires 3 arguments, but 4 were provided
inline std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:93:20: note: candidate function template not viable: requires 3 arguments, but 4 were provided
inline std::size_t read_until(SyncReadStream& s,
^
/usr/local/include/boost/asio/impl/read_until.hpp:193:20: note: candidate function template not viable: requires 3 arguments, but 4 were provided
inline std::size_t read_until(SyncReadStream& s,
^
1 error generated.
make: *** [build/src/network/admin_socket.o] Error 1
类:
template <typename TMatchCondition>
class tcp_socket
{
public:
typedef std::function<std::string(const std::string&)> data_callback;
public:
tcp_socket(
const unsigned short port,
TMatchCondition match_condition,
data_callback callback);
void listen();
void stop();
private:
tcp_socket(const tcp_socket&) = delete;
tcp_socket(tcp_socket&&) = delete;
tcp_socket& operator=(const tcp_socket&) = delete;
tcp_socket& operator=(tcp_socket&&) = delete;
private:
const utils::entry_exit entry_exit_;
boost::asio::io_service service_;
boost::asio::ip::tcp::acceptor acceptor_;
TMatchCondition match_condition_;
data_callback callback_;
};
template <typename TMatchCondition>
tcp_socket<TMatchCondition>::tcp_socket(
const unsigned short port,
TMatchCondition match_condition,
data_callback callback)
: entry_exit_("tcp_socket:" + std::to_string(port))
, acceptor_(service_, boost::asio::ip::tcp::endpoint(boost::asio::ip::tcp::v4(), port))
, match_condition_(match_condition)
, callback_(callback) {}
template <typename TMatchCondition>
void tcp_socket<TMatchCondition>::listen()
{
const auto port(acceptor_.local_endpoint().port());
const std::string port_str(std::to_string(port));
while(acceptor_.is_open())
{
boost::system::error_code error;
utils::entry_exit ee("Listening on port " + port_str);
boost::asio::ip::tcp::socket socket(service_);
acceptor_.accept(socket, error);
if(error)
{
if(error != boost::asio::error::bad_descriptor)
{
LOG(ERROR)
<< "An error occured while trying to accept a client connection; error="
<< error.message();
sleep(1); // don't want to flood logs
}
}
else
{
while(socket.is_open())
{
boost::asio::streambuf stream;
boost::asio::read_until(socket, stream, match_condition_, error);
const std::string msg(
(std::istreambuf_iterator<char>(&stream)),
std::istreambuf_iterator<char>());
LOG(INFO) << "Received message: " << msg;
boost::asio::write(
socket,
boost::asio::buffer(callback_(msg)),
error);
if(error)
{
if(error != boost::asio::error::broken_pipe)
{
LOG(ERROR)
<< "Error whilst writing response, closing client connection: "
<< error.message();
}
socket.close();
sleep(1); // don't want to flood logs
}
}
}
}
}
template <typename TMatchCondition>
void tcp_socket<TMatchCondition>::stop()
{
boost::system::error_code error;
acceptor_.close(error);
if(error)
{
LOG(ERROR) << "Error whilst stopping TCP socket; error=" << error.message();
}
}
最佳答案
我认为您没有发布完整代码,但问题似乎是匹配条件:您是否指定使用 boost::is_match_condition
您的 tcp_socket_match_condition
是匹配条件吗?
关于c++ - "candidate template ignored: substitution failure:"编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13502421/
根据我的理解,INSERT IGNORE 插入一个新条目,如果它不存在,如果存在,则忽略它。所以我已经尝试这样做了一段时间,但似乎没有用。这是我的尝试: insert insert ignore in
出于某种奇怪的原因,StyleCop 不尊重我的文档规则设置。考虑以下代码: internal class SomeClass { public SomeClass() { }
我有一个带有字符串参数和 bool 返回值的方法。我想确保它总是返回 true 我试过了 myClass.Foo(A.Ignored) .WithReturnType() .Returns(tru
这个问题在这里已经有了答案: Filter invoke twice when register as Spring bean (2 个答案) 关闭 1 年前。 我们正面临 SpringSecuri
将 iconv 与 //TRANSLIT//IGNORE 一起使用从 utf8 转换为 ascii 工作正常;它根据当前语言环境(在我的情况下为 de_DE)将不可转换的字符替换为正确的音译: > e
我有这样的查询: $query="INSERT IGNORE INTO mytable (key, word1, word2) VALUES (1, 'abc', 'def')"; 如果因为主键已经存
我有一个 MySQL 表,如下所示: `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(8) unsigned NOT N
git blame --ignore-revs-file显然是现代 Git 中存在的一个选项。 只有一个问题。它不起作用。 或者至少,它对我不起作用: 您可以将其添加到 shell 脚本中: mkdi
使用docker stack deploy,我可以看到如下信息: Ignoring unsupported options: restart 是否意味着重启政策没有到位? 是否必须在撰写文件之外指定它
我正在尝试检查被 git 忽略的文件,我发现 2 个命令显示相同的结果。 哪个是 git check-ignore * git ls-files --others --ignored --exclud
我想为我的 bash 设置和插件等创建一个 git 仓库。我忽略了所有内容(第 0 行),然后在 repo 中手动添加了我想要的文件/文件夹。 (我必须这样做,因为 repo 在我的 ~ 文件夹中。)
我们有一个集中式开发服务器,每个人都在本地结账处工作。我们如何仅忽略本地存储库中的特定目录,而不忽略集中存储库中的特定目录? 一些背景资料: 该项目是一个Drupal站点,该站点的文件目录一直在变化。
当我向 svn:ignore 条目添加一些东西时,它是存储在存储库中还是存储在我的本地副本中? (在 Tortoise 中,为什么添加到 svn:ignore 的项目会出现在我的更改列表中?) 最佳答
我想确保当我从 svn 结帐时,某些 ide 项目元数据文件没有更新。不幸的是,在创建项目时它已被 checkin 项目,但我有我自己的这些文件版本。 svn:ignore 是否也会在更新期间忽略文件
我有一个目录,其中包含具有各种扩展名的文件。我想在 svn:ignore 中执行与以下 .gitignore 代码等效的操作: *.* # ignore everything !.htaccess #
我在实时服务器上有一个大型项目,我想将其提交给 svn 存储库。我已使用 svn add 将所有文件和目录添加到存储库中. 问题是我想提交一个文件夹结构,但没有它的内容。文件夹名称是: /home/m
当我使用 svn:ignore 从 SVN 中排除文件时然后另一个人尝试提交排除的文件, svn 阻止他?或者他必须在他的电脑上执行相同的命令? 最佳答案 想象一下,如果您有一堆 Java 文件( *
如果已经有一个带有_id的文档,是否可以不重新索引文档?也许像MySQL中的INSERT IGNORE查询一样? 我使用批量API,并且重新索引需要很长时间,因此我只想索引丢失的文档。 可能吗? 最佳
我的房间有问题。 我正在使用带有 Gson 转换器的改造作为其余 api,我想与房间分享 pojos。一般来说它可以工作,但在某些情况下我需要忽略一些字段,因为我有对象列表。我尝试使用 @Ignore
我正在使用 vba 代码从数组中查找值。有些结果是“#N/A”,并且单元格的左上角会出现一个绿色三角形。我想自动删除绿色三角形(忽略错误),但“#N/A”结果应该保留,只需删除绿色三角形即可。 有人知
我是一名优秀的程序员,十分优秀!