pomo/spt.c

143 lines
2.5 KiB
C
Raw Normal View History

2015-11-28 13:08:54 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#ifdef NOTIFY
2015-11-28 13:08:54 +00:00
#include <libnotify/notify.h>
#endif /* NOTIFY */
2015-11-28 13:08:54 +00:00
#include "arg.h"
char *argv0;
/* macros */
2016-07-11 10:47:18 +00:00
#define LEN(a) (sizeof(a) / sizeof(a[0]))
2015-11-28 13:08:54 +00:00
typedef struct {
unsigned int tmr;
char *cmt;
} Timers;
2015-11-28 13:08:54 +00:00
#include "config.h"
2016-07-12 08:51:26 +00:00
static int i, timecount, inc;
2015-11-28 13:08:54 +00:00
/* function declarations */
static void die(const char *errstr, ...);
2016-07-11 11:36:15 +00:00
static void spawn(char *cmd, char *cmt);
static void notify_send(char *cmt);
static void remaining_time(int sigint);
2016-07-12 08:51:26 +00:00
static void toggle(int sigint);
2015-11-28 13:08:54 +00:00
static void usage(void);
/* functions implementations */
void
die(const char *errstr, ...)
{
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
2016-07-11 11:36:15 +00:00
exit(1);
}
void
spawn(char *cmd, char *cmt)
{
if (fork() == 0) {
setsid();
execlp(cmd, cmd, "spt", cmt, NULL);
die("spt: execlp %s\n", cmd);
perror(" failed");
exit(0);
}
2015-11-28 13:08:54 +00:00
}
void
notify_send(char *cmt)
{
#ifdef NOTIFY
notify_init("spt");
NotifyNotification *n = notify_notification_new("spt", cmt, \
"dialog-information");
notify_notification_show(n, NULL);
g_object_unref(G_OBJECT(n));
notify_uninit();
#else
2016-07-11 10:47:18 +00:00
if (strcmp(notifycmd, "")) /* TODO: call function in config.h */
2016-07-11 11:36:15 +00:00
spawn(notifycmd, cmt);
#endif /* NOTIFY */
2015-11-28 13:08:54 +00:00
if (strcmp(notifyext, "")) /* extra commands to use */
2016-07-11 11:36:15 +00:00
spawn(notifyext, NULL);
2015-11-28 13:08:54 +00:00
}
void
remaining_time(int sigint)
{
2016-07-11 11:36:15 +00:00
char buf[17];
if (signal(SIGUSR1, SIG_IGN) != SIG_IGN)
signal(SIGUSR1, remaining_time);
2016-07-11 11:36:15 +00:00
snprintf(buf, 17, "Remaining: %02d:%02d\n",
(timers[i].tmr - timecount) / 60,
(timers[i].tmr - timecount) % 60);
2016-07-11 11:36:15 +00:00
notify_send(buf);
}
2016-07-12 08:51:26 +00:00
void
toggle(int sigint) {
if (signal(SIGUSR2, SIG_IGN) != SIG_IGN)
signal(SIGUSR2, toggle);
inc ^= 1;
}
2015-11-28 13:08:54 +00:00
void
usage(void)
{
die("usage: %s [-e notifyext] [-n notifycmd] [-v]\n", argv0);
}
int
main(int argc, char *argv[])
{
2016-07-12 08:51:26 +00:00
inc = 1;
2015-11-28 13:08:54 +00:00
ARGBEGIN {
case 'e':
notifyext = EARGF(usage());
break;
case 'n':
notifycmd = EARGF(usage());
break;
case 'v':
die("spt " VERSION " © 2015 spt engineers, "
"see LICENSE for details\n");
default:
usage();
break;
} ARGEND;
if (signal(SIGUSR1, SIG_IGN) != SIG_IGN)
signal(SIGUSR1, remaining_time);
2016-07-12 08:51:26 +00:00
if (signal(SIGUSR2, SIG_IGN) != SIG_IGN)
signal(SIGUSR2, toggle);
2015-11-28 13:08:54 +00:00
run:
notify_send(timers[i].cmt);
2016-07-12 08:51:26 +00:00
for (timecount = 0; timecount < timers[i].tmr; timecount += inc)
sleep(1);
if (++i >= LEN(timers)) i = 0; /* i infinal loop */
2015-11-28 13:08:54 +00:00
goto run;
return 0;
}