e50082c6d325a208ced82139e906b1b782a7188b
[profile/ivi/qtbase.git] / src / corelib / io / qfilesystemwatcher_polling_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtCore module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QFILESYSTEMWATCHER_POLLING_P_H
43 #define QFILESYSTEMWATCHER_POLLING_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists for the convenience
50 // of the QLibrary class.  This header file may change from
51 // version to version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include <QtCore/qfileinfo.h>
57 #include <QtCore/qmutex.h>
58 #include <QtCore/qdatetime.h>
59 #include <QtCore/qdir.h>
60 #include <QtCore/qtimer.h>
61 #include <QtCore/qhash.h>
62
63 #include "qfilesystemwatcher_p.h"
64
65 QT_BEGIN_NAMESPACE
66
67 enum { PollingInterval = 1000 };
68
69 class QPollingFileSystemWatcherEngine : public QFileSystemWatcherEngine
70 {
71     Q_OBJECT
72
73     class FileInfo
74     {
75         uint ownerId;
76         uint groupId;
77         QFile::Permissions permissions;
78         QDateTime lastModified;
79         QStringList entries;
80
81     public:
82         FileInfo(const QFileInfo &fileInfo)
83             : ownerId(fileInfo.ownerId()),
84               groupId(fileInfo.groupId()),
85               permissions(fileInfo.permissions()),
86               lastModified(fileInfo.lastModified())
87         {
88             if (fileInfo.isDir()) {
89                 entries = fileInfo.absoluteDir().entryList(QDir::AllEntries);
90             }
91         }
92         FileInfo &operator=(const QFileInfo &fileInfo)
93         {
94             *this = FileInfo(fileInfo);
95             return *this;
96         }
97
98         bool operator!=(const QFileInfo &fileInfo) const
99         {
100             if (fileInfo.isDir() && entries != fileInfo.absoluteDir().entryList(QDir::AllEntries))
101                 return true;
102             return (ownerId != fileInfo.ownerId()
103                     || groupId != fileInfo.groupId()
104                     || permissions != fileInfo.permissions()
105                     || lastModified != fileInfo.lastModified());
106         }
107     };
108
109     QHash<QString, FileInfo> files, directories;
110
111 public:
112     QPollingFileSystemWatcherEngine(QObject *parent);
113
114     QStringList addPaths(const QStringList &paths, QStringList *files, QStringList *directories);
115     QStringList removePaths(const QStringList &paths, QStringList *files, QStringList *directories);
116
117 private Q_SLOTS:
118     void timeout();
119
120 private:
121     QTimer timer;
122 };
123
124 QT_END_NAMESPACE
125
126 #endif // QFILESYSTEMWATCHER_POLLING_P_H
127