我使用casablanca cpprestskd开发了一个客户端服务器应用程序。 客户端每5分钟通过POST方法将任务管理器(进程,cpu使用等)的信息发送到服务器。
该项目应该能够管理大约100个客户。 每次该服务器收到POST请求时,他都会打开一个输出文件流(" uploaded.txt"),从客户端提取一些初始信息(登录,密码),管理此信息,将所有信息保存在一个文件中在附加模式下,客户端的名称相同(例如:client1.txt,client2.txt),最后使用状态代码回复客户端。 这基本上是来自服务器端的POST句柄代码:
void Server::handle_post(http_request request)
{
auto fileBuffer =
std::make_shared<Concurrency::streams::basic_ostream<uint8_t>>();
try
{
auto stream = concurrency::streams::fstream::open_ostream(
U("uploaded.txt"),
std::ios_base::out | std::ios_base::binary).then([request, fileBuffer](pplx::task<Concurrency::streams::basic_ostream<unsigned char>> Previous_task)
{
*fileBuffer = Previous_task.get();
try
{
request.body().read_to_end(fileBuffer->streambuf()).get();
}
catch (const exception&)
{
wcout << L"<exception>" << std::endl;
//return pplx::task_from_result();
}
//Previous_task.get().close();
}).then([=](pplx::task<void> Previous_task)
{
fileBuffer->close();
//Previous_task.get();
}).then([](task<void> previousTask)
{
// This continuation is run because it is value-based.
try
{
// The call to task::get rethrows the exception.
previousTask.get();
}
catch (const exception& e)
{
wcout << e.what() << endl;
}
});
//stream.get().close();
}
catch (const exception& e)
{
wcout << e.what() << endl;
}
ManageClient();
request.reply(status_codes::OK, U("Hello, World!")).then([](pplx::task<void> t) { handle_error(t); });
return;
}
基本上它可以工作,但如果我尝试同时从应有的客户端发送信息,有时它有时会起作用。 显然是问题,如果我打开&#34; uploaded.txt&#34;流文件。 问题:
1)CASABLANCA http_listener真的是多任务吗?它能处理多少任务? 2)我没有在文档中找到类似于我的例子,唯一一个接近我的人就是&#34; Casalence120&#34;项目,但他使用Concurrency :: Reader_writer_lock类(它似乎是一个互斥方法)。 我该怎么做才能管理多个POST? 3)在开始upload.txt之前是否可以读取一些客户端信息? 我可以直接用客户端的名称打开输出文件流。 4)如果我通过upload.txt文件上的互斥锁锁定访问,服务器将成为顺序,我认为这不是一个使用cpprestsdk的好方法。 我还在接近cpprestskd,所以任何建议都会有所帮助。
答案 0 :(得分:2)