mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 03:17:37 +08:00
144 lines
3.3 KiB
C++
144 lines
3.3 KiB
C++
// http_servlet.cpp : 定义控制台应用程序的入口点。
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "acl_cpp/lib_acl.hpp"
|
|
|
|
static void (*format)(const char*, ...) = acl::log::msg1;
|
|
|
|
using namespace acl;
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
class http_servlet : public HttpServlet
|
|
{
|
|
public:
|
|
http_servlet(void)
|
|
{
|
|
|
|
}
|
|
|
|
~http_servlet(void)
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool doGet(HttpServletRequest& req, HttpServletResponse& res)
|
|
{
|
|
return doPost(req, res);
|
|
}
|
|
|
|
virtual bool doPost(HttpServletRequest& req, HttpServletResponse& res)
|
|
{
|
|
const char* sid = req.getSession().getAttribute("sid");
|
|
if (*sid == 0)
|
|
req.getSession().setAttribute("sid", "xxxxxx");
|
|
sid = req.getSession().getAttribute("sid");
|
|
|
|
const char* cookie1 = req.getCookieValue("name1");
|
|
const char* cookie2 = req.getCookieValue("name2");
|
|
|
|
// 创建 HTTP 响应头
|
|
res.addCookie("name1", "value1");
|
|
res.addCookie("name2", "value2", ".test.com", "/", 3600 * 24);
|
|
|
|
// 设置响应头的状态码
|
|
//res.setStatus(200);
|
|
|
|
// 两种方式都可以设置字符集
|
|
if (0)
|
|
res.setContentType("text/xml; charset=gb2312");
|
|
else
|
|
{
|
|
res.setContentType("text/xml");
|
|
res.setCharacterEncoding("gb2312");
|
|
}
|
|
|
|
const char* param1 = req.getParameter("name1");
|
|
const char* param2 = req.getParameter("name2");
|
|
|
|
// 创建 xml 格式的数据体
|
|
xml body;
|
|
body.get_root().add_child("root", true)
|
|
.add_child("sessions", true)
|
|
.add_child("session", true)
|
|
.add_attr("sid", sid ? sid : "null")
|
|
.get_parent()
|
|
.get_parent()
|
|
.add_child("cookies", true)
|
|
.add_child("cookie", true)
|
|
.add_attr("name1", cookie1 ? cookie1 : "null")
|
|
.get_parent()
|
|
.add_child("cookie", true)
|
|
.add_attr("name2", cookie2 ? cookie2 : "null")
|
|
.get_parent()
|
|
.get_parent()
|
|
.add_child("params", true)
|
|
.add_child("param", true)
|
|
.add_attr("name1", param1 ? param1 : "null")
|
|
.get_parent()
|
|
.add_child("param", true)
|
|
.add_attr("name2", param2 ? param2 : "null");
|
|
|
|
string buf;
|
|
body.build_xml(buf);
|
|
|
|
// 发送 http 响应头
|
|
if (res.sendHeader() == false)
|
|
return false;
|
|
// 发送 http 响应体
|
|
if (res.getOutputStream().write(buf) == -1)
|
|
return false;
|
|
return true;
|
|
}
|
|
protected:
|
|
private:
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
class master_service : public master_proc
|
|
{
|
|
public:
|
|
master_service() {}
|
|
~master_service() {}
|
|
protected:
|
|
virtual void on_accept(socket_stream* stream)
|
|
{
|
|
memcache_session session("127.0.0.1:11211");
|
|
http_servlet servlet;
|
|
servlet.setLocalCharset("gb2312");
|
|
servlet.doRun(session, stream);
|
|
}
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
acl::acl_cpp_init();
|
|
master_service service;
|
|
|
|
// 开始运行
|
|
|
|
if (argc >= 2 && strcmp(argv[1], "alone") == 0)
|
|
{
|
|
format = (void (*)(const char*, ...)) printf;
|
|
printf("listen: 0.0.0.0:8888 ...\r\n");
|
|
service.run_alone("0.0.0.0:8888", NULL, 1); // 单独运行方式
|
|
}
|
|
else
|
|
{
|
|
#ifdef WIN32
|
|
format = (void (*)(const char*, ...)) printf;
|
|
printf("listen: 0.0.0.0:8888 ...\r\n");
|
|
service.run_alone("0.0.0.0:8888", NULL, 1); // 单独运行方式
|
|
#else
|
|
service.run_daemon(argc, argv); // acl_master 控制模式运行
|
|
#endif
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|