blob: f71bcef9aa5ad620fe693e87a14a1eb0e5e6d5f2 (
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
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#ifndef ICE_LOGGER_I_H
#define ICE_LOGGER_I_H
#include <Ice/Logger.h>
#include <Ice/StringConverter.h>
#include <fstream>
namespace Ice
{
class LoggerI : public Logger
{
public:
LoggerI(const std::string&, const std::string&, bool convert = true, std::size_t sizeMax = 0);
~LoggerI();
virtual void print(const std::string&);
virtual void trace(const std::string&, const std::string&);
virtual void warning(const std::string&);
virtual void error(const std::string&);
virtual std::string getPrefix();
virtual LoggerPtr cloneWithPrefix(const std::string&);
private:
void write(const std::string&, bool);
const std::string _prefix;
std::string _formattedPrefix;
const bool _convert;
const StringConverterPtr _converter;
std::ofstream _out;
std::string _file;
std::size_t _sizeMax;
//
// In case of a log file rename failure is set to the time in milliseconds
// after which rename could be attempted again. Otherwise is set to zero.
//
IceUtil::Time _nextRetry;
};
ICE_DEFINE_PTR(LoggerIPtr, LoggerI);
}
#endif
|