acl/app/wizard/tmpl/http/main_threads.cpp
2020-06-29 17:17:56 +08:00

153 lines
3.9 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "stdafx.h"
#include "master_service.h"
#include "http_service.h"
static bool http_get_default(HttpRequest&, HttpResponse& res)
{
acl::string buf("default: hello world!\r\n");
res.setContentLength(buf.size());
return res.write(buf);
}
static bool http_get_ok(HttpRequest&, HttpResponse& res)
{
acl::string buf("ok: hello world!\r\n");
res.setContentLength(buf.size());
return res.write(buf);
}
static bool http_post_ok(HttpRequest& req, HttpResponse& res)
{
acl::string buf;
if (!req.getBody(buf)) {
printf("getBody error!\r\n");
return false;
}
printf("body: %s\r\n", buf.c_str());
res.setContentLength(buf.size());
return res.write(buf);
}
static bool http_get_json(HttpRequest&, HttpResponse& res)
{
acl::json json;
acl::json_node& root = json.get_root();
root.add_number("code", 200)
.add_text("status", "+ok")
.add_child("data",
json.create_node()
.add_text("name", "value")
.add_bool("success", true)
.add_number("number", 100));
return res.write(json);
}
static bool http_get_xml(HttpRequest&, HttpResponse& res)
{
acl::xml1 xml;
acl::xml_node& root = xml.get_root();
root.add_child("test6", true, "text6")
.add_child("test61", true, "text61")
.add_attr("name61_1", "value61_1")
.add_attr("name61_2", "value61_2")
.add_attr("name61_3", "value61_3")
.add_child("test611", true, "text611")
.add_attr("name611_1", "value611_1")
.add_attr("name611_2", "value611_2")
.add_attr("name611_3", "value611_3")
.get_parent()
.get_parent()
.add_child("test62", true, "text62")
.add_attr("name62_1", "value62_1")
.add_attr("name62_2", "value62_2")
.add_attr("name62_3", "value62_3")
.get_parent()
.add_attr("name6_1", "value6_1")
.add_attr("name6_2", "value6_2")
.add_attr("name6_3", "value6_3");
return res.write(xml);
}
int main(int argc, char* argv[])
{
// ³õʼ»¯ acl ¿â
acl::acl_cpp_init();
master_service ms;
http_service& service = ms.get_service();;
// ÉèÖÃÅäÖòÎÊý±í
ms.set_cfg_int(var_conf_int_tab)
.set_cfg_int64(var_conf_int64_tab)
.set_cfg_str(var_conf_str_tab)
.set_cfg_bool(var_conf_bool_tab);
// Register http handlers according different url path
service.Get("/", http_get_default)
.Get("/ok", http_get_ok)
.Post("/ok", http_post_ok)
.Get("/json", http_get_json)
.Get("/xml", http_get_xml);
// ¿ªÊ¼ÔËÐÐ
if (argc >= 2 && strcmp(argv[1], "alone") == 0) {
// ÈÕÖ¾Êä³öÖÁ±ê×¼Êä³ö
acl::log::stdout_open(true);
// ¼àÌýµÄµØÖ·ÁÐ±í£¬¸ñʽ£ºip|port1,ip|port2,...
const char* addrs = "|8888";
printf("listen on: %s\r\n", addrs);
// ²âÊÔʱÉèÖøÃÖµ > 0 ÔòÖ¸¶¨·þÎñÆ÷´¦Àí¿Í»§¶ËÁ¬½Ó¹ý³ÌµÄ
// »á»°×ÜÊý£¨Ò»¸öÁ¬½Ó´Ó½ÓÊÕµ½¹Ø±Õ³Æ֮Ϊһ¸ö»á»°£©£¬µ±
// ´¦ÀíµÄÁ¬½Ó»á»°Êý³¬¹ý´ËÖµ£¬²âÊÔ¹ý³Ì½áÊø£»Èç¹û¸ÃÖµÉè
// Ϊ 0£¬Ôò²âÊÔ¹ý³ÌÓÀÔ¶²»½áÊø
unsigned int count = 0;
// ²âÊÔ¹ý³ÌÖÐÖ¸¶¨Ï̳߳Ø×î´óÏ̸߳öÊý
unsigned int max_threads = 100;
// µ¥¶ÀÔËÐз½Ê½
if (argc >= 3) {
ms.run_alone(addrs, argv[2], count, max_threads);
} else {
ms.run_alone(addrs, NULL, count, max_threads);
}
printf("Enter any key to exit now\r\n");
getchar();
} else {
#if defined(_WIN32) || defined(_WIN64)
// ÈÕÖ¾Êä³öÖÁ±ê×¼Êä³ö
acl::log::stdout_open(true);
// ¼àÌýµÄµØÖ·ÁÐ±í£¬¸ñʽ£ºip:port1,ip:port2,...
const char* addrs = "127.0.0.1:8888";
printf("listen on: %s\r\n", addrs);
// ²âÊÔʱÉèÖøÃÖµ > 0 ÔòÖ¸¶¨·þÎñÆ÷´¦Àí¿Í»§¶ËÁ¬½Ó¹ý³ÌµÄ
// »á»°×ÜÊý£¨Ò»¸öÁ¬½Ó´Ó½ÓÊÕµ½¹Ø±Õ³Æ֮Ϊһ¸ö»á»°£©£¬µ±
// ´¦ÀíµÄÁ¬½Ó»á»°Êý³¬¹ý´ËÖµ£¬²âÊÔ¹ý³Ì½áÊø£»Èç¹û¸ÃÖµÉè
// Ϊ 0£¬Ôò²âÊÔ¹ý³ÌÓÀÔ¶²»½áÊø
unsigned int count = 0;
// ²âÊÔ¹ý³ÌÖÐÖ¸¶¨Ï̳߳Ø×î´óÏ̸߳öÊý
unsigned int max_threads = 100;
// µ¥¶ÀÔËÐз½Ê½
ms.run_alone(addrs, NULL, count, max_threads);
printf("Enter any key to exit now\r\n");
getchar();
#else
// acl_master ¿ØÖÆģʽÔËÐÐ
ms.run_daemon(argc, argv);
#endif
}
return 0;
}