BibleGateway: Fix bitrotted scraper, use mobile.*
[kworship.git] / kworship / bible / biblegateway / KwBibleManagerBibleGateway.h
blob52ca63667769e424e135625499fe060194878d25
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _KwBibleManagerBibleGateway_h_
21 #define _KwBibleManagerBibleGateway_h_
23 /**
24 * @file KwBibleManagerBibleGateway.h
25 * @brief A bible manager for BibleGateway.com.
26 * @author James Hogan <james@albanarts.com>
29 #include "KwBibleManager.h"
31 #include <QString>
32 #include <QStringList>
33 #include <QList>
34 #include <QVector>
35 #include <QHash>
37 class KwBibleModuleBibleGateway;
39 /// A bible manager for BibleGateway.com.
40 class KwBibleManagerBibleGateway : public KwBibleManager
42 KW_BIBLE_MANAGER(KwBibleManagerBibleGateway, "BibleGateway.com")
44 public:
47 * Constructors + destructor
50 /// Default constructor.
51 KwBibleManagerBibleGateway(QObject* parent = 0, const QStringList& params = QStringList());
53 /// Destructor.
54 virtual ~KwBibleManagerBibleGateway();
57 * Main interface
60 // Reimplemented
61 virtual QString name() const;
63 // Reimplemented
64 virtual bool isRemote() const;
66 // Reimplemented
67 virtual KwBibleModule* module(const QString& name);
69 // Reimplemented
70 virtual QStringList moduleNames();
72 // Reimplemented
73 virtual QStringList moduleNamesInLanguage(const QString& lang);
75 // Reimplemented
76 virtual QStringList languages();
78 private:
81 * Private functions
84 /// Ensure the version information is cached.
85 void ensureCached();
87 /// Clear all modules.
88 void clear();
91 * Variables
94 /// Whether the versions have already been cached.
95 bool m_cached;
97 /// Language names.
98 QStringList m_languages;
100 /// Per version data.
101 struct Version
103 QString name;
104 QString url;
105 int id;
106 int lang;
107 KwBibleModuleBibleGateway* module;
110 /// Versions by id.
111 QVector<Version*> m_versions;
113 /// Versions by name.
114 QHash<QString, Version*> m_versionsByName;
116 /// Version ids by language id.
117 QHash<int, QList<int> > m_versionsByLanguage;
120 #endif // _KwBibleManagerBibleGateway_h_