294 lines
11 KiB
C++
294 lines
11 KiB
C++
// Copyright (c) 2022 Robin Davies
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
// the Software without restriction, including without limitation the rights to
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
// subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#pragma once
|
|
#include <filesystem>
|
|
#include <iostream>
|
|
#include "Pedalboard.hpp"
|
|
#include "Presets.hpp"
|
|
#include "PluginPreset.hpp"
|
|
#include "Banks.hpp"
|
|
#include "JackConfiguration.hpp"
|
|
#include "JackServerSettings.hpp"
|
|
#include "WifiConfigSettings.hpp"
|
|
#include "WifiDirectConfigSettings.hpp"
|
|
#include "FileEntry.hpp"
|
|
#include <map>
|
|
#include "FilePropertyDirectoryTree.hpp"
|
|
#include "AlsaSequencer.hpp"
|
|
#include "ChannelRouterSettings.hpp"
|
|
|
|
|
|
|
|
namespace pipedal {
|
|
|
|
class UiFileProperty;
|
|
class Lv2PluginInfo;
|
|
class UiFileProperty;
|
|
|
|
class CurrentPreset {
|
|
public:
|
|
bool modified_ = false;
|
|
Pedalboard preset_;
|
|
|
|
DECLARE_JSON_MAP(CurrentPreset);
|
|
};
|
|
|
|
|
|
class UserSettings {
|
|
public:
|
|
std::string governor_ = "performance";
|
|
bool showStatusMonitor_ = true;
|
|
DECLARE_JSON_MAP(UserSettings);
|
|
};
|
|
|
|
|
|
struct PluginPresetValues {
|
|
|
|
std::vector<ControlValue> controls;
|
|
std::map<std::string,std::string> pathProperties;
|
|
Lv2PluginState state;
|
|
std::string lilvPresetUri;
|
|
};
|
|
|
|
|
|
class Storage {
|
|
private:
|
|
std::filesystem::path dataRoot;
|
|
std::filesystem::path dataRoot__audio_uploads;
|
|
|
|
std::filesystem::path configRoot;
|
|
BankIndex bankIndex;
|
|
BankFile currentBank;
|
|
PluginPresetIndex pluginPresetIndex;
|
|
|
|
private:
|
|
void FillSampleDirectoryTree(FilePropertyDirectoryTree*node, const std::filesystem::path&directory) const;
|
|
void UpgradeV1FactoryPresets();
|
|
void UpgradeV2FactoryPresets();
|
|
void UpgradeFactoryPresets();
|
|
void MaybeCopyDefaultPresets();
|
|
static std::string SafeEncodeName(const std::string& name);
|
|
static std::string SafeDecodeName(const std::string& name);
|
|
std::filesystem::path GetPresetsDirectory() const;
|
|
std::filesystem::path GetPluginPresetsDirectory() const;
|
|
std::filesystem::path GetIndexFileName() const;
|
|
std::filesystem::path GetBankFileName(const std::string & name) const;
|
|
std::filesystem::path GetChannelSelectionFileName();
|
|
std::filesystem::path GetAlsaSequencerConfigurationFileName();
|
|
std::filesystem::path GetCurrentPresetPath() const;
|
|
|
|
void LoadBankIndex();
|
|
void SaveBankIndex();
|
|
void ReIndex();
|
|
void LoadCurrentBank();
|
|
void SaveCurrentBank();
|
|
|
|
void LoadJackChannelSelection();
|
|
void SaveChannelSelection();
|
|
|
|
void LoadAlsaSequencerConfiguration();
|
|
void SaveAlsaSequencerConfiguration();
|
|
|
|
|
|
void SaveBankFile(const std::string& name,const BankFile&bankFile);
|
|
void LoadBankFile(const std::string &name,BankFile *pBank);
|
|
std::string GetPresetCopyName(const std::string &name);
|
|
bool isJackChannelSelectionValid = false;
|
|
JackChannelSelection jackChannelSelection;
|
|
|
|
AlsaSequencerConfiguration alsaSequencerConfiguration;;
|
|
|
|
WifiConfigSettings wifiConfigSettings;
|
|
WifiDirectConfigSettings wifiDirectConfigSettings;
|
|
|
|
UserSettings userSettings;
|
|
|
|
ChannelRouterSettings::ptr channelRouterSettings;
|
|
ChannelSelection channelSelection;
|
|
|
|
void UpgradeChannelRouterSettings();
|
|
std::filesystem::path GetChannelRouterSettingsPath() const;
|
|
void SaveChannelRouterSettings(ChannelRouterSettings::ptr settings);
|
|
ChannelRouterSettings::ptr LoadChannelRouterSettings();
|
|
|
|
public:
|
|
Storage();
|
|
void Initialize();
|
|
void CreateBank(const std::string & name);
|
|
|
|
void SetDataRoot(const std::filesystem::path& path);
|
|
void SetConfigRoot(const std::filesystem::path& path);
|
|
const std::filesystem::path&GetConfigRoot() const;
|
|
const std::filesystem::path&GetDataRoot() const;
|
|
|
|
const std::filesystem::path &GetPluginUploadDirectory() const;
|
|
|
|
std::string ToAbstractPathFromJson(const std::string &jsonAtomPath);
|
|
std::string FromAbstractPathJson(const std::string &jsonAtomPath);
|
|
std::filesystem::path FromAbstractPathString(const std::string &stringPath);
|
|
|
|
|
|
//std::vector<std::string> GetPedalboards();
|
|
|
|
const BankIndex & GetBanks() const { return bankIndex; }
|
|
|
|
JackServerSettings GetJackServerSettings();
|
|
void SetJackServerSettings(const pipedal::JackServerSettings&jackServerSettings);
|
|
|
|
void LoadWifiConfigSettings();
|
|
void LoadWifiDirectConfigSettings();
|
|
void LoadUserSettings();
|
|
void SaveUserSettings();
|
|
|
|
void LoadBank(int64_t instanceId);
|
|
int64_t GetBankByMidiBankNumber(uint8_t bankNumber);
|
|
const Pedalboard& GetCurrentPreset();
|
|
void SaveCurrentPreset(const Pedalboard&pedalboard);
|
|
int64_t SaveCurrentPresetAs(const Pedalboard&pedalboard, int64_t bankInstanceId,const std::string&namne,int64_t saveAfterInstanceId = -1);
|
|
int64_t GetCurrentPresetId() const;
|
|
|
|
void GetPresetIndex(PresetIndex*pResult);
|
|
void SetPresetIndex(const PresetIndex &presetIndex);
|
|
Pedalboard GetPreset(int64_t instanceId) const;
|
|
int64_t GetPresetByProgramNumber(uint8_t program) const;
|
|
void GetBankFile(int64_t instanceId,BankFile*pResult) const;
|
|
int64_t UploadPreset(const BankFile&bankFile, int64_t uploadAfter);
|
|
int64_t UploadBank(BankFile&bankFile, int64_t uploadAfter);
|
|
|
|
|
|
bool LoadPreset(int64_t presetId);
|
|
int64_t DeletePresets(const std::vector<int64_t>& presetInstanceIds);
|
|
bool RenamePreset(int64_t presetId, const std::string&name);
|
|
int64_t CopyPreset(int64_t fromId, int64_t toId = -1);
|
|
int64_t CreateNewPreset();
|
|
|
|
|
|
void RenameBank(int64_t bankId, const std::string&newName);
|
|
int64_t SaveBankAs(int64_t bankId, const std::string&newName);
|
|
|
|
void MoveBank(int from, int to);
|
|
int64_t DeleteBank(int64_t bankId);
|
|
|
|
bool IsInUploadsDirectory(const std::filesystem::path&path) const;
|
|
bool IsInAudioTracksDirectory(const std::filesystem::path&path) const;
|
|
bool IsValidArtworkFile(const std::filesystem::path& fullPath);
|
|
bool IsValidReadmeFile(const std::filesystem::path& fullpath);
|
|
|
|
FileRequestResult GetFileList2(const std::string&relativePath,const UiFileProperty&fileProperty);
|
|
|
|
FileRequestResult GetModFileList2(const std::string &relativePath,const UiFileProperty &fileProperty);
|
|
|
|
|
|
void SetJackChannelSelection(const JackChannelSelection&channelSelection);
|
|
JackChannelSelection GetJackChannelSelection(const JackConfiguration &jackConfiguration);
|
|
|
|
// returns true if services needs to be updated.
|
|
bool SetWifiConfigSettings(const WifiConfigSettings & wifiConfigSettings);
|
|
WifiConfigSettings GetWifiConfigSettings();
|
|
|
|
void SetWifiDirectConfigSettings(const WifiDirectConfigSettings & wifiDirectConfigSettings);
|
|
WifiDirectConfigSettings GetWifiDirectConfigSettings();
|
|
|
|
|
|
void SetGovernorSettings(const std::string & governor);
|
|
std::string GetGovernorSettings() const;
|
|
|
|
|
|
void SaveCurrentPreset(const CurrentPreset ¤tPreset);
|
|
bool RestoreCurrentPreset(CurrentPreset*pResult);
|
|
|
|
void SetAlsaSequencerConfiguration(const AlsaSequencerConfiguration &alsaSequencerConfiguration);
|
|
AlsaSequencerConfiguration GetAlsaSequencerConfiguration() const;
|
|
|
|
void SetChannelRouterSettings(ChannelRouterSettings::ptr settings);
|
|
ChannelRouterSettings::ptr GetChannelRouterSettings();
|
|
|
|
const ChannelSelection& GetChannelSelection() const;
|
|
|
|
|
|
//std::string MapPropertyFileName(Lv2PluginInfo*pluginInfo, const std::string&path);
|
|
|
|
private:
|
|
bool pluginPresetIndexChanged = false;
|
|
void LoadPluginPresetIndex();
|
|
void SavePluginPresetIndex();
|
|
|
|
|
|
std::filesystem::path GetPluginPresetPath(const std::string &pluginUri) const;
|
|
bool IsValidSampleFileName(const std::filesystem::path&fileName);
|
|
std::filesystem::path MakeUserFilePath(const std::string &directory, const std::string&filename);
|
|
void ToAbstractPaths(PluginPreset&pluginPreset);
|
|
void FromAbstractPaths(PluginPreset&pluginPreset);
|
|
|
|
public:
|
|
uint64_t GetPluginPresetIndexVersion();
|
|
void SetPluginPresetIndexVersion(uint64_t version);
|
|
|
|
bool HasPluginPresets(const std::string&pluginUri) const;
|
|
void SavePluginPresets(const std::string&pluginUri, const PluginPresets&presets);
|
|
void MergePluginPresets(const std::string&pluginUri, const PluginPresets&presets);
|
|
PluginPresets GetPluginPresets(const std::string&pluginUri) const;
|
|
const PluginPresetIndex& GetPluginPresetIndex();
|
|
|
|
PluginUiPresets GetPluginUiPresets(const std::string&pluginUri) const;
|
|
PluginPresetValues GetPluginPresetValues(const std::string&pluginUri, uint64_t instanceId);
|
|
|
|
uint64_t SavePluginPreset(
|
|
const std::string&name,
|
|
const PedalboardItem&pedalboardEntry
|
|
);
|
|
uint64_t SavePluginPreset(
|
|
const std::string &pluginUri,
|
|
PluginPreset& preset);
|
|
|
|
void UpdatePluginPresets(const PluginUiPresets &pluginPresets);
|
|
uint64_t CopyPluginPreset(const std::string&pluginUri,uint64_t presetId);
|
|
|
|
std::map<std::string,bool> GetFavorites() const;
|
|
void SetFavorites(const std::map<std::string,bool>&favorites);
|
|
|
|
void SetShowStatusMonitor(bool show);
|
|
bool GetShowStatusMonitor() const;
|
|
void SetSystemMidiBindings(const std::vector<MidiBinding>&bindings);
|
|
std::vector<MidiBinding> GetSystemMidiBindings();
|
|
void DeleteSampleFile(const std::filesystem::path &fileName);
|
|
std::string UploadUserFile(const std::string &directory,
|
|
std::shared_ptr<UiFileProperty> uiFileProperty ,const std::string&filename,std::istream&stream, size_t contentLength);
|
|
std::string CreateNewSampleDirectory(const std::string&relativePath, const UiFileProperty&uiFileProperty);
|
|
std::string RenameFilePropertyFile(
|
|
const std::string&oldRelativePath,
|
|
const std::string&newRelativePath,
|
|
const UiFileProperty&uiFileProperty);
|
|
std::string CopyFilePropertyFile(
|
|
const std::string&oldRelativePath,
|
|
const std::string&newRelativePath,
|
|
const UiFileProperty&uiFileProperty,
|
|
bool overwrite = false);
|
|
FilePropertyDirectoryTree::ptr GetFilePropertydirectoryTree(const UiFileProperty&uiFileProperty,const std::filesystem::path&selectedPath);
|
|
|
|
|
|
std::vector<PresetIndexEntry> RequestBankPresets(int64_t bankInstanceId);
|
|
int64_t ImportPresetsFromBank(int64_t bankInstanceId, const std::vector<int64_t> &presets);
|
|
int64_t CopyPresetsToBank(int64_t bankInstanceId, const std::vector<int64_t> &presets);
|
|
|
|
};
|
|
|
|
|
|
} // namespace pipedal
|