Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
239 Brean 1
/***************************************************************************
2
 *   Copyright (C) 2009 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *   and Andreas Bresser bresser@informatik.uni-bremen.de                  *
5
 *                                                                         *
6
 *   This program is free software; you can redistribute it and/or modify  *
7
 *   it under the terms of the GNU General Public License as published by  *
8
 *   the Free Software Foundation; either version 2 of the License.        *
9
 *                                                                         *
10
 *   This program is distributed in the hope that it will be useful,       *
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 *   GNU General Public License for more details.                          *
14
 *                                                                         *
15
 *   You should have received a copy of the GNU General Public License     *
16
 *   along with this program; if not, write to the                         *
17
 *   Free Software Foundation, Inc.,                                       *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 ***************************************************************************/
20
 
21
#ifndef LOGGER_H
22
#define LOGGER_H
23
 
24
#include <QLinkedList>
25
#include <QString>
26
#include "DefaultLogger.h"
27
#include "../Classes/cSettings.h"
28
 
29
//Die verschiedenen header der einzelnen Logger
30
//TODO: MySQLLogger, SQLiteLogger und/oder PostGreSQLLogger
31
#include "CSVLogger.h"
32
 
33
class Logger
34
{
35
private:
36
    CSVLogger * csv;
37
    //Liste aller bekannten Logger
38
    QLinkedList<DefaultLogger *> logger;
39
 
40
    bool active;
41
 
42
public:
43
    Logger(cSettings * settings);
44
    ~Logger();
45
 
46
    void start_Log();
47
 
48
    //soll geloggt werden?
49
    bool is_active();
50
 
51
    //schreibe log
52
    void write(int * analogData);
53
 
54
    //erzeuge neue Log-Datei/neuen Datensatz
55
    void newLog(QString name);
56
 
57
    //alles schließen
58
    void close();
59
};
60
#endif