logging.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright 2011-2012 Con Kolivas
  3. * Copyright 2013 Andrew Smith
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the Free
  7. * Software Foundation; either version 3 of the License, or (at your option)
  8. * any later version. See COPYING for more details.
  9. */
  10. #include "config.h"
  11. #include <unistd.h>
  12. #include "logging.h"
  13. #include "miner.h"
  14. bool opt_debug = false;
  15. bool opt_log_output = false;
  16. /* per default priorities higher than LOG_NOTICE are logged */
  17. int opt_log_level = LOG_NOTICE;
  18. FILE * g_log_file = NULL;
  19. bool g_logfile_enable = false;
  20. char g_logfile_path[256] = {0};
  21. char g_logfile_openflag[32] = {0};
  22. static void my_log_curses(int prio, const char *datetime, const char *str, bool force)
  23. {
  24. if (opt_quiet && prio != LOG_ERR)
  25. return;
  26. /* Mutex could be locked by dead thread on shutdown so forcelog will
  27. * invalidate any console lock status. */
  28. if (force) {
  29. mutex_trylock(&console_lock);
  30. mutex_unlock(&console_lock);
  31. }
  32. #ifdef HAVE_CURSES
  33. extern bool use_curses;
  34. if (use_curses && log_curses_only(prio, datetime, str))
  35. ;
  36. else
  37. #endif
  38. {
  39. mutex_lock(&console_lock);
  40. printf("%s%s%s", datetime, str, " \n");
  41. mutex_unlock(&console_lock);
  42. }
  43. }
  44. /* high-level logging function, based on global opt_log_level */
  45. /*
  46. * log function
  47. */
  48. void _applog(int prio, const char *str, bool force)
  49. {
  50. #ifdef HAVE_SYSLOG_H
  51. if (use_syslog) {
  52. syslog(LOG_LOCAL0 | prio, "%s", str);
  53. }
  54. #else
  55. if (0) {}
  56. #endif
  57. else {
  58. char datetime[64];
  59. struct timeval tv = {0, 0};
  60. struct tm *tm;
  61. cgtime(&tv);
  62. const time_t tmp_time = tv.tv_sec;
  63. tm = localtime(&tmp_time);
  64. snprintf(datetime, sizeof(datetime), " [%d-%02d-%02d %02d:%02d:%02d] ",
  65. tm->tm_year + 1900,
  66. tm->tm_mon + 1,
  67. tm->tm_mday,
  68. tm->tm_hour,
  69. tm->tm_min,
  70. tm->tm_sec);
  71. /* Only output to stderr if it's not going to the screen as well */
  72. if (!isatty(fileno((FILE *)stderr))) {
  73. fprintf(stderr, "%s%s\n", datetime, str); /* atomic write to stderr */
  74. fflush(stderr);
  75. }
  76. if(g_logfile_enable) {
  77. if(!g_log_file) {
  78. g_log_file = fopen(g_logfile_path, g_logfile_openflag);
  79. }
  80. if(g_log_file) {
  81. fwrite(datetime, strlen(datetime), 1, g_log_file);
  82. fwrite(str, strlen(str), 1, g_log_file);
  83. fwrite("\n", 1, 1, g_log_file);
  84. fflush(g_log_file);
  85. }
  86. }
  87. my_log_curses(prio, datetime, str, force);
  88. }
  89. }
  90. void _simplelog(int prio, const char *str, bool force)
  91. {
  92. #ifdef HAVE_SYSLOG_H
  93. if (use_syslog) {
  94. syslog(LOG_LOCAL0 | prio, "%s", str);
  95. }
  96. #else
  97. if (0) {}
  98. #endif
  99. else {
  100. /* Only output to stderr if it's not going to the screen as well */
  101. if (!isatty(fileno((FILE *)stderr))) {
  102. fprintf(stderr, "%s\n", str); /* atomic write to stderr */
  103. fflush(stderr);
  104. }
  105. my_log_curses(prio, "", str, force);
  106. }
  107. }