1 Star 0 Fork 4

nbsnail/ccfast

forked from zhouxiang/ccfast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
zhouxiang 提交于 2015-02-26 18:27 . init project
#include <iostream>
#include "fcgiworker.h"
#include "util.h"
#include "parse.h"
#include "urlroute.h"
#include "ccfastprogram.h"
#include "urlfunction.h"
#include "response.h"
#include "systemparameter.h"
int main()
{
SystemParameter* _sp = SystemParameter::instance();
do{
try
{
if (!_sp->load())
{
SendEmail::send("Fcgi_load_conf_error!", "load mysql redis conf error!");
break;
}
}catch(const std::exception& ex)
{
//解析参数的参数的过程中,可以会抛出异常
std::string _message = ex.what();
std::cout << ex.what();
_message += "<br>hostname:";
_message += get_hostname();
SendEmail::send("Fcgi_load_conf_error!", format_send_email(_message));
break;
}
UrlRoute* _p = UrlRoute::instance();
_p->set_project("/ccfast");
_p->register_url("/love.do", love);
FcgiWorker<CcFastProgram> _fcgi;
_fcgi.run();
}while(0);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nbsnail/ccfast.git
git@gitee.com:nbsnail/ccfast.git
nbsnail
ccfast
ccfast
master

搜索帮助