]> Pileus Git - lackey/blob - src/util.c
Add alloc0 and new0 functions
[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 /* Memory functions */
79 void *alloc0(int size)
80 {
81         void *data = calloc(1, size);
82         if (!data)
83                 error("memory allocation failed");
84         return data;
85 }
86
87 /* Debugging functions */
88 void debug(char *fmt, ...)
89 {
90         va_list ap;
91         va_start(ap, fmt);
92         message(NULL, "debug", fmt, ap);
93         va_end(ap);
94 }
95
96 void error(char *fmt, ...)
97 {
98         va_list ap;
99         va_start(ap, fmt);
100         fflush(stdout);
101         fflush(stderr);
102         message(stderr, "error", fmt, ap);
103         va_end(ap);
104         if (stdscr) {
105                 getch();
106                 endwin();
107         }
108         exit(-1);
109 }