|
- #pragma once
- #include <common.hpp>
- #include <plugin/Plugin.hpp>
- #include <plugin/Model.hpp>
- #include <vector>
- #include <set>
-
-
- namespace rack {
-
-
- /** Plugin loader and plugin manager
- */
- namespace plugin {
-
-
- struct Update {
- std::string pluginSlug;
- std::string version;
- std::string changelogUrl;
- float progress = 0.f;
- };
-
-
- void init();
- void destroy();
- void logIn(const std::string &email, const std::string &password);
- void logOut();
- void queryUpdates();
- void syncUpdate(Update *update);
- void syncUpdates();
- bool isLoggedIn();
- Plugin *getPlugin(const std::string &pluginSlug);
- Model *getModel(const std::string &pluginSlug, const std::string &modelSlug);
- std::string normalizeTag(const std::string &tag);
- /** Checks that the slug contains only alphanumeric characters, "-", and "_" */
- bool isSlugValid(const std::string &slug);
- /** Returns a string containing only the valid slug characters. */
- std::string normalizeSlug(const std::string &slug);
-
-
- extern const std::set<std::string> allowedTags;
- extern std::vector<Plugin*> plugins;
-
- extern std::string loginStatus;
- extern std::vector<Update> updates;
-
-
- } // namespace plugin
- } // namespace rack
|