summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/LoggerI.h
blob: 4ff54d73b417df43b6955adce526045399f817a9 (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
55
56
57
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#ifndef ICE_LOGGER_I_H
#define ICE_LOGGER_I_H

#include <Ice/Logger.h>
#include <IceUtil/FileUtil.h>
#include <IceUtil/StringConverter.h>

namespace Ice
{

class LoggerI : public Logger
{
public:

    LoggerI(const std::string&, const std::string&, bool convert = true,
            const IceUtil::StringConverterPtr& converter = 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 IceUtil::StringConverterPtr _converter;
    IceUtilInternal::ofstream _out;

    std::string _file;

#if defined(_WIN32) && !defined(ICE_OS_WINRT)
    const IceUtil::StringConverterPtr _consoleConverter;
#endif

};

typedef IceUtil::Handle<LoggerI> LoggerIPtr;

}

#endif