2014-11-13 01:04:59 +02:00
|
|
|
/* This file is part of the KDE libraries
|
|
|
|
Copyright (C) 1999 Torben Weis <weis@kde.org>
|
|
|
|
Copyright (C) 2003 Waldo Bastian <bastian@kde.org>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License version 2 as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kprotocolinfofactory.h"
|
|
|
|
|
|
|
|
#include <kstandarddirs.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <ksycoca.h>
|
|
|
|
#include <ksycocadict_p.h>
|
|
|
|
|
2019-05-14 22:55:09 +00:00
|
|
|
thread_local KProtocolInfoFactory* kProtocolInfoFactoryInstance = 0;
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
KProtocolInfoFactory::KProtocolInfoFactory() : KSycocaFactory( KST_KProtocolInfoFactory )
|
|
|
|
{
|
2019-05-14 22:55:09 +00:00
|
|
|
kProtocolInfoFactoryInstance = this;
|
2014-11-13 01:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
KProtocolInfoFactory::~KProtocolInfoFactory()
|
|
|
|
{
|
2019-05-14 22:55:09 +00:00
|
|
|
if (kProtocolInfoFactoryInstance) {
|
|
|
|
kProtocolInfoFactoryInstance = 0;
|
|
|
|
}
|
2014-11-13 01:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
KProtocolInfo*
|
|
|
|
KProtocolInfoFactory::createEntry(int offset) const
|
|
|
|
{
|
|
|
|
KProtocolInfo *info = 0;
|
|
|
|
KSycocaType type;
|
|
|
|
QDataStream *str = KSycoca::self()->findEntry(offset, type);
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case KST_KProtocolInfo:
|
|
|
|
info = new KProtocolInfo(*str, offset);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!info->isValid())
|
|
|
|
{
|
|
|
|
delete info;
|
|
|
|
info = 0;
|
|
|
|
}
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QStringList KProtocolInfoFactory::protocols() const
|
|
|
|
{
|
|
|
|
QStringList res;
|
|
|
|
const KSycocaEntry::List list = allEntries();
|
2015-08-25 22:10:31 +03:00
|
|
|
for( KSycocaEntry::List::const_iterator it = list.begin(); it != list.end(); ++it) {
|
2014-11-13 01:04:59 +02:00
|
|
|
const KSycocaEntry *entry = (*it).data();
|
|
|
|
const KProtocolInfo *info = static_cast<const KProtocolInfo *>(entry);
|
|
|
|
res.append( info->name() );
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
KProtocolInfo::List KProtocolInfoFactory::allProtocols() const
|
|
|
|
{
|
|
|
|
KProtocolInfo::List result;
|
|
|
|
const KSycocaEntry::List list = allEntries();
|
2015-08-25 22:10:31 +03:00
|
|
|
for( KSycocaEntry::List::ConstIterator it = list.begin(); it != list.end(); ++it) {
|
2014-11-13 01:04:59 +02:00
|
|
|
if ((*it)->isType(KST_KProtocolInfo)) {
|
|
|
|
result.append(KProtocolInfo::Ptr::staticCast(*it));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
KProtocolInfo::Ptr KProtocolInfoFactory::findProtocol(const QString &protocol)
|
|
|
|
{
|
|
|
|
if (!sycocaDict()) return KProtocolInfo::Ptr(); // Error!
|
|
|
|
|
|
|
|
QMap<QString,KProtocolInfo::Ptr>::iterator it = m_cache.find(protocol);
|
|
|
|
if (it != m_cache.end())
|
|
|
|
return *it;
|
|
|
|
|
2015-08-25 22:10:31 +03:00
|
|
|
int offset = sycocaDict()->find_string( protocol );
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
if (!offset) return KProtocolInfo::Ptr(); // Not found;
|
|
|
|
|
|
|
|
KProtocolInfo::Ptr info(createEntry(offset));
|
|
|
|
|
|
|
|
if (info && (info->name() != protocol))
|
|
|
|
{
|
|
|
|
// No it wasn't...
|
|
|
|
return KProtocolInfo::Ptr(); // Not found
|
|
|
|
}
|
|
|
|
m_cache.insert(protocol,info);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
KProtocolInfoFactory* KProtocolInfoFactory::self()
|
|
|
|
{
|
2019-05-14 22:55:09 +00:00
|
|
|
if (!kProtocolInfoFactoryInstance)
|
|
|
|
kProtocolInfoFactoryInstance = new KProtocolInfoFactory();
|
|
|
|
return kProtocolInfoFactoryInstance;
|
2014-11-13 01:04:59 +02:00
|
|
|
}
|