]> cygwin.com Git - cygwin-apps/setup.git/blame - LogSingleton.cc
2007-02-17 Brian Dessent <brian@dessent.net>
[cygwin-apps/setup.git] / LogSingleton.cc
CommitLineData
9f4a0c62
RC
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
6625e635
RC
19using namespace std;
20
9f4a0c62
RC
21/* Helper functions */
22
23/* End of a Log comment */
24ostream& endLog(ostream& outs)
25{
26 /* Doesn't seem to be any way around this */
27 dynamic_cast<LogSingleton &>(outs).endEntry();
28 return outs;
29}
30
31/* The LogSingleton class */
32
33LogSingleton * LogSingleton::theInstance(0);
34
c83c52d8
RC
35LogSingleton::LogSingleton(std::streambuf* aStream) : ios (aStream), ostream (aStream)
36{
37 ios::init (aStream);
38}
9f4a0c62
RC
39LogSingleton::~LogSingleton(){}
40
41LogSingleton &
42LogSingleton::GetInstance()
43{
44 if (!theInstance)
45 throw new invalid_argument ("No instance has been set!");
46 return *theInstance;
47}
48
49void
50LogSingleton::SetInstance(LogSingleton &newInstance)
51{
52 theInstance = &newInstance;
53}
54
55#if 0
56// Logging class. Default logging level is PLAIN.
57class LogSingleton : public ostream
58{
59public:
60 // Singleton support
61 /* Some platforms don't call destructors. So this call exists
62 * which guarantees to flush any log data...
63 * but doesn't call generic C++ destructors
64 */
65 virtual void exit (int const exit_code) __attribute__ ((noreturn));
66 // get a specific verbosity stream.
67 virtual ostream &operator() (enum log_level level);
68
69 friend ostream& endLog(ostream& outs);
70
71protected:
72 LogSingleton (LogSingleton const &); // no copy constructor
73 LogSingleton &operator = (LogSingleton const&); // no assignment operator
74 void endEntry(); // the current in-progress entry is complete.
75private:
76 static LogSingleton *theInstance;
77};
78#endif
This page took 0.04573 seconds and 5 git commands to generate.