transmission/qt/watchdir.cc

146 lines
3.4 KiB
C++
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2009-04-09 18:55:47 +00:00
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#include <iostream>
#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 "prefs.h"
#include "torrent-model.h"
#include "watchdir.h"
/***
****
***/
2013-09-14 22:45:04 +00:00
WatchDir :: WatchDir (const TorrentModel& model):
myModel (model),
myWatcher (0)
2009-04-09 18:55:47 +00:00
{
}
2013-09-14 22:45:04 +00:00
WatchDir :: ~WatchDir ()
2009-04-09 18:55:47 +00:00
{
}
/***
****
***/
int
2013-09-14 22:45:04 +00:00
WatchDir :: metainfoTest (const QString& filename) const
2009-04-09 18:55:47 +00:00
{
2013-09-14 22:45:04 +00:00
int ret;
tr_info inf;
tr_ctor * ctor = tr_ctorNew (0);
// parse
tr_ctorSetMetainfoFromFile (ctor, filename.toUtf8().constData());
const int err = tr_torrentParse( ctor, &inf );
if (err)
ret = ERROR;
else if (myModel.hasTorrent (QString::fromUtf8 (inf.hashString)))
ret = DUPLICATE;
else
ret = OK;
// cleanup
if (!err)
tr_metainfoFree (&inf);
tr_ctorFree (ctor);
return ret;
2009-04-09 18:55:47 +00:00
}
void
2013-09-14 22:45:04 +00:00
WatchDir :: onTimeout ()
2009-04-09 18:55:47 +00:00
{
2013-09-14 22:45:04 +00:00
QTimer * t = qobject_cast<QTimer*>(sender());
const QString filename = t->objectName ();
if (metainfoTest (filename) == OK)
emit torrentFileAdded( filename );
t->deleteLater( );
2009-04-09 18:55:47 +00:00
}
void
2013-09-14 22:45:04 +00:00
WatchDir :: setPath (const QString& path, bool isEnabled)
2009-04-09 18:55:47 +00:00
{
2013-09-14 22:45:04 +00:00
// clear out any remnants of the previous watcher, if any
myWatchDirFiles.clear ();
if (myWatcher)
{
delete myWatcher;
myWatcher = 0;
2009-04-09 18:55:47 +00:00
}
2013-09-14 22:45:04 +00:00
// maybe create a new watcher
if (isEnabled)
{
myWatcher = new QFileSystemWatcher ();
myWatcher->addPath( path );
connect (myWatcher, SIGNAL(directoryChanged(const QString&)),
this, SLOT(watcherActivated(const QString&)));
//std::cerr << "watching " << qPrintable(path) << " for new .torrent files" << std::endl;
watcherActivated (path); // trigger the watchdir for .torrent files in there already
2009-04-09 18:55:47 +00:00
}
}
void
2013-09-14 22:45:04 +00:00
WatchDir :: watcherActivated (const QString& path)
2009-04-09 18:55:47 +00:00
{
2013-09-14 22:45:04 +00:00
const QDir dir(path);
// get the list of files currently in the watch directory
QSet<QString> files;
foreach (QString str, dir.entryList (QDir::Readable|QDir::Files))
files.insert (str);
// try to add any new files which end in .torrent
const QSet<QString> newFiles (files - myWatchDirFiles);
const QString torrentSuffix = QString::fromUtf8 (".torrent");
foreach (QString name, newFiles)
{
if (name.endsWith (torrentSuffix, Qt::CaseInsensitive))
{
const QString filename = dir.absoluteFilePath (name);
switch (metainfoTest (filename))
{
case OK:
emit torrentFileAdded (filename);
break;
case DUPLICATE:
break;
case ERROR:
{
// give the .torrent a few seconds to finish downloading
QTimer * t = new QTimer (this);
t->setObjectName (dir.absoluteFilePath (name));
t->setSingleShot (true);
connect( t, SIGNAL(timeout()), this, SLOT(onTimeout()));
t->start (5000);
2009-04-09 18:55:47 +00:00
}
}
}
}
2013-09-14 22:45:04 +00:00
// update our file list so that we can use it
// for comparison the next time around
myWatchDirFiles = files;
2009-04-09 18:55:47 +00:00
}