mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 17:30:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
113 lines
2.8 KiB
C
113 lines
2.8 KiB
C
#include "lib_acl.h"
|
|
#include "lib_protocol.h"
|
|
#include "dict_pool.h"
|
|
#include "http_service.h"
|
|
#include "service_main.h"
|
|
|
|
/* 配置文件项 */
|
|
char *var_cfg_mysql_dbaddr;
|
|
char *var_cfg_mysql_dbuser;
|
|
char *var_cfg_mysql_dbpass;
|
|
char *var_cfg_mysql_dbname;
|
|
|
|
char *var_cfg_dbpath;
|
|
char *var_cfg_dbnames;
|
|
|
|
int var_cfg_mysql_dbmax;
|
|
int var_cfg_mysql_dbping;
|
|
int var_cfg_mysql_dbtimeout;
|
|
int var_cfg_mysql_auto_commit;
|
|
|
|
int var_cfg_debug_mem;
|
|
int var_cfg_rw_timeout;
|
|
int var_cfg_use_bdb;
|
|
|
|
#define STR acl_vstring_str
|
|
#define LEN ACL_VSTRING_LEN
|
|
|
|
/* configure pool */
|
|
|
|
/* TODO: you can add configure items here */
|
|
|
|
ACL_CONFIG_BOOL_TABLE service_conf_bool_tab[] = {
|
|
/* TODO: you can add configure variables of int type here */
|
|
{ "debug_mem", 0, &var_cfg_debug_mem },
|
|
{ "use_bdb", 1, &var_cfg_use_bdb },
|
|
{ 0, 0, 0 },
|
|
};
|
|
|
|
ACL_CONFIG_INT_TABLE service_conf_int_tab[] = {
|
|
/* TODO: you can add configure variables of int type here */
|
|
{ "mysql_dbmax", 250, &var_cfg_mysql_dbmax, 0, 0 },
|
|
{ "mysql_dbping", 60, &var_cfg_mysql_dbping, 0, 0 },
|
|
{ "mysql_dbtimeout", 300, &var_cfg_mysql_dbtimeout, 0, 0 },
|
|
{ "mysql_auto_commit", 1, &var_cfg_mysql_auto_commit, 0, 0 },
|
|
|
|
{ "rw_timeout", 1200, &var_cfg_rw_timeout, 0, 0 },
|
|
{ 0, 0, 0, 0, 0 },
|
|
};
|
|
|
|
ACL_CONFIG_STR_TABLE service_conf_str_tab[] = {
|
|
|
|
/* TODO: you can add configure variables of (char *) type here */
|
|
{ "mysql_dbaddr", "127.0.0.1:3306", &var_cfg_mysql_dbaddr },
|
|
{ "mysql_dbname", "ioctl_db", &var_cfg_mysql_dbname },
|
|
{ "mysql_dbuser", "ioctl_user", &var_cfg_mysql_dbuser },
|
|
{ "mysql_dbpass", "111111", &var_cfg_mysql_dbpass },
|
|
{ "db_names", "default:8", &var_cfg_dbnames },
|
|
{ "db_path", "/opt/acl/var/db", &var_cfg_dbpath },
|
|
|
|
{ 0, 0, 0 },
|
|
};
|
|
|
|
/* 初始化函数 */
|
|
void service_init(void *init_ctx)
|
|
{
|
|
acl_init();
|
|
http_service_init(init_ctx);
|
|
}
|
|
|
|
void service_exit(void *exit_ctx)
|
|
{
|
|
http_service_exit(exit_ctx);
|
|
}
|
|
|
|
/* 协议处理函数入口 */
|
|
int service_main(ACL_VSTREAM *client, void *run_ctx acl_unused)
|
|
{
|
|
#ifdef TEST_ECHO
|
|
char buf[256];
|
|
int ret;
|
|
|
|
ACL_VSTREAM_SET_RWTIMO(client, 1200);
|
|
|
|
if (var_cfg_debug_mem)
|
|
acl_msg_info("total alloc: %d", acl_mempool_total_allocated());
|
|
|
|
do {
|
|
if (isatty(ACL_VSTREAM_SOCK(client))) {
|
|
printf("Please input: ");
|
|
fflush(stdout);
|
|
} else
|
|
acl_msg_info("waiting ......");
|
|
ret = acl_vstream_gets(client, buf, sizeof(buf));
|
|
if (ret == ACL_VSTREAM_EOF)
|
|
return (-1);
|
|
buf[ret] = 0;
|
|
if (isatty(ACL_VSTREAM_SOCK(client)))
|
|
ret = acl_vstream_printf("Your input: %s", buf);
|
|
else {
|
|
acl_msg_info("wakeup now, ret=%d", ret);
|
|
ret = acl_vstream_writen(client, buf, strlen(buf));
|
|
}
|
|
if (ret == ACL_VSTREAM_EOF)
|
|
return (-1);
|
|
} while (1);
|
|
|
|
acl_msg_info("over now\r\n");
|
|
return (-1);
|
|
#else
|
|
return (http_service_main(client, run_ctx));
|
|
#endif
|
|
}
|