-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsimple.cpp
87 lines (73 loc) · 2.05 KB
/
simple.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include <tbox/base/log.h>
#include <tbox/base/log_output.h>
#include <tbox/base/scope_exit.hpp>
#include <tbox/event/signal_event.h>
#include <tbox/http/server/server.h>
using namespace tbox;
using namespace tbox::event;
using namespace tbox::http;
using namespace tbox::http::server;
int main(int argc, char **argv)
{
std::string bind_addr = "0.0.0.0:12345";
if (argc == 2) {
bind_addr = argv[1];
}
LogOutput_Enable();
LogInfo("enter");
auto sp_loop = Loop::New();
auto sp_sig_event = sp_loop->newSignalEvent();
SetScopeExitAction(
[=] {
delete sp_sig_event;
delete sp_loop;
}
);
sp_sig_event->initialize(SIGINT, Event::Mode::kPersist);
sp_sig_event->enable();
Server srv(sp_loop);
if (!srv.initialize(network::SockAddr::FromString(bind_addr), 1)) {
LogErr("init srv fail");
return 0;
}
srv.start();
//srv.setContextLogEnable(true); //! 调试时需要看详细收发数据时可以打开
//! 添加请求处理
srv.use(
[&](ContextSptr ctx, const NextFunc &next) {
ctx->res().status_code = StatusCode::k200_OK;
ctx->res().body = "Hello!";
}
);
sp_sig_event->setCallback(
[&] (int) {
srv.stop();
sp_loop->exitLoop();
}
);
LogInfo("start");
sp_loop->runLoop();
LogInfo("stop");
srv.cleanup();
LogInfo("exit");
return 0;
}