mirror of
https://github.com/eddyem/small_tel.git
synced 2025-12-06 10:45:16 +03:00
88 lines
2.8 KiB
C
88 lines
2.8 KiB
C
/*
|
|
* This file is part of the weatherdaemon project.
|
|
* Copyright 2021 Edward V. Emelianov <edward.emelianoff@gmail.com>.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/wait.h> // wait
|
|
#include <sys/prctl.h> //prctl
|
|
#include <usefull_macros.h>
|
|
|
|
#include "bta_shdata.h"
|
|
#include "cmdlnopts.h"
|
|
#include "socket.h"
|
|
#include "term.h"
|
|
|
|
glob_pars *GP;
|
|
|
|
void signals(int signo){
|
|
sl_restore_con();
|
|
if(ttydescr) sl_tty_close(&ttydescr);
|
|
LOGERR("exit with status %d", signo);
|
|
exit(signo);
|
|
}
|
|
|
|
int main(int argc, char **argv){
|
|
sl_init();
|
|
signal(SIGTERM, signals); // kill (-15) - quit
|
|
signal(SIGHUP, SIG_IGN); // hup - ignore
|
|
signal(SIGINT, signals); // ctrl+C - quit
|
|
signal(SIGQUIT, signals); // ctrl+\ - quit
|
|
signal(SIGTSTP, SIG_IGN); // ignore ctrl+Z
|
|
#ifndef EBUG
|
|
char *self = strdup(argv[0]);
|
|
#endif
|
|
GP = parse_args(argc, argv);
|
|
if(GP->logfile){
|
|
sl_loglevel_e lvl = LOGLEVEL_ERR;
|
|
for(; GP->verb && lvl < LOGLEVEL_ANY; --GP->verb) ++lvl;
|
|
DBG("Loglevel: %d", lvl);
|
|
if(!OPENLOG(GP->logfile, lvl, 1)) ERRX("Can't open log file");
|
|
LOGERR("Started");
|
|
}
|
|
#ifndef EBUG
|
|
sl_check4running(self, GP->pidfile);
|
|
while(1){ // guard for dead processes
|
|
pid_t childpid = fork();
|
|
if(childpid){
|
|
LOGDBG("create child with PID %d\n", childpid);
|
|
DBG("Created child with PID %d\n", childpid);
|
|
wait(NULL);
|
|
WARNX("Child %d died\n", childpid);
|
|
LOGWARN("Child %d died\n", childpid);
|
|
sleep(1);
|
|
}else{
|
|
prctl(PR_SET_PDEATHSIG, SIGTERM); // send SIGTERM to child when parent dies
|
|
break; // go out to normal functional
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if(!get_shm_block( &sdat, ClientSide)) WARNX("Can't get BTA shared memory block");
|
|
if(GP->device) if(!try_connect(GP->device, GP->tty_speed)){
|
|
LOGERR("Can't connect to device");
|
|
ERRX("Can't connect to device");
|
|
}
|
|
if(!GP->device && !GP->emul){
|
|
LOGERR("Need serial device name or emulation flag");
|
|
ERRX("Need serial device name or emulation flag");
|
|
}
|
|
daemonize(GP->port);
|
|
return 0;
|
|
}
|