Imported Upstream version 0.3
[anytun.git] / src / log.cpp
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, 
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License version 3 as
21  *  published by the Free Software Foundation.
22  *
23  *  Anytun is distributed in the hope that it will be useful,
24  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *  GNU General Public License for more details.
27  *
28  *  You should have received a copy of the GNU General Public License
29  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 #include <iostream>
33 #include <string>
34 #include "log.h"
35
36 #include "threadUtils.hpp"
37
38 Log* Log::inst = NULL;
39 Mutex Log::instMutex;
40 Log& cLog = Log::instance();
41
42 LogStringBuilder::LogStringBuilder(LogStringBuilder const& src) : log(src.log), prio(src.prio) 
43 {
44   stream << src.stream.str();
45 }
46
47 LogStringBuilder::LogStringBuilder(Log& l, int p) : log(l), prio(p) 
48 {
49       // do something on the start of the line.
50 }
51
52 LogStringBuilder::~LogStringBuilder() 
53 {
54   log.log(stream.str(), prio);
55 }
56
57 Log& Log::instance()
58 {
59   Lock lock(instMutex);
60   static instanceCleaner c;
61   if(!inst)
62     inst = new Log();
63   
64   return *inst;
65 }
66
67 void Log::addTarget(std::string conf)
68 {
69   Lock lock(mutex);
70   LogTarget* target = targets.add(conf);
71   target->open();
72   if(target->getMaxPrio() > 0)
73     target->enable();
74 }
75
76 void Log::addTarget(LogTargetList::target_type_t type, int prio, std::string conf)
77 {
78   Lock lock(mutex);
79   LogTarget* target = targets.add(type, prio, conf);
80   target->open();
81   if(target->getMaxPrio() > 0)
82     target->enable();
83 }
84
85 void Log::log(std::string msg, int prio)
86 {
87   Lock lock(mutex);
88   targets.log(msg, prio);
89 }
90
91 std::string Log::prioToString(int prio)
92 {
93   switch(prio) {
94   case PRIO_ERROR: return "ERROR";
95   case PRIO_WARNING: return "WARNING";
96   case PRIO_NOTICE: return "NOTICE";
97   case PRIO_INFO: return "INFO";
98   case PRIO_DEBUG: return "DEBUG";
99   default: return "UNKNOWN";
100   }
101 }