]> Pileus Git - lackey/blob - src/util.c
Add compact mode and view config data
[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 /* For testing */
29 #pragma weak COMPACT
30
31 /* Static data */
32 static FILE *debug_fd = NULL;
33
34 /* Helper functions */
35 static void message(FILE *output_fd, const char *prefix, const char *fmt, va_list ap)
36 {
37         va_list tmp;
38
39         /* Log to standard out */
40         if (output_fd) {
41                 va_copy(tmp, ap);
42                 fprintf(output_fd, "%s: ", prefix);
43                 vfprintf(output_fd, fmt, tmp);
44                 fprintf(output_fd, "\n");
45         }
46
47         /* Log to debug file */
48         if (debug_fd) {
49                 va_copy(tmp, ap);
50                 fprintf(debug_fd, "%s: ", prefix);
51                 vfprintf(debug_fd, fmt, tmp);
52                 fprintf(debug_fd, "\n");
53         }
54
55         /* Log to status bar */
56         if (&COMPACT && stdscr) {
57                 int rev = COMPACT ? A_BOLD : 0;
58                 va_copy(tmp, ap);
59                 if (!COMPACT)
60                         mvhline(LINES-2, 0, ACS_HLINE, COLS);
61                 move(LINES-1, 0);
62                 attron(COLOR_PAIR(COLOR_ERROR) | rev);
63                 vwprintw(stdscr, fmt, tmp);
64                 attroff(COLOR_PAIR(COLOR_ERROR) | rev);
65                 if (!COMPACT)
66                         clrtoeol();
67         }
68 }
69
70 /* Initialize */
71 void util_init(void)
72 {
73         debug_fd = fopen("/tmp/lackey.log", "w+");
74 }
75
76 /* String functions */
77 void strsub(char *str, char find, char repl)
78 {
79         for (char *cur = str; *cur; cur++)
80                 if (*cur == find)
81                         *cur = repl;
82 }
83
84 /* Memory functions */
85 void *alloc0(int size)
86 {
87         void *data = calloc(1, size);
88         if (!data)
89                 error("memory allocation failed");
90         return data;
91 }
92
93 /* Debugging functions */
94 void debug(char *fmt, ...)
95 {
96         va_list ap;
97         va_start(ap, fmt);
98         message(NULL, "debug", fmt, ap);
99         va_end(ap);
100 }
101
102 void error(char *fmt, ...)
103 {
104         va_list ap;
105         va_start(ap, fmt);
106         fflush(stdout);
107         fflush(stderr);
108         message(stderr, "error", fmt, ap);
109         va_end(ap);
110         if (stdscr) {
111                 getch();
112                 endwin();
113         }
114         exit(-1);
115 }