kde-extraapps/kget/transfer-plugins/metalink/metalinkfactory.cpp

61 lines
1.9 KiB
C++
Raw Normal View History

/* This file is part of the KDE project
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
Copyright (C) 2007 Manolo Valdes <nolis71cu@gmail.com>
Copyright (C) 2012 Aish Raj Dahal <dahalaishraj@gmail.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
*/
#include "metalinkfactory.h"
#include "core/scheduler.h"
#include "core/transfergroup.h"
#include "metalinkhttp.h"
#include "metalinkxml.h"
#include <kdebug.h>
KGET_EXPORT_PLUGIN( MetalinkFactory )
MetalinkFactory::MetalinkFactory(QObject *parent, const QVariantList &args)
: TransferFactory(parent, args)
{
}
MetalinkFactory::~MetalinkFactory()
{
}
Transfer * MetalinkFactory::createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
TransferGroup * parent,
Scheduler * scheduler,
const QDomElement * e )
{
kDebug(5001) << "metalinkFactory::createTransfer";
KGetMetalink::MetalinkHttpParser *metalinkHttpChecker = new KGetMetalink::MetalinkHttpParser(srcUrl);
if (metalinkHttpChecker->isMetalinkHttp()) {
return new MetalinkHttp(parent, this, scheduler, srcUrl, destUrl, metalinkHttpChecker, e);
}
else
{
// No one takes ownership of this checker
metalinkHttpChecker->deleteLater();
if (isSupported(srcUrl)) {
return new MetalinkXml(parent, this, scheduler, srcUrl, destUrl, e);
}
return 0;
}
}
bool MetalinkFactory::isSupported(const KUrl &url) const
{
return (url.fileName().endsWith(QLatin1String(".metalink")) || url.fileName().endsWith(QLatin1String(".meta4")));
}