]> cygwin.com Git - cygwin-apps/setup.git/blob - LogSingleton.cc
Suppress bogus free-nonheap-object warning in iniparse.cc
[cygwin-apps/setup.git] / LogSingleton.cc
1 /*
2 * Copyright (c) 2002, Robert Collins..
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Robert Collins <rbtcollins@hotmail.com>
13 *
14 */
15
16 #include "LogSingleton.h"
17 #include <stdexcept>
18 #include <stdarg.h>
19
20 /* Helper functions */
21
22 /* End of a Log comment */
23 std::ostream& endLog(std::ostream& outs)
24 {
25 /* Doesn't seem to be any way around this */
26 dynamic_cast<LogSingleton &>(outs).endEntry();
27 return outs;
28 }
29
30 /* The LogSingleton class */
31
32 LogSingleton * LogSingleton::theInstance(0);
33
34 LogSingleton::LogSingleton(std::streambuf* aStream) : std::ios (aStream), std::ostream (aStream)
35 {
36 std::ios::init (aStream);
37 }
38 LogSingleton::~LogSingleton(){}
39
40 LogSingleton &
41 LogSingleton::GetInstance()
42 {
43 if (!theInstance)
44 throw new std::invalid_argument ("No instance has been set!");
45 return *theInstance;
46 }
47
48 void
49 LogSingleton::SetInstance(LogSingleton &newInstance)
50 {
51 theInstance = &newInstance;
52 }
53
54 // Log adapators for printf-style output
55 void
56 LogBabblePrintf(const char *fmt, ...)
57 {
58 int len;
59 char buf[8192];
60 va_list args;
61 va_start (args, fmt);
62 len = vsnprintf (buf, 8192, fmt, args);
63 if ((len > 0) && (buf[len-1] == '\n'))
64 buf[len-1] = 0;
65 Log (LOG_BABBLE) << buf << endLog;
66 }
67
68 void
69 LogPlainPrintf(const char *fmt, ...)
70 {
71 int len;
72 char buf[8192];
73 va_list args;
74 va_start (args, fmt);
75 len = vsnprintf (buf, 8192, fmt, args);
76 if ((len > 0) && (buf[len-1] == '\n'))
77 buf[len-1] = 0;
78 Log (LOG_PLAIN) << buf << endLog;
79 }
This page took 0.037641 seconds and 5 git commands to generate.