dl-fldigi/src/misc/debug.cxx

286 wiersze
6.7 KiB
C++
Czysty Zwykły widok Historia

2008-08-26 22:33:34 +00:00
// ----------------------------------------------------------------------------
// debug.cxx
//
// Copyright (C) 2008-2010
2008-08-26 22:33:34 +00:00
// Stelios Bounanos, M0GLD
//
// This file is part of fldigi.
//
// fldigi is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// fldigi is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// ----------------------------------------------------------------------------
#include <config.h>
2009-04-17 18:17:55 +00:00
#ifdef __MINGW32__
# include "compat.h"
#endif
#include <sstream>
#include <fstream>
2008-08-26 22:33:34 +00:00
#include <cstdio>
#include <cstring>
#include <cstdarg>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <time.h>
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Slider.H>
2009-01-05 16:00:01 +00:00
#include <FL/Fl_Menu_Item.H>
#include <FL/Fl_Menu_Button.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Browser.H>
2008-08-26 22:33:34 +00:00
#include "debug.h"
#include "timeops.h"
#include "icons.h"
#include "gettext.h"
2008-08-26 22:33:34 +00:00
extern Fl_Double_Window *fl_digi_main;
extern void update_main_title();
2008-08-26 22:33:34 +00:00
using namespace std;
#define MAX_LINES 65536
static FILE* wfile = 0;
static FILE* rfile = 0;
2008-08-26 22:33:34 +00:00
static size_t nlines = 0;
static int rfd;
static bool tty;
static Fl_Double_Window* window;
static Fl_Browser* btext;
static string dbg_buffer;
static string linebuf;
2008-08-26 22:33:34 +00:00
debug* debug::inst = 0;
debug::level_e debug::level = debug::INFO_LEVEL;
2009-01-05 16:00:01 +00:00
uint32_t debug::mask = ~0u;
2008-08-26 22:33:34 +00:00
static const char* prefix[] = {
_("Quiet"), _("Error"), _("Warning"), _("Info"), _("Verbose"), _("Debug")
};
2008-08-26 22:33:34 +00:00
static void slider_cb(Fl_Widget* w, void*);
2009-01-05 16:00:01 +00:00
static void src_menu_cb(Fl_Widget* w, void*);
static void clear_cb(Fl_Widget *w, void*);
2009-01-05 16:00:01 +00:00
Fl_Menu_Item src_menu[] = {
{ _("ARQ control"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
2009-01-05 16:00:01 +00:00
{ _("Audio"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
{ _("Modem"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
{ _("Rig control"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
{ _("RPC"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
{ _("Spotter"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE | FL_MENU_DIVIDER },
{ _("Other"), 0, 0, 0, FL_MENU_TOGGLE | FL_MENU_VALUE },
{ 0 }
};
#include <iostream>
void debug::rotate_log(const char* filename)
{
const int n = 5; // rename existing log files to keep up to 5 old versions
ostringstream oldfn, newfn;
ostringstream::streampos p;
oldfn << filename << '.';
newfn << filename << '.';
p = oldfn.tellp();
for (int i = n - 1; i > 0; i--) {
oldfn.seekp(p);
newfn.seekp(p);
oldfn << i;
newfn << i + 1;
rename(oldfn.str().c_str(), newfn.str().c_str());
}
rename(filename, oldfn.str().c_str());
}
2008-08-26 22:33:34 +00:00
void debug::start(const char* filename)
{
if (debug::inst)
return;
rotate_log(filename);
2008-08-26 22:33:34 +00:00
inst = new debug(filename);
window = new Fl_Double_Window(600, 200, _("Event log"));
2008-08-26 22:33:34 +00:00
window->xclass(PACKAGE_TARNAME);
int pad = 2;
2009-01-05 16:00:01 +00:00
Fl_Menu_Button* button = new Fl_Menu_Button(pad, pad, 128, 20, _("Log sources"));
button->menu(src_menu);
button->callback(src_menu_cb);
Fl_Slider* slider = new Fl_Slider(button->x() + button->w() + pad, pad, 128, 20, prefix[level]);
slider->tooltip(_("Change log level"));
2008-08-26 22:33:34 +00:00
slider->align(FL_ALIGN_RIGHT);
slider->type(FL_HOR_NICE_SLIDER);
slider->range(0.0, LOG_NLEVELS - 1);
2008-08-26 22:33:34 +00:00
slider->step(1.0);
slider->value(level);
slider->callback(slider_cb);
Fl_Button* clearbtn = new Fl_Button(window->w() - 64, pad, 60, 20, "clear");
clearbtn->callback(clear_cb);
btext = new Fl_Browser(pad, slider->h()+pad, window->w()-2*pad, window->h()-slider->h()-2*pad, 0);
btext->textfont(FL_COURIER);
btext->textsize(14);
window->resizable(btext);
dbg_buffer.clear();
2008-08-26 22:33:34 +00:00
window->end();
}
void debug::stop(void)
{
if (window) {
window->hide();
delete window;
}
if (inst) {
delete inst;
inst = 0;
}
2008-08-26 22:33:34 +00:00
}
static char fmt[1024];
void debug::log(level_e level, const char* func, const char* srcf, int line, const char* format, ...)
{
if (!inst)
return;
if (unlikely(debug::level == DEBUG_LEVEL) || DEBUG_PSKMAIL) {
2008-08-26 22:33:34 +00:00
time_t t = time(NULL);
struct tm stm;
(void)localtime_r(&t, &stm);
snprintf(fmt, sizeof(fmt), "%c: [%02d:%02d:%02d] %s:%d: %s\n",
*prefix[level], stm.tm_hour, stm.tm_min, stm.tm_sec, srcf, line, format);
}
else
snprintf(fmt, sizeof(fmt), "%c: %s: %s\n", *prefix[level], func, format);
va_list args;
va_start(args, format);
2009-04-17 18:17:55 +00:00
intptr_t nw = vfprintf(wfile, fmt, args);
2008-08-26 22:33:34 +00:00
va_end(args);
if (tty) {
if (level <= DEBUG_LEVEL && level > QUIET_LEVEL) {
va_start(args, format);
vfprintf(stderr, fmt, args);
va_end(args);
}
}
2009-04-17 18:17:55 +00:00
#ifdef __MINGW32__
fflush(wfile);
#endif
2008-08-26 22:33:34 +00:00
Fl::awake(sync_text, (void*)nw);
2008-08-26 22:33:34 +00:00
}
void debug::elog(const char* func, const char* srcf, int line, const char* text)
{
log(ERROR_LEVEL, func, srcf, line, "%s: %s", text, strerror(errno));
2008-08-26 22:33:34 +00:00
}
void debug::show(void)
{
window->show();
}
static char buf[BUFSIZ+1];
2009-04-17 18:17:55 +00:00
void debug::sync_text(void* arg)
2008-08-26 22:33:34 +00:00
{
2009-04-17 18:17:55 +00:00
intptr_t toread = (intptr_t)arg;
size_t block = MIN((size_t)toread, sizeof(buf) - 1);
2008-08-26 22:33:34 +00:00
ssize_t n;
2009-04-17 18:17:55 +00:00
while (toread > 0) {
if ((n = read(rfd, buf, block)) <= 0)
break;
2008-08-26 22:33:34 +00:00
if (unlikely(++nlines > MAX_LINES)) {
btext->clear();
2008-08-26 22:33:34 +00:00
nlines = 0;
}
2009-04-17 18:17:55 +00:00
buf[n] = '\0';
linebuf = buf;
if (linebuf[linebuf.length() - 1] != '\n')
linebuf += '\n';
size_t p1 = 0, p2 = linebuf.find("\n");
while( p2 != string::npos) {
btext->insert(1, linebuf.substr(p1, p2 - p1).c_str());
dbg_buffer.append(linebuf.substr(p1, p2 - p1)).append("\n");
p1 = p2 + 1;
p2 = linebuf.find("\n", p1);
}
2009-04-17 18:17:55 +00:00
toread -= n;
2008-08-26 22:33:34 +00:00
}
}
debug::debug(const char* filename)
{
if ((wfile = fopen(filename, "w")) == NULL)
throw strerror(errno);
2009-04-17 18:17:55 +00:00
setvbuf(wfile, (char*)NULL, _IOLBF, 0);
2008-09-02 15:04:43 +00:00
set_cloexec(fileno(wfile), 1);
2008-08-26 22:33:34 +00:00
if ((rfile = fopen(filename, "r")) == NULL)
throw strerror(errno);
rfd = fileno(rfile);
2008-09-02 15:04:43 +00:00
set_cloexec(rfd, 1);
2009-04-17 18:17:55 +00:00
#ifndef __MINGW32__
2008-08-26 22:33:34 +00:00
int f;
if ((f = fcntl(rfd, F_GETFL)) == -1)
throw strerror(errno);
if (fcntl(rfd, F_SETFL, f | O_NONBLOCK) == -1)
throw strerror(errno);
2009-04-17 18:17:55 +00:00
#endif
2008-09-02 15:04:43 +00:00
tty = isatty(fileno(stderr));
2008-08-26 22:33:34 +00:00
}
debug::~debug()
{
if (wfile) fclose(wfile);
if (rfile) fclose(rfile);
2008-08-26 22:33:34 +00:00
}
static void slider_cb(Fl_Widget* w, void*)
{
2009-01-05 16:00:01 +00:00
debug::level = (debug::level_e)((Fl_Slider*)w)->value();
w->label(prefix[debug::level]);
w->parent()->redraw();
}
static void src_menu_cb(Fl_Widget* w, void*)
{
debug::mask ^= 1 << ((Fl_Menu_*)w)->value();
2008-08-26 22:33:34 +00:00
}
static void clear_cb(Fl_Widget* w, void*)
{
btext->clear();
dbg_buffer.clear();
}