]> Pileus Git - lackey/blob - src/util.c
Add error command and update debug messages
[lackey] / src / util.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <ncurses.h>
22
23 #include "date.h"
24 #include "cal.h"
25 #include "view.h"
26 #include "util.h"
27
28 /* Static data */
29 static FILE *debug_fd = NULL;
30
31 /* Helper functions */
32 static void message(FILE *output_fd, const char *prefix, const char *fmt, va_list ap)
33 {
34         va_list tmp;
35
36         /* Log to standard out */
37         if (output_fd) {
38                 va_copy(tmp, ap);
39                 fprintf(output_fd, "%s: ", prefix);
40                 vfprintf(output_fd, fmt, tmp);
41                 fprintf(output_fd, "\n");
42         }
43
44         /* Log to debug file */
45         if (debug_fd) {
46                 va_copy(tmp, ap);
47                 fprintf(debug_fd, "%s: ", prefix);
48                 vfprintf(debug_fd, fmt, tmp);
49                 fprintf(debug_fd, "\n");
50         }
51
52         /* Log to status bar */
53         if (stdscr) {
54                 va_copy(tmp, ap);
55                 mvhline(LINES-2, 0, ACS_HLINE, COLS);
56                 move(LINES-1, 0);
57                 attron(COLOR_PAIR(COLOR_ERROR));
58                 vwprintw(stdscr, fmt, tmp);
59                 attroff(COLOR_PAIR(COLOR_ERROR));
60                 clrtoeol();
61         }
62 }
63
64 /* Initialize */
65 void util_init(void)
66 {
67         debug_fd = fopen("/tmp/lackey.log", "w+");
68 }
69
70 /* String functions */
71 void strsub(char *str, char find, char repl)
72 {
73         for (char *cur = str; *cur; cur++)
74                 if (*cur == find)
75                         *cur = repl;
76 }
77
78 /* Debugging functions */
79 void debug(char *fmt, ...)
80 {
81         va_list ap;
82         va_start(ap, fmt);
83         message(NULL, "debug", fmt, ap);
84         va_end(ap);
85 }
86
87 void error(char *fmt, ...)
88 {
89         va_list ap;
90         va_start(ap, fmt);
91         fflush(stdout);
92         fflush(stderr);
93         message(stderr, "error", fmt, ap);
94         va_end(ap);
95         if (stdscr) {
96                 getch();
97                 endwin();
98         }
99         exit(-1);
100 }