summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/config_msg.cpp
blob: f30e677159f36ebe5047b8ea690cf7d81a24302c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <QString>
#include "config_msg.h"
#include "doxywizard.h"

static QString warning_str = QString::fromLatin1("warning: ");
static QString error_str = QString::fromLatin1("error: ");

void config_err(const char *fmt, ...)
{
  QString msg = error_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  if (DoxygenWizard::debugFlag)
  {
    char debugOut[1000]; // this size should be sufficient
    vsnprintf(debugOut, 1000,qPrintable(msg), args);
    MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  }
  else
  {
    vfprintf(stderr, qPrintable(msg), args);
  }
  va_end(args);
}

void config_term(const char *fmt, ...)
{
  QString msg = error_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  if (DoxygenWizard::debugFlag)
  {
    char debugOut[1000]; // this size should be sufficient
    vsnprintf(debugOut, 1000,qPrintable(msg), args);
    MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  }
  else
  {
    vfprintf(stderr, qPrintable(msg), args);
  }
  va_end(args);
  exit(1);
}

void config_warn(const char *fmt, ...)
{
  QString msg = warning_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  if (DoxygenWizard::debugFlag)
  {
    char debugOut[1000];
    vsnprintf(debugOut, 1000,qPrintable(msg), args);
    MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  }
  else
  {
    vfprintf(stderr, qPrintable(msg), args);
  }
  va_end(args);
}

void config_open()
{
  if (DoxygenWizard::debugFlag)
  {
    MainWindow::instance().outputLogStart();
  }
}

void config_finish()
{
  if (DoxygenWizard::debugFlag)
  {
    MainWindow::instance().outputLogFinish();
  }
}