File: FileAppender.h

package info (click to toggle)
dtk6log 0.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 376 kB
  • sloc: cpp: 1,683; ansic: 59; makefile: 8
file content (52 lines) | stat: -rw-r--r-- 1,434 bytes parent folder | download | duplicates (4)
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
/*
  Copyright (c) 2010 Boris Moiseev (cyberbobs at gmail dot com)

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License version 2.1
  as published by the Free Software Foundation and appearing in the file
  LICENSE.LGPL included in the packaging of this file.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Lesser General Public License for more details.
*/
#ifndef FILEAPPENDER_H
#define FILEAPPENDER_H

// Logger
#include "dlog_global.h"
#include "AbstractStringAppender.h"

// Qt
#include <QFile>
#include <QTextStream>

DLOG_CORE_BEGIN_NAMESPACE

class LIBDLOG_SHARED_EXPORT FileAppender : public AbstractStringAppender
{
public:
    FileAppender(const QString &fileName = QString());
    ~FileAppender();

    QString fileName() const;
    void setFileName(const QString &s);

    qint64 size() const;

protected:
    virtual void append(const QDateTime &time, Logger::LogLevel level, const char *file, int line,
                        const char *func, const QString &category, const QString &msg);
    bool openFile();
    void closeFile();

private:
    QFile m_logFile;
    QTextStream m_logStream;
    mutable QMutex m_logFileMutex;
};

DLOG_CORE_END_NAMESPACE

#endif // FILEAPPENDER_H