summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-02-19 23:17:21 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-02-19 23:17:21 +0100
commita1c48893397b4055f2aad1caf46b1d024c3d52ac (patch)
treedf97bf787de6afa492144bcceeead60bc92b975c /src
parentFix flatpak bundle upload (diff)
downloadnheko-a1c48893397b4055f2aad1caf46b1d024c3d52ac.tar.xz
Remove a few more unused symbols
Diffstat (limited to 'src')
-rw-r--r--src/Cache.cpp40
-rw-r--r--src/ChatPage.cpp8
-rw-r--r--src/ChatPage.h4
-rw-r--r--src/Logging.cpp14
-rw-r--r--src/UserSettingsPage.h4
-rw-r--r--src/dbus/NhekoDBusApi.h2
6 files changed, 32 insertions, 40 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp

index 53543591..1371619a 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp
@@ -48,15 +48,15 @@ static const std::string_view OLM_ACCOUNT_KEY("olm_account"); static const std::string_view CACHE_FORMAT_VERSION_KEY("cache_format_version"); static const std::string_view CURRENT_ONLINE_BACKUP_VERSION("current_online_backup_version"); -constexpr auto MAX_DBS = 32384UL; -constexpr auto BATCH_SIZE = 100; +static constexpr auto MAX_DBS = 32384UL; +static constexpr auto BATCH_SIZE = 100; #if Q_PROCESSOR_WORDSIZE >= 5 // 40-bit or more, up to 2^(8*WORDSIZE) words addressable. -constexpr auto DB_SIZE = 32ULL * 1024ULL * 1024ULL * 1024ULL; // 32 GB -constexpr size_t MAX_RESTORED_MESSAGES = 30'000; +static constexpr auto DB_SIZE = 32ULL * 1024ULL * 1024ULL * 1024ULL; // 32 GB +static constexpr size_t MAX_RESTORED_MESSAGES = 30'000; #elif Q_PROCESSOR_WORDSIZE == 4 // 32-bit address space limits mmaps -constexpr auto DB_SIZE = 1ULL * 1024ULL * 1024ULL * 1024ULL; // 1 GB -constexpr size_t MAX_RESTORED_MESSAGES = 5'000; +static constexpr auto DB_SIZE = 1ULL * 1024ULL * 1024ULL * 1024ULL; // 1 GB +static constexpr size_t MAX_RESTORED_MESSAGES = 5'000; #else #error Not enough virtual address space for the database on target CPU #endif @@ -65,34 +65,34 @@ constexpr size_t MAX_RESTORED_MESSAGES = 5'000; //! //! Contains UI information for the joined rooms. (i.e name, topic, avatar url etc). //! Format: room_id -> RoomInfo -constexpr auto ROOMS_DB("rooms"); -constexpr auto INVITES_DB("invites"); +static constexpr auto ROOMS_DB("rooms"); +static constexpr auto INVITES_DB("invites"); //! maps each room to its parent space (id->id) -constexpr auto SPACES_PARENTS_DB("space_parents"); +static constexpr auto SPACES_PARENTS_DB("space_parents"); //! maps each space to its current children (id->id) -constexpr auto SPACES_CHILDREN_DB("space_children"); +static constexpr auto SPACES_CHILDREN_DB("space_children"); //! Information that must be kept between sync requests. -constexpr auto SYNC_STATE_DB("sync_state"); +static constexpr auto SYNC_STATE_DB("sync_state"); //! Read receipts per room/event. -constexpr auto READ_RECEIPTS_DB("read_receipts"); -constexpr auto NOTIFICATIONS_DB("sent_notifications"); -constexpr auto PRESENCE_DB("presence"); +static constexpr auto READ_RECEIPTS_DB("read_receipts"); +static constexpr auto NOTIFICATIONS_DB("sent_notifications"); +static constexpr auto PRESENCE_DB("presence"); //! Encryption related databases. //! user_id -> list of devices -constexpr auto DEVICES_DB("devices"); +static constexpr auto DEVICES_DB("devices"); //! device_id -> device keys -constexpr auto DEVICE_KEYS_DB("device_keys"); +static constexpr auto DEVICE_KEYS_DB("device_keys"); //! room_ids that have encryption enabled. -constexpr auto ENCRYPTED_ROOMS_DB("encrypted_rooms"); +static constexpr auto ENCRYPTED_ROOMS_DB("encrypted_rooms"); //! room_id -> pickled OlmInboundGroupSession -constexpr auto INBOUND_MEGOLM_SESSIONS_DB("inbound_megolm_sessions"); +static constexpr auto INBOUND_MEGOLM_SESSIONS_DB("inbound_megolm_sessions"); //! MegolmSessionIndex -> pickled OlmOutboundGroupSession -constexpr auto OUTBOUND_MEGOLM_SESSIONS_DB("outbound_megolm_sessions"); +static constexpr auto OUTBOUND_MEGOLM_SESSIONS_DB("outbound_megolm_sessions"); //! MegolmSessionIndex -> session data about which devices have access to this -constexpr auto MEGOLM_SESSIONS_DATA_DB("megolm_sessions_data_db"); +static constexpr auto MEGOLM_SESSIONS_DATA_DB("megolm_sessions_data_db"); using CachedReceipts = std::multimap<uint64_t, std::string, std::greater<uint64_t>>; using Receipts = std::map<std::string, std::map<std::string, uint64_t>>; diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp
index 2f6d7410..12d83f49 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp
@@ -34,10 +34,10 @@ #include "blurhash.hpp" -ChatPage *ChatPage::instance_ = nullptr; -constexpr int CHECK_CONNECTIVITY_INTERVAL = 15'000; -constexpr int RETRY_TIMEOUT = 5'000; -constexpr size_t MAX_ONETIME_KEYS = 50; +ChatPage *ChatPage::instance_ = nullptr; +static constexpr int CHECK_CONNECTIVITY_INTERVAL = 15'000; +static constexpr int RETRY_TIMEOUT = 5'000; +static constexpr size_t MAX_ONETIME_KEYS = 50; Q_DECLARE_METATYPE(std::optional<mtx::crypto::EncryptedFile>) Q_DECLARE_METATYPE(std::optional<RelatedInfo>) diff --git a/src/ChatPage.h b/src/ChatPage.h
index 1922b1c3..0e17fccb 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h
@@ -34,10 +34,6 @@ class NotificationsManager; class TimelineModel; class CallManager; -constexpr int CONSENSUS_TIMEOUT = 1000; -constexpr int SHOW_CONTENT_TIMEOUT = 3000; -constexpr int TYPING_REFRESH_TIMEOUT = 10000; - namespace mtx::requests { struct CreateRoom; } diff --git a/src/Logging.cpp b/src/Logging.cpp
index 46df8399..60247c0c 100644 --- a/src/Logging.cpp +++ b/src/Logging.cpp
@@ -19,14 +19,14 @@ #include <mtx/log.hpp> namespace { -std::shared_ptr<spdlog::logger> db_logger = nullptr; -std::shared_ptr<spdlog::logger> net_logger = nullptr; -std::shared_ptr<spdlog::logger> crypto_logger = nullptr; -std::shared_ptr<spdlog::logger> ui_logger = nullptr; -std::shared_ptr<spdlog::logger> qml_logger = nullptr; +static std::shared_ptr<spdlog::logger> db_logger = nullptr; +static std::shared_ptr<spdlog::logger> net_logger = nullptr; +static std::shared_ptr<spdlog::logger> crypto_logger = nullptr; +static std::shared_ptr<spdlog::logger> ui_logger = nullptr; +static std::shared_ptr<spdlog::logger> qml_logger = nullptr; -constexpr auto MAX_FILE_SIZE = 1024 * 1024 * 6; -constexpr auto MAX_LOG_FILES = 3; +static constexpr auto MAX_FILE_SIZE = 1024 * 1024 * 6; +static constexpr auto MAX_LOG_FILES = 3; void qmlMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg) diff --git a/src/UserSettingsPage.h b/src/UserSettingsPage.h
index b98296aa..8c8555cd 100644 --- a/src/UserSettingsPage.h +++ b/src/UserSettingsPage.h
@@ -23,10 +23,6 @@ class QSpinBox; class QHBoxLayout; class QVBoxLayout; -constexpr int OptionMargin = 6; -constexpr int LayoutTopMargin = 50; -constexpr int LayoutBottomMargin = LayoutTopMargin; - class UserSettings final : public QObject { Q_OBJECT diff --git a/src/dbus/NhekoDBusApi.h b/src/dbus/NhekoDBusApi.h
index 0cd64685..a96f431e 100644 --- a/src/dbus/NhekoDBusApi.h +++ b/src/dbus/NhekoDBusApi.h
@@ -19,7 +19,7 @@ init(); //! The nheko D-Bus API version provided by this file. The API version number follows semantic //! versioning as defined by https://semver.org. -const QVersionNumber dbusApiVersion{1, 0, 1}; +inline const QVersionNumber dbusApiVersion{1, 0, 1}; //! Compare the installed Nheko API to the version that your client app targets to see if they //! are compatible.