Enroute Flight Navigation
A navigation app for VFR pilots
Librarian.h
1/***************************************************************************
2 * Copyright (C) 2020-2023 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program 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 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program 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 this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QDir>
24#include <QQmlEngine>
25#include <QRegularExpression>
26#include <QSettings>
27
28#include "GlobalObject.h"
29#include "units/ByteSize.h"
30
31
37
38class Librarian : public QObject {
39 Q_OBJECT
40 QML_ELEMENT
41 QML_SINGLETON
42
43public:
48 explicit Librarian(QObject *parent = nullptr);
49
50 // No default constructor, important for QML singleton
51 explicit Librarian() = delete;
52
53 // Standard destructor
54 ~Librarian() override = default;
55
56
57 // factory function for QML singleton
58 static Librarian* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
59 {
61 }
62
64 enum Library : quint8 {
67
70 };
71 Q_ENUM(Library)
72
73
79 [[nodiscard]] Q_INVOKABLE static QString directory(Librarian::Library library) ;
80
93 Q_INVOKABLE QStringList entries(Librarian::Library library, const QString& filter=QString());
94
103 [[nodiscard]] Q_INVOKABLE static bool exists(Librarian::Library library, const QString& baseName) ;
104
114 [[nodiscard]] Q_INVOKABLE static QString fullPath(Librarian::Library library, const QString& baseName) ;
115
135 [[nodiscard]] Q_INVOKABLE static QObject* get(Librarian::Library library, const QString& baseName) ;
136
153 Q_INVOKABLE static QString getStringFromRessource(const QString& name);
154
165 Q_INVOKABLE static Units::ByteSize getStringHashFromRessource(const QString& name);
166
177 [[nodiscard]] Q_INVOKABLE static QString import(Librarian::Library library, const QString& fileName) ;
178
185 Q_INVOKABLE static void remove(Librarian::Library library, const QString& baseName) ;
186
197 Q_INVOKABLE static void rename(Librarian::Library library, const QString& oldName, const QString& newName);
198
211 QStringList permissiveFilter(const QStringList &input, const QString &filter);
212
223 QString simplifySpecialChars(const QString& string);
224
225private:
226 Q_DISABLE_COPY_MOVE(Librarian)
227
228 // Caches used to speed up the method simplifySpecialChars
229 QRegularExpression specialChars {QStringLiteral("[^a-zA-Z0-9]")};
230 QHash<QString, QString> simplifySpecialChars_cache;
231
232};
static Q_INVOKABLE Librarian * librarian()
Pointer to appplication-wide static librarian instance.
QString simplifySpecialChars(const QString &string)
Simplifies string by transforming and removing special characters.
static Q_INVOKABLE QString directory(Librarian::Library library)
Name of the directory containing the given.
static Q_INVOKABLE QString getStringFromRessource(const QString &name)
Exposes string stored in QRessource to QML.
static Q_INVOKABLE QString fullPath(Librarian::Library library, const QString &baseName)
Full path of a library entry.
QStringList permissiveFilter(const QStringList &input, const QString &filter)
Filters a QStringList in a fuzzy way.
static Q_INVOKABLE void rename(Librarian::Library library, const QString &oldName, const QString &newName)
Renames an entry in a library.
static Q_INVOKABLE QObject * get(Librarian::Library library, const QString &baseName)
Constructs an object from library entry.
Librarian(QObject *parent=nullptr)
Default constructor.
static Q_INVOKABLE void remove(Librarian::Library library, const QString &baseName)
Removes an entry from a library.
Q_INVOKABLE QStringList entries(Librarian::Library library, const QString &filter=QString())
Lists all entries in the library whose name contains the string 'filter'.
Library
Type of library.
Definition Librarian.h:64
@ Aircraft
Aircraft library.
Definition Librarian.h:66
@ Routes
Flight route library.
Definition Librarian.h:69
static Q_INVOKABLE Units::ByteSize getStringHashFromRessource(const QString &name)
Exposes the hash of string stored in QRessource to QML.
static Q_INVOKABLE bool exists(Librarian::Library library, const QString &baseName)
Check if an entry with the given name exists in the library.
Convenience class for size_t.
Definition ByteSize.h:37