annotate rdf/PluginRDFIndexer.h @ 1563:175ef02c7864

Merge
author Chris Cannam
date Fri, 02 Nov 2018 14:41:00 +0000
parents c789deb83bd4
children ad5f892c0c4d
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@725 25 namespace Dataquay {
Chris@725 26 class BasicStore;
Chris@725 27 }
Chris@725 28
Chris@439 29 class PluginRDFIndexer
Chris@439 30 {
Chris@439 31 public:
Chris@439 32 static PluginRDFIndexer *getInstance();
Chris@439 33
Chris@461 34 /**
Chris@461 35 * Index all URLs obtained from index files defined in the current
Chris@477 36 * settings. In contrast to indexing URLs that are installed
Chris@477 37 * locally alongside plugins, this is not done automatically
Chris@477 38 * because it may incur significant processing and networking
Chris@477 39 * effort. It could be called from a background thread at
Chris@477 40 * startup, for example.
Chris@461 41 *
Chris@461 42 * Note that this class has a single mutex, so other functions
Chris@461 43 * will block if called from a different thread while this one is
Chris@461 44 * running.
Chris@461 45 */
Chris@461 46 bool indexConfiguredURLs();
Chris@461 47
Chris@456 48 bool indexURL(QString url); // in addition to "installed" URLs
Chris@456 49
Chris@439 50 QString getURIForPluginId(QString pluginId);
Chris@439 51 QString getIdForPluginURI(QString uri);
Chris@439 52
Chris@456 53 QStringList getIndexedPluginIds();
Chris@456 54
Chris@725 55 const Dataquay::BasicStore *getIndex();
Chris@725 56
Chris@439 57 ~PluginRDFIndexer();
Chris@439 58
Chris@439 59 protected:
Chris@439 60 PluginRDFIndexer();
Chris@461 61 QMutex m_mutex;
Chris@477 62
Chris@439 63 typedef std::map<QString, QString> StringMap;
Chris@439 64 StringMap m_uriToIdMap;
Chris@439 65 StringMap m_idToUriMap;
Chris@477 66
Chris@477 67 void indexInstalledURLs();
Chris@489 68
Chris@489 69 bool pullFile(QString path);
Chris@489 70 bool pullURL(QString urlString);
Chris@489 71 bool reindex();
Chris@489 72
Chris@725 73 Dataquay::BasicStore *m_index;
Chris@725 74
Chris@439 75 static PluginRDFIndexer *m_instance;
Chris@439 76 };
Chris@439 77
Chris@439 78 #endif
Chris@439 79