File: log.h

package info (click to toggle)
slim 1.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,792 kB
  • sloc: cpp: 4,383; sh: 200; makefile: 23
file content (59 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download | duplicates (2)
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
/* SLiM - Simple Login Manager
 *  Copyright (C) 1997, 1998 Per Liden
 *  Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
 *  Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
 *  Copyright (C) 2022-23 Rob Pearce <slim@flitspace.org.uk>
 *
 *  This program 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 2 of the License, or
 *  (at your option) any later version.
 */

#ifndef _LOG_H_
#define _LOG_H_

#ifdef USE_CONSOLEKIT
#include "Ck.h" 
#endif
#ifdef USE_PAM
#include "PAM.h"
#endif
#include <fstream>

using namespace std;

class LogUnit
{
	ofstream logFile;
	ostream * logOut;
public:
	bool openLog(const char * filename);
	void closeLog();

	LogUnit();

	~LogUnit() { closeLog(); }

	template<typename Type> LogUnit & operator<<(const Type & text)
	{
		*logOut << text; logOut->flush();
		return *this;
	}

	LogUnit & operator<<(ostream & (*fp)(ostream&))
	{
		*logOut << fp; logOut->flush();
		return *this;
	}

	LogUnit & operator<<(ios_base & (*fp)(ios_base&))
	{
		*logOut << fp; logOut->flush();
		return *this;
	}
};

extern LogUnit logStream;

#endif /* _LOG_H_ */