Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com> |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 5 | * Copyright (C) 2011 Carl-Daniel Hailfinger |
Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | #include <stdio.h> |
| 23 | #include <stdarg.h> |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 24 | #include <string.h> |
| 25 | #include <errno.h> |
Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 26 | #include "flash.h" |
| 27 | |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame^] | 28 | int verbose_screen = MSG_INFO; |
| 29 | int verbose_logfile = MSG_DEBUG2; |
| 30 | |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 31 | #ifndef STANDALONE |
| 32 | static FILE *logfile = NULL; |
| 33 | |
| 34 | int close_logfile(void) |
| 35 | { |
| 36 | if (!logfile) |
| 37 | return 0; |
| 38 | /* No need to call fflush() explicitly, fclose() already does that. */ |
| 39 | if (fclose(logfile)) { |
| 40 | /* fclose returned an error. Stop writing to be safe. */ |
| 41 | logfile = NULL; |
Stefan Tauner | c2eec2c | 2014-05-03 21:33:01 +0000 | [diff] [blame] | 42 | msg_gerr("Closing the log file returned error %s\n", strerror(errno)); |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 43 | return 1; |
| 44 | } |
| 45 | logfile = NULL; |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | int open_logfile(const char * const filename) |
| 50 | { |
| 51 | if (!filename) { |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 52 | msg_gerr("No logfile name specified.\n"); |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 53 | return 1; |
| 54 | } |
| 55 | if ((logfile = fopen(filename, "w")) == NULL) { |
Stefan Tauner | 363fd7e | 2013-04-07 13:08:30 +0000 | [diff] [blame] | 56 | msg_gerr("Error: opening log file \"%s\" failed: %s\n", filename, strerror(errno)); |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 57 | return 1; |
| 58 | } |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | void start_logging(void) |
| 63 | { |
| 64 | enum msglevel oldverbose_screen = verbose_screen; |
| 65 | |
| 66 | /* Shut up the console. */ |
| 67 | verbose_screen = MSG_ERROR; |
| 68 | print_version(); |
| 69 | verbose_screen = oldverbose_screen; |
| 70 | } |
| 71 | #endif /* !STANDALONE */ |
| 72 | |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 73 | /* Please note that level is the verbosity, not the importance of the message. */ |
| 74 | int print(enum msglevel level, const char *fmt, ...) |
Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 75 | { |
| 76 | va_list ap; |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 77 | int ret = 0; |
| 78 | FILE *output_type = stdout; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 79 | |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 80 | if (level < MSG_INFO) |
Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 81 | output_type = stderr; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 82 | |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 83 | if (level <= verbose_screen) { |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 84 | va_start(ap, fmt); |
| 85 | ret = vfprintf(output_type, fmt, ap); |
| 86 | va_end(ap); |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 87 | /* msg_*spew often happens inside chip accessors in possibly |
| 88 | * time-critical operations. Don't slow them down by flushing. */ |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 89 | if (level != MSG_SPEW) |
| 90 | fflush(output_type); |
| 91 | } |
Carl-Daniel Hailfinger | 1c15548 | 2012-06-06 09:17:06 +0000 | [diff] [blame] | 92 | #ifndef STANDALONE |
| 93 | if ((level <= verbose_logfile) && logfile) { |
| 94 | va_start(ap, fmt); |
| 95 | ret = vfprintf(logfile, fmt, ap); |
| 96 | va_end(ap); |
| 97 | if (level != MSG_SPEW) |
| 98 | fflush(logfile); |
| 99 | } |
| 100 | #endif /* !STANDALONE */ |
Sean Nelson | 74aa772 | 2010-01-07 20:21:58 +0000 | [diff] [blame] | 101 | return ret; |
| 102 | } |