// 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 #include #include "json.hpp" namespace pipedal { class JackConfiguration { private: bool isValid_ = false; std::string errorStatus_; bool isRestarting_ = false; uint32_t sampleRate_ = 48000; size_t blockLength_ = 1024; size_t midiBufferSize_ = 16*1024; uint32_t maxAllowedMidiDelta_ = 0; std::vector inputAudioPorts_; std::vector outputAudioPorts_; std::vector inputMidiPorts_; std::vector outputMidiPorts_; public: JackConfiguration(); void Initialize(); ~JackConfiguration(); bool isValid() const { return isValid_;} bool isRestarting() const { return isRestarting_; } void SetIsRestarting(bool value) { isRestarting_ = value; } uint32_t GetSampleRate() const { return sampleRate_; } size_t GetBlockLength() const { return blockLength_; } size_t GetMidiBufferSize() const { return midiBufferSize_;} double GetMaxAllowedMidiDelta() const { return maxAllowedMidiDelta_; } void SetErrorStatus(const std::string&message) { this->errorStatus_ = message; } const std::vector &GetInputAudioPorts() const { return inputAudioPorts_; } const std::vector &GetOutputAudioPorts() const { return outputAudioPorts_; } const std::vector &GetInputMidiPorts() const { return inputMidiPorts_; } const std::vector &GetOutputMidiPorts() const { return outputMidiPorts_; } DECLARE_JSON_MAP(JackConfiguration); }; class JackChannelSelection { private: std::vector inputAudioPorts_; std::vector outputAudioPorts_; std::vector inputMidiPorts_; public: JackChannelSelection() { } bool isValid() const { return inputAudioPorts_.size() != 0 && outputAudioPorts_.size() != 0; } const std::vector& GetInputAudioPorts() const { return inputAudioPorts_; } const std::vector& getOutputAudioPorts() const { return outputAudioPorts_; } const std::vector& GetInputMidiPorts() const { return inputMidiPorts_; } JackChannelSelection RemoveInvalidChannels(const JackConfiguration&config) const; static JackChannelSelection MakeDefault(const JackConfiguration&config); DECLARE_JSON_MAP(JackChannelSelection); }; } // namespace.