transmission/qt/WatchDir.cc

142 lines
3.2 KiB
C++
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2009-04-09 18:55:47 +00:00
*
*/
#include <memory>
2009-04-09 18:55:47 +00:00
#include <QDir>
#include <QFileSystemWatcher>
2009-10-06 00:27:26 +00:00
#include <QTimer>
2009-04-09 18:55:47 +00:00
#include <libtransmission/transmission.h>
#include <libtransmission/torrent-metainfo.h>
#include "Prefs.h"
#include "TorrentModel.h"
#include "WatchDir.h"
2009-04-09 18:55:47 +00:00
/***
****
***/
WatchDir::WatchDir(TorrentModel const& model)
: model_(model)
2009-04-09 18:55:47 +00:00
{
}
/***
****
***/
int WatchDir::metainfoTest(QString const& filename) const
2009-04-09 18:55:47 +00:00
{
auto metainfo = tr_torrent_metainfo();
if (!metainfo.parseTorrentFile(filename.toUtf8().constData()))
{
return ERROR;
}
if (model_.hasTorrent(TorrentHash{ metainfo.infoHash() }))
{
return DUPLICATE;
}
return OK;
2009-04-09 18:55:47 +00:00
}
void WatchDir::onTimeout()
2009-04-09 18:55:47 +00:00
{
auto* t = qobject_cast<QTimer*>(sender());
QString const filename = t->objectName();
2013-09-14 22:45:04 +00:00
if (metainfoTest(filename) == OK)
{
emit torrentFileAdded(filename);
}
2013-09-14 22:45:04 +00:00
t->deleteLater();
2009-04-09 18:55:47 +00:00
}
void WatchDir::setPath(QString const& path, bool is_enabled)
2009-04-09 18:55:47 +00:00
{
// clear out any remnants of the previous watcher, if any
watch_dir_files_.clear();
watcher_.reset();
2009-04-09 18:55:47 +00:00
// maybe create a new watcher
if (is_enabled)
2013-09-14 22:45:04 +00:00
{
watcher_ = std::make_unique<QFileSystemWatcher>(QStringList{ path });
connect(watcher_.get(), &QFileSystemWatcher::directoryChanged, this, &WatchDir::watcherActivated);
// trigger the watchdir for .torrent files in there already
QTimer::singleShot(0, this, SLOT(rescanAllWatchedDirectories()));
2009-04-09 18:55:47 +00:00
}
}
void WatchDir::watcherActivated(QString const& path)
2009-04-09 18:55:47 +00:00
{
QDir const dir(path);
// get the list of files currently in the watch directory
QSet<QString> files;
for (QString const& str : dir.entryList(QDir::Readable | QDir::Files))
{
files.insert(str);
}
2013-09-14 22:45:04 +00:00
// try to add any new files which end in .torrent
auto const new_files = files - watch_dir_files_;
auto const torrent_suffix = QStringLiteral(".torrent");
2013-09-14 22:45:04 +00:00
for (QString const& name : new_files)
2013-09-14 22:45:04 +00:00
{
if (name.endsWith(torrent_suffix, Qt::CaseInsensitive))
2013-09-14 22:45:04 +00:00
{
QString const filename = dir.absoluteFilePath(name);
switch (metainfoTest(filename))
2013-09-14 22:45:04 +00:00
{
case OK:
emit torrentFileAdded(filename);
2013-09-14 22:45:04 +00:00
break;
case DUPLICATE:
2013-09-14 22:45:04 +00:00
break;
case ERROR:
2013-09-14 22:45:04 +00:00
{
// give the .torrent a few seconds to finish downloading
auto* t = new QTimer(this);
t->setObjectName(dir.absoluteFilePath(name));
t->setSingleShot(true);
connect(t, &QTimer::timeout, this, &WatchDir::onTimeout);
t->start(5000);
2009-04-09 18:55:47 +00:00
}
}
}
}
// update our file list so that we can use it
// for comparison the next time around
watch_dir_files_ = files;
2009-04-09 18:55:47 +00:00
}
void WatchDir::rescanAllWatchedDirectories()
{
if (!watcher_)
{
return;
}
for (auto const& path : watcher_->directories())
{
watcherActivated(path);
}
}