- introduce a tmp dir class and rm-rf util function

- start a testcase for the folder watcher part
This commit is contained in:
Duncan Mac-Vicar P 2011-03-18 01:14:45 +01:00
parent 03194d3aae
commit e6a135273d
12 changed files with 245 additions and 26 deletions

View file

@ -1,6 +1,7 @@
cmake_minimum_required(VERSION 2.8)
project(mirall)
find_package(Qt4 4.4.3 COMPONENTS QtCore QtGui QtXml REQUIRED )
find_package(Qt4 4.4.3 COMPONENTS QtCore QtGui QtXml QtTest REQUIRED )
add_subdirectory(src)
add_subdirectory(test)

View file

@ -5,14 +5,18 @@ include(${QT_USE_FILE})
set(mirall_SRCS
mirall/application.cpp
mirall/fileutils.cpp
mirall/folder.cpp
mirall/gitfolder.cpp
mirall/folderwatcher.cpp
mirall/gitfolder.cpp
mirall/inotify.cpp
main.cpp)
mirall/temporarydir.cpp
)
qt4_automoc(${mirall_SRCS})
add_executable(mirall ${mirall_SRCS})
add_library(mirall_static STATIC ${mirall_SRCS})
add_executable(mirall main.cpp)
target_link_libraries(mirall mirall_static)
target_link_libraries(mirall ${QT_LIBRARIES})

57
src/mirall/fileutils.cpp Normal file
View file

@ -0,0 +1,57 @@
/*
Copyright (c) 2009 John Schember <john@nachtimwald.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE
*/
#include "mirall/fileutils.h"
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QFileInfoList>
namespace Mirall
{
bool FileUtils::removeDir(const QString &path)
{
bool result = true;
QDir dir(path);
if (dir.exists(path)) {
Q_FOREACH(QFileInfo info, dir.entryInfoList(QDir::NoDotAndDotDot | QDir::System | QDir::Hidden | QDir::AllDirs | QDir::Files, QDir::DirsFirst)) {
if (info.isDir()) {
result = removeDir(info.absoluteFilePath());
}
else {
result = QFile::remove(info.absoluteFilePath());
}
if (!result) {
return result;
}
}
result = dir.rmdir(path);
}
return result;
}
}

18
src/mirall/fileutils.h Normal file
View file

@ -0,0 +1,18 @@
#ifndef MIRALL_FILEUTILS_H
#define MIRALL_FILEUTILS_H
#include <QString>
namespace Mirall
{
class FileUtils
{
public:
static bool removeDir(const QString &path);
};
}
#endif

View file

@ -3,7 +3,6 @@
#include <sys/inotify.h>
#include <QFileInfo>
#include <QFileSystemWatcher>
#include <QFlags>
#include <QDebug>
#include <QDir>
@ -14,9 +13,12 @@
#include "mirall/folderwatcher.h"
static const uint32_t standard_event_mask =
IN_ATTRIB | IN_CLOSE_WRITE | IN_CREATE |
IN_DELETE | IN_DELETE_SELF | IN_MOVED_FROM |
IN_MOVED_TO | IN_DONT_FOLLOW | IN_ONLYDIR;
IN_MODIFY | IN_ATTRIB | IN_MOVE | IN_CREATE | IN_DELETE | IN_DELETE_SELF | IN_MOVE_SELF | IN_UNMOUNT | IN_ISDIR | IN_DONT_FOLLOW;
// IN_ONESHOT
// IN_ATTRIB | IN_CLOSE_WRITE | IN_CREATE |
// IN_DELETE | IN_DELETE_SELF | IN_MOVED_FROM |
// IN_MOVED_TO | IN_DONT_FOLLOW | IN_ONLYDIR;
namespace Mirall {
@ -49,26 +51,23 @@ static QStringList subFoldersList(QString folder,
FolderWatcher::FolderWatcher(const QString &path, QObject *parent)
: QObject(parent)
{
_watcher = new QFileSystemWatcher(this);
_inotify = new INotify(standard_event_mask);
//_inotify->addPath(path);
_inotify->addPath(path);
// watch the path and all subdirectories
{
QMutexLocker locker(&_mutex);
QStringList subfolders(subFoldersList(path, SubFolderRecursive));
qDebug() << "adding watchers for " << subfolders;
if (! subfolders.empty() ) {
qDebug() << "adding watchers for " << subfolders;
QStringListIterator subfoldersIt(subfolders);
while (subfoldersIt.hasNext()) {
_watcher->addPath(subfoldersIt.next());
_inotify->addPath(subfoldersIt.next());
QStringListIterator subfoldersIt(subfolders);
while (subfoldersIt.hasNext()) {
_inotify->addPath(subfoldersIt.next());
}
}
}
// QObject::connect(_watcher, SIGNAL(directoryChanged(const QString &)),
// SLOT(slotDirectoryChanged(const QString &)));
QObject::connect(_inotify, SIGNAL(notifyEvent(int, const QString &)),
SLOT(slotDirectoryChanged(int, const QString &)));
}
@ -78,6 +77,11 @@ FolderWatcher::~FolderWatcher()
}
QStringList FolderWatcher::folders() const
{
return _inotify->directories();
}
void FolderWatcher::slotDirectoryChanged(int mask, const QString &path)
{
QMutexLocker locker(&_mutex);
@ -97,6 +101,8 @@ void FolderWatcher::slotDirectoryChanged(int mask, const QString &path)
}
}
//qDebug() << "Removing " << folder.path();
QStringListIterator subfoldersIt(subFoldersList(path, SubFolderRecursive));
while (subfoldersIt.hasNext()) {
QDir folder (subfoldersIt.next());
@ -104,6 +110,9 @@ void FolderWatcher::slotDirectoryChanged(int mask, const QString &path)
qDebug() << "Adding " << folder.path();
_inotify->addPath(folder.path());
}
else
qDebug() << "discarding " << folder.path();
// Look if some of the subdirectories disappeared

View file

@ -7,9 +7,6 @@
#include <QString>
#include <QMutex>
#include "mirall/inotify.h"
class QFileSystemWatcher;
class INotify;
namespace Mirall {
@ -20,13 +17,14 @@ Q_OBJECT
public:
FolderWatcher(const QString &path, QObject *parent = 0L);
~FolderWatcher();
QStringList folders() const;
signals:
void folderChanged(const QString &path);
protected slots:
//void slotDirectoryChanged(const QString &path);
void slotDirectoryChanged(int mask, const QString &path);
private:
QFileSystemWatcher *_watcher;
QMutex _mutex;
INotify *_inotify;
};

View file

@ -50,8 +50,6 @@ void INotify::addPath(const QString &path)
qDebug() << path;
path.toAscii().constData();
return;
int wd = inotify_add_watch(s_fd, path.toAscii().constData(), _mask);
_wds[path] = wd;
@ -64,6 +62,7 @@ void INotify::removePath(const QString &path)
{
// Remove the inotify watch.
inotify_rm_watch(s_fd, _wds[path]);
_wds.remove(path);
}
QStringList INotify::directories() const

View file

@ -0,0 +1,35 @@
#include <cstdlib>
#include <cerrno>
#include <cstring>
#include <QDebug>
#include "mirall/temporarydir.h"
#include "mirall/fileutils.h"
namespace Mirall
{
static char dir_template[] = "/tmp/mirall-XXXXXX";
TemporaryDir::TemporaryDir()
{
char *tmp = ::mkdtemp(dir_template);
_path = QString((const char *) tmp);
//qDebug() << "tmp:" << _path;
//qDebug() << strerror(errno);
}
TemporaryDir::~TemporaryDir()
{
FileUtils::removeDir(_path);
}
QString TemporaryDir::path() const
{
return _path;
}
}

24
src/mirall/temporarydir.h Normal file
View file

@ -0,0 +1,24 @@
#ifndef MIRALL_TEMPORARYDIR_H
#define MIRALL_TEMPORARYDIR_H
#include <QString>
namespace Mirall
{
class TemporaryDir
{
public:
TemporaryDir();
~TemporaryDir();
QString path() const;
private:
QString _path;
};
}
#endif

9
test/CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
include_directories(${CMAKE_SOURCE_DIR}/src)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include(${QT_USE_FILE})
qt4_automoc(testfolderwatcher.cpp)
add_executable(testfolderwatcher testfolderwatcher.cpp)
target_link_libraries(testfolderwatcher ${QT_LIBRARIES} mirall_static)

View file

@ -0,0 +1,38 @@
#include <cstdlib>
#include <cerrno>
#include <cstring>
#include <QDebug>
#include <QDir>
#include "mirall/inotify.h"
#include "mirall/folderwatcher.h"
#include "mirall/temporarydir.h"
#include "testfolderwatcher.h"
static char dir_template[] = "/tmp/miralXXXXXX";
void TestFolderWatcher::initTestCase()
{
Mirall::INotify::initialize();
}
void TestFolderWatcher::cleanupTestCase()
{
Mirall::INotify::cleanup();
}
void TestFolderWatcher::testFilesAdded()
{
Mirall::TemporaryDir tmp;
Mirall::FolderWatcher watcher(tmp.path());
qDebug() << "Monitored: " << watcher.folders();
QDir subdir = QDir(tmp.path() + "/sub1/sub2");
QVERIFY(subdir.mkpath(tmp.path() + "/sub1/sub2"));
}
QTEST_MAIN(TestFolderWatcher)
#include "testfolderwatcher.moc"

27
test/testfolderwatcher.h Normal file
View file

@ -0,0 +1,27 @@
#ifndef MIRALL_TEST_FOLDERWATCHER_H
#define MIRALL_TEST_FOLDERWATCHER_H
#include <QtTest/QtTest>
class Mirall::FolderWatcher;
class TestFolderWatcher : public QObject
{
Q_OBJECT
public:
private slots:
void initTestCase();
void cleanupTestCase();
void testFilesAdded();
private:
Mirall::FolderWatcher *_watcher;
};
#endif