annotate rdf/PluginRDFIndexer.h @ 497:b6dc6c7f402c

Various fixes: * Fix handling of HTTP redirects (avoiding crashes... I hope) * Fix failure to delete FFT models when a feature extraction model transformer was abandoned (also a cause of crashes in the past) * Fix deadlock when said transform was abandoned before its source model was ready because the session was being cleared (and so the source model would never be ready)
author Chris Cannam
date Fri, 28 Nov 2008 13:36:13 +0000
parents 82ab61fa9223
children e340b2fb9471
rev   line source
Chris@439 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@439 2
Chris@439 3 /*
Chris@439 4 Sonic Visualiser
Chris@439 5 An audio file viewer and annotation editor.
Chris@439 6 Centre for Digital Music, Queen Mary, University of London.
Chris@439 7 This file copyright 2008 QMUL.
Chris@439 8
Chris@439 9 This program is free software; you can redistribute it and/or
Chris@439 10 modify it under the terms of the GNU General Public License as
Chris@439 11 published by the Free Software Foundation; either version 2 of the
Chris@439 12 License, or (at your option) any later version. See the file
Chris@439 13 COPYING included with this distribution for more information.
Chris@439 14 */
Chris@439 15
Chris@439 16 #ifndef _PLUGIN_RDF_INDEXER_H_
Chris@439 17 #define _PLUGIN_RDF_INDEXER_H_
Chris@439 18
Chris@439 19 #include <QString>
Chris@456 20 #include <QStringList>
Chris@461 21 #include <QMutex>
Chris@439 22 #include <map>
Chris@439 23 #include <set>
Chris@439 24
Chris@439 25 class PluginRDFIndexer
Chris@439 26 {
Chris@439 27 public:
Chris@439 28 static PluginRDFIndexer *getInstance();
Chris@439 29
Chris@461 30 /**
Chris@461 31 * Index all URLs obtained from index files defined in the current
Chris@477 32 * settings. In contrast to indexing URLs that are installed
Chris@477 33 * locally alongside plugins, this is not done automatically
Chris@477 34 * because it may incur significant processing and networking
Chris@477 35 * effort. It could be called from a background thread at
Chris@477 36 * startup, for example.
Chris@461 37 *
Chris@461 38 * Note that this class has a single mutex, so other functions
Chris@461 39 * will block if called from a different thread while this one is
Chris@461 40 * running.
Chris@461 41 */
Chris@461 42 bool indexConfiguredURLs();
Chris@461 43
Chris@456 44 bool indexURL(QString url); // in addition to "installed" URLs
Chris@456 45
Chris@439 46 QString getURIForPluginId(QString pluginId);
Chris@439 47 QString getIdForPluginURI(QString uri);
Chris@439 48
Chris@456 49 QStringList getIndexedPluginIds();
Chris@456 50
Chris@439 51 ~PluginRDFIndexer();
Chris@439 52
Chris@439 53 protected:
Chris@439 54 PluginRDFIndexer();
Chris@461 55 QMutex m_mutex;
Chris@477 56
Chris@439 57 typedef std::map<QString, QString> StringMap;
Chris@439 58 StringMap m_uriToIdMap;
Chris@439 59 StringMap m_idToUriMap;
Chris@477 60
Chris@477 61 void indexInstalledURLs();
Chris@489 62
Chris@489 63 bool pullFile(QString path);
Chris@489 64 bool pullURL(QString urlString);
Chris@489 65 bool reindex();
Chris@489 66
Chris@439 67 static PluginRDFIndexer *m_instance;
Chris@439 68 };
Chris@439 69
Chris@439 70 #endif
Chris@439 71