9 Star 35 Fork 13

Josin / mbinlogmq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.c 3.22 KB
一键复制 编辑 原始数据 按行查看 历史
liqiongfan 提交于 2019-07-25 21:37 . Fix main.c
/**
* Copyright @2019 Josin All Rights Reserved.
* Author: Josin
* Email : xeapplee@gmail.com
*/
#include <getopt.h>
#include <fc_config.h>
#include <mysql_binlog.h>
#include <endian.h>
int main(int argc, char *argv[])
{
int opt;
int oi;
long pid, re;
char *bff, *os = "r:n::";
oi = 0;
static struct option lo[] =
{
{"k", 1, NULL, 'r'},
{"help", 0, NULL, 'n'},
{NULL, 0, NULL, 0 },
};
if ( argc == 1 )
{
goto print_help;
}
while ( ( opt =
getopt_long_only( argc, argv, os, lo, &oi ) ) != -1 )
{
switch (opt)
{
case 'r':
if ( e_memcmp(optarg, E_STRL("start")) == 0 )
{
mb_begin_slave();
}
elif ( e_memcmp(optarg, E_STRL("restart")) == 0 )
{
bff = e_data_from_file(PIDFILE, NULL);
if ( bff ) {
errno = 0;
pid = strtol( bff, NULL, 10);
if ( pid != 0 )
{
re = kill( (int)pid, 0);
if ( re == 0 || ( re != -1 || errno == EPERM ) )
{
kill( (int)pid, SIGUSR2);
}
}
sleep(1);
mb_begin_slave();
} else {
mb_begin_slave();
}
}
elif ( e_memcmp(optarg, E_STRL("stop")) == 0 )
{
bff = e_data_from_file(PIDFILE, NULL);
if ( bff ) {
errno = 0;
pid = strtol( bff, NULL, 10);
if ( pid != 0 ) {
re = kill( (int)pid, 0);
if ( re == 0 || ( re != -1 || errno == EPERM ) )
{
kill((int)strtol(bff, NULL, 10), SIGUSR2);
} else {
fprintf(stdout, "mbinlogmq is not running.\n");
}
} else {
fprintf(stdout, "mbinlogmq is not running.\n");
}
} else {
fprintf(stdout, "mbinlogmq is not running.\n");
}
e_write_to_file(PIDFILE, "");
}
else
{
fprintf(stderr, "mbinlogmq --k [restart|start|stop]\n");
}
break;
case 'n':
goto print_help;
default:
break;
}
}
return 0;
print_help:
fprintf(
stdout,
"Usage: minlogmq [OPTION]... \n"
"A tool written in C to sync data from MySQL, using MySQL binlog Replication protocol."
"\n\n"
"OPTIONs: \n"
" -h, --help Display this help and mbinlogmq\n"
" -k, --k [restart|start|stop] Restart|Start|Stop mbinlogmq\n"
);
}
C
1
https://gitee.com/josinli/mbinlogmq.git
git@gitee.com:josinli/mbinlogmq.git
josinli
mbinlogmq
mbinlogmq
release

搜索帮助