X-Git-Url: http://pileus.org/git/?p=lackey;a=blobdiff_plain;f=src%2Futil.c;h=d74a7469d0914c23a909140066c95ec3d501775d;hp=e3f3a43a8015cb630302d507b45c66f8f7b43a02;hb=39c440444ff38c0e1702209c67cf018b92c71882;hpb=035bf3a6553362883c2451c36afc7766002941a3 diff --git a/src/util.c b/src/util.c index e3f3a43..d74a746 100644 --- a/src/util.c +++ b/src/util.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Andy Spencer + * Copyright (C) 2012-2013 Andy Spencer * * 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 @@ -15,19 +15,28 @@ * along with this program. If not, see . */ +#define _XOPEN_SOURCE +#define _XOPEN_SOURCE_EXTENDED + #include #include +#include #include -#include #include "date.h" #include "cal.h" #include "view.h" #include "util.h" +#pragma weak view_exit +#pragma weak view_debug + /* Static data */ static FILE *debug_fd = NULL; +/* View debugging */ +extern void view_debug(const char *fmt, va_list ap); + /* Helper functions */ static void message(FILE *output_fd, const char *prefix, const char *fmt, va_list ap) { @@ -39,6 +48,7 @@ static void message(FILE *output_fd, const char *prefix, const char *fmt, va_lis fprintf(output_fd, "%s: ", prefix); vfprintf(output_fd, fmt, tmp); fprintf(output_fd, "\n"); + fflush(output_fd); } /* Log to debug file */ @@ -47,17 +57,13 @@ static void message(FILE *output_fd, const char *prefix, const char *fmt, va_lis fprintf(debug_fd, "%s: ", prefix); vfprintf(debug_fd, fmt, tmp); fprintf(debug_fd, "\n"); + fflush(debug_fd); } /* Log to status bar */ - if (stdscr) { + if (&view_debug) { va_copy(tmp, ap); - mvhline(LINES-2, 0, ACS_HLINE, COLS); - move(LINES-1, 0); - attron(COLOR_PAIR(COLOR_ERROR)); - vwprintw(stdscr, fmt, tmp); - attroff(COLOR_PAIR(COLOR_ERROR)); - clrtoeol(); + view_debug(fmt, tmp); } } @@ -75,6 +81,64 @@ void strsub(char *str, char find, char repl) *cur = repl; } +char *strcopy(const char *str) +{ + if (str == NULL) + return NULL; + return strdup(str); +} + +int match(const char *a, const char *b) +{ + if (a == b) + return 1; + if (!a || !b) + return 0; + return !strcmp(a, b); +} + +/* Memory functions */ +void *alloc0(int size) +{ + void *data = calloc(1, size); + if (!data) + error("memory allocation failed"); + return data; +} + +/* File functions */ +char *read_file(const char *path, int *len) +{ + /* we could use stat, but we'll try to be portable */ + FILE *fd = fopen(path, "rt+"); + if (!fd) + return NULL; + + int block = 512; // read size + int size = 512; // buffer size + int slen = 0; // string length + char *buf = malloc(size); + if (!buf) + goto err; + + while (!feof(fd)) { + if (slen + block + 1 > size) { + size *= 2; + buf = realloc(buf, size); + if (!buf) + goto err; + } + slen += fread(&buf[slen], 1, block, fd); + buf[slen] = '\0'; + } + +err: + if (len) + *len = slen; + fclose(fd); + return buf; +} + /* Debugging functions */ void debug(char *fmt, ...) { @@ -92,9 +156,7 @@ void error(char *fmt, ...) fflush(stderr); message(stderr, "error", fmt, ap); va_end(ap); - if (stdscr) { - getch(); - endwin(); - } + if (view_exit) + view_exit(); exit(-1); }