mirror of
https://github.com/sogou/workflow.git
synced 2026-01-19 00:06:40 +08:00
100 lines
2.4 KiB
C++
100 lines
2.4 KiB
C++
#include <sys/un.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "workflow/Workflow.h"
|
|
#include "workflow/WFTaskFactory.h"
|
|
#include "workflow/WFFacilities.h"
|
|
#include "message.h"
|
|
|
|
using WFTutorialTask = WFNetworkTask<protocol::TutorialRequest,
|
|
protocol::TutorialResponse>;
|
|
using tutorial_callback_t = std::function<void (WFTutorialTask *)>;
|
|
|
|
using namespace protocol;
|
|
|
|
class MyFactory : public WFTaskFactory
|
|
{
|
|
public:
|
|
static WFTutorialTask *create_tutorial_task(const struct sockaddr *addr,
|
|
socklen_t addrlen,
|
|
int retry_max,
|
|
tutorial_callback_t callback)
|
|
{
|
|
using NTF = WFNetworkTaskFactory<TutorialRequest, TutorialResponse>;
|
|
WFTutorialTask *task = NTF::create_client_task(TT_TCP, addr, addrlen,
|
|
retry_max,
|
|
std::move(callback));
|
|
task->set_keep_alive(30 * 1000);
|
|
return task;
|
|
}
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
const char *path;
|
|
std::string host;
|
|
|
|
if (argc != 2)
|
|
{
|
|
fprintf(stderr, "USAGE: %s <path>\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
path = argv[1];
|
|
|
|
auto&& create = [path](WFRepeaterTask *)->SubTask *{
|
|
char buf[1024];
|
|
printf("Input next request string (Ctrl-D to exit): ");
|
|
*buf = '\0';
|
|
scanf("%1023s", buf);
|
|
size_t body_size = strlen(buf);
|
|
if (body_size == 0)
|
|
{
|
|
printf("\n");
|
|
return NULL;
|
|
}
|
|
|
|
struct sockaddr_un sun = { };
|
|
sun.sun_family = AF_UNIX;
|
|
strncpy(sun.sun_path, path, sizeof sun.sun_path - 1);
|
|
WFTutorialTask *task = MyFactory::create_tutorial_task(
|
|
(struct sockaddr *)&sun, sizeof sun,
|
|
0,
|
|
[](WFTutorialTask *task) {
|
|
int state = task->get_state();
|
|
int error = task->get_error();
|
|
TutorialResponse *resp = task->get_resp();
|
|
void *body;
|
|
size_t body_size;
|
|
|
|
if (state == WFT_STATE_SUCCESS)
|
|
{
|
|
resp->get_message_body_nocopy(&body, &body_size);
|
|
printf("Server Response: %.*s\n", (int)body_size, (char *)body);
|
|
}
|
|
else
|
|
{
|
|
const char *str = WFGlobal::get_error_string(state, error);
|
|
fprintf(stderr, "Error: %s\n", str);
|
|
}
|
|
});
|
|
|
|
task->get_req()->set_message_body(buf, body_size);
|
|
task->get_resp()->set_size_limit(4 * 1024);
|
|
return task;
|
|
};
|
|
|
|
WFFacilities::WaitGroup wait_group(1);
|
|
|
|
WFRepeaterTask *repeater;
|
|
repeater = WFTaskFactory::create_repeater_task(std::move(create), nullptr);
|
|
Workflow::start_series_work(repeater, [&wait_group](const SeriesWork *) {
|
|
wait_group.done();
|
|
});
|
|
|
|
wait_group.wait();
|
|
return 0;
|
|
}
|
|
|