File: AbstractAppender.h

package info (click to toggle)
dtk6log 0.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 388 kB
  • sloc: cpp: 1,682; ansic: 59; makefile: 9
file content (49 lines) | stat: -rw-r--r-- 1,514 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
/*
  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 ABSTRACTAPPENDER_H
#define ABSTRACTAPPENDER_H

#include "dlog_global.h"
#include "Logger.h"

#include <QMutex>

DLOG_CORE_BEGIN_NAMESPACE

class LIBDLOG_SHARED_EXPORT AbstractAppender
{
public:
  AbstractAppender();
  virtual ~AbstractAppender();

  Logger::LogLevel detailsLevel() const;
  void setDetailsLevel(Logger::LogLevel level);
  void setDetailsLevel(const QString &level);

  void write(const QDateTime &time, Logger::LogLevel level, const char *file, int line,
             const char *func, const QString &category, const QString &msg);

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

private:
  QMutex m_writeMutex;

  Logger::LogLevel m_detailsLevel;
  mutable QMutex m_detailsLevelMutex;
};

DLOG_CORE_END_NAMESPACE
#endif // ABSTRACTAPPENDER_H