properly rewind oidentd config file
[quassel.git] / src / core / oidentdconfiggenerator.h
1 /***************************************************************************
2  *   Copyright (C) 2012 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
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 OIDENTDCONFIGGENERATOR_H
22 #define OIDENTDCONFIGGENERATOR_H
23
24 #include <QObject>
25 #include <QDir>
26 #include <QFile>
27 #include <QDateTime>
28 #include <QHostAddress>
29 #include <QMutex>
30
31 #include "quassel.h"
32 #include "coreidentity.h"
33 #include <QDebug>
34
35 class OidentdConfigGenerator : public QObject
36 {
37     Q_OBJECT
38 public:
39   explicit OidentdConfigGenerator(QObject *parent = 0);
40
41 signals:
42     
43 public slots:
44   bool addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
45   bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
46
47 private:
48   bool init();
49   bool writeConfig();
50   bool parseConfig(bool keepQuasselStanzas = true);
51   bool lineByUs(const QByteArray &line);
52
53   bool _initialized;
54   QDateTime _lastSync;
55   QFile *_configFile;
56   QByteArray _config;
57   QMutex _mutex;
58
59   QDir configDir;
60   QString configFileName;
61   QString configPath;
62   QString configTag;
63   QRegExp quasselStanza;
64 };
65
66 #endif // OIDENTDCONFIGGENERATOR_H