audio-river/river/Interface.cpp

405 lines
15 KiB
C++
Raw Normal View History

2015-01-25 22:17:06 +01:00
/** @file
* @author Edouard DUPIN
* @copyright 2015, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
2015-01-26 22:04:29 +01:00
#include "debug.h"
2015-01-25 22:17:06 +01:00
#include "Interface.h"
2015-01-26 22:04:29 +01:00
#include "io/Node.h"
2015-02-05 19:10:53 +01:00
#include <drain/EndPointCallback.h>
#include <drain/EndPointWrite.h>
#include <drain/EndPointRead.h>
#include <drain/Volume.h>
2015-01-25 22:17:06 +01:00
2015-01-27 21:01:52 +01:00
#undef __class__
#define __class__ "Interface"
2015-02-05 19:10:53 +01:00
river::Interface::Interface(void) :
2015-02-24 22:20:11 +01:00
m_node(),
2015-01-26 22:04:29 +01:00
m_name(""),
2015-01-25 22:17:06 +01:00
m_volume(0.0f) {
2015-02-18 23:37:09 +01:00
static uint32_t uid = 0;
m_uid = uid++;
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
bool river::Interface::init(const std::string& _name,
2015-02-12 22:08:23 +01:00
float _freq,
const std::vector<audio::channel>& _map,
audio::format _format,
2015-02-24 22:20:11 +01:00
const std11::shared_ptr<river::io::Node>& _node,
const std11::shared_ptr<const ejson::Object>& _config) {
2015-01-25 22:17:06 +01:00
m_name = _name;
m_node = _node;
m_volume = 0.0f;
2015-02-12 22:08:23 +01:00
m_config = _config;
m_mode = river::modeInterface_unknow;
std::string type = m_config->getStringValue("io", "error");
if (type == "output") {
m_mode = river::modeInterface_output;
} else if (type == "input") {
m_mode = river::modeInterface_input;
} else if (type == "feedback") {
m_mode = river::modeInterface_feedback;
}
2015-02-04 21:08:06 +01:00
// register interface to be notify from the volume change.
m_node->registerAsRemote(shared_from_this());
2015-01-25 22:17:06 +01:00
// Create convertion interface
2015-02-17 21:08:15 +01:00
if ( m_node->isInput() == true
&& m_mode == river::modeInterface_input) {
2015-02-09 21:44:32 +01:00
m_process.setInputConfig(m_node->getInterfaceFormat());
2015-02-01 22:21:03 +01:00
// add all time the volume stage :
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Volume> algo = drain::Volume::create();
//algo->setInputFormat(m_node->getInterfaceFormat());
2015-02-01 22:21:03 +01:00
algo->setName("volume");
2015-02-09 21:44:32 +01:00
m_process.pushBack(algo);
RIVER_INFO("add basic volume stage (1)");
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::VolumeElement> tmpVolume = m_node->getVolume();
if (tmpVolume != nullptr) {
RIVER_INFO(" add volume for node");
algo->addVolumeStage(tmpVolume);
}
m_process.setOutputConfig(drain::IOFormatInterface(_map, _format, _freq));
2015-02-17 21:08:15 +01:00
} else if ( m_node->isOutput() == true
&& m_mode == river::modeInterface_output) {
m_process.setInputConfig(drain::IOFormatInterface(_map, _format, _freq));
2015-02-01 22:21:03 +01:00
// add all time the volume stage :
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Volume> algo = drain::Volume::create();
//algo->setOutputFormat(m_node->getInterfaceFormat());
2015-02-01 22:21:03 +01:00
algo->setName("volume");
2015-02-09 21:44:32 +01:00
m_process.pushBack(algo);
RIVER_INFO("add basic volume stage (2)");
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::VolumeElement> tmpVolume = m_node->getVolume();
if (tmpVolume != nullptr) {
RIVER_INFO(" add volume for node");
algo->addVolumeStage(tmpVolume);
}
2015-02-09 21:44:32 +01:00
m_process.setOutputConfig(m_node->getInterfaceFormat());
2015-02-17 21:08:15 +01:00
} else if ( m_node->isOutput() == true
&& m_mode == river::modeInterface_feedback) {
m_process.setInputConfig(m_node->getHarwareFormat());
2015-03-04 22:15:35 +01:00
/*
2015-02-17 21:08:15 +01:00
// add all time the volume stage :
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Volume> algo = drain::Volume::create();
2015-02-17 21:08:15 +01:00
//algo->setInputFormat(m_node->getInterfaceFormat());
algo->setName("volume");
m_process.pushBack(algo);
2015-03-04 22:15:35 +01:00
*/
2015-02-17 21:08:15 +01:00
// note : feedback has no volume stage ...
m_process.setOutputConfig(drain::IOFormatInterface(_map, _format, _freq));
} else {
RIVER_ERROR("Can not link virtual interface with type : " << m_mode << " to a hardware interface " << (m_node->isInput()==true?"input":"output"));
return false;
2015-01-25 22:17:06 +01:00
}
2015-01-26 22:04:29 +01:00
return true;
}
2015-02-24 22:20:11 +01:00
std11::shared_ptr<river::Interface> river::Interface::create(const std::string& _name,
2015-02-12 22:08:23 +01:00
float _freq,
const std::vector<audio::channel>& _map,
audio::format _format,
2015-02-24 22:20:11 +01:00
const std11::shared_ptr<river::io::Node>& _node,
const std11::shared_ptr<const ejson::Object>& _config) {
std11::shared_ptr<river::Interface> out = std11::shared_ptr<river::Interface>(new river::Interface());
2015-02-12 22:08:23 +01:00
out->init(_name, _freq, _map, _format, _node, _config);
2015-01-26 22:04:29 +01:00
return out;
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
river::Interface::~Interface() {
2015-01-28 22:07:11 +01:00
//stop(true, true);
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-01-25 22:17:06 +01:00
//m_node->interfaceRemove(shared_from_this());
}
2015-02-01 22:21:03 +01:00
/*
2015-02-05 19:10:53 +01:00
bool river::Interface::hasEndPoint() {
2015-02-01 22:21:03 +01:00
}
*/
2015-02-05 19:10:53 +01:00
void river::Interface::setReadwrite() {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.removeAlgoDynamic();
if (m_process.hasType<drain::EndPoint>() ) {
RIVER_ERROR("Endpoint is already present ==> can not change");
2015-02-01 22:21:03 +01:00
return;
}
if (m_node->isInput() == true) {
2015-02-09 21:44:32 +01:00
m_process.removeIfLast<drain::EndPoint>();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::EndPointRead> algo = drain::EndPointRead::create();
2015-02-09 21:44:32 +01:00
m_process.pushBack(algo);
2015-02-01 22:21:03 +01:00
} else {
2015-02-09 21:44:32 +01:00
m_process.removeIfFirst<drain::EndPoint>();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::EndPointWrite> algo = drain::EndPointWrite::create();
2015-02-09 21:44:32 +01:00
m_process.pushFront(algo);
2015-02-01 22:21:03 +01:00
}
}
2015-01-25 22:17:06 +01:00
2015-02-17 21:08:15 +01:00
void river::Interface::setOutputCallback(drain::playbackFunction _function) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-03-04 22:15:35 +01:00
if (m_mode != river::modeInterface_output) {
RIVER_ERROR("Can not set output endpoint on other than a output IO");
return;
}
2015-02-09 21:44:32 +01:00
m_process.removeAlgoDynamic();
m_process.removeIfFirst<drain::EndPoint>();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Algo> algo = drain::EndPointCallback::create(_function);
2015-02-09 21:44:32 +01:00
m_process.pushFront(algo);
2015-01-25 22:17:06 +01:00
}
2015-02-17 21:08:15 +01:00
void river::Interface::setInputCallback(drain::recordFunction _function) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-03-04 22:15:35 +01:00
if (m_mode == river::modeInterface_output) {
RIVER_ERROR("Can not set output endpoint on other than a input or feedback IO");
return;
}
2015-02-09 21:44:32 +01:00
m_process.removeAlgoDynamic();
m_process.removeIfLast<drain::EndPoint>();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Algo> algo = drain::EndPointCallback::create(_function);
2015-02-09 21:44:32 +01:00
m_process.pushBack(algo);
2015-01-25 22:17:06 +01:00
}
2015-02-17 21:08:15 +01:00
void river::Interface::setWriteCallback(drain::playbackFunctionWrite _function) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-03-04 22:15:35 +01:00
if (m_mode != river::modeInterface_output) {
RIVER_ERROR("Can not set output endpoint on other than a output IO");
return;
}
2015-02-09 21:44:32 +01:00
m_process.removeAlgoDynamic();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::EndPointWrite> algo = m_process.get<drain::EndPointWrite>(0);
2015-01-27 22:47:09 +01:00
if (algo == nullptr) {
return;
}
algo->setCallback(_function);
}
2015-01-25 22:17:06 +01:00
2015-02-24 22:20:11 +01:00
void river::Interface::start(const std11::chrono::system_clock::time_point& _time) {
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
RIVER_DEBUG("start [BEGIN]");
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-01-25 22:17:06 +01:00
m_node->interfaceAdd(shared_from_this());
RIVER_DEBUG("start [ END ]");
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
void river::Interface::stop(bool _fast, bool _abort) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
RIVER_DEBUG("stop [BEGIN]");
2015-01-25 22:17:06 +01:00
m_node->interfaceRemove(shared_from_this());
RIVER_DEBUG("stop [ END]");
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
void river::Interface::abort() {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
RIVER_DEBUG("abort [BEGIN]");
2015-01-25 22:17:06 +01:00
// TODO :...
RIVER_DEBUG("abort [ END ]");
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
bool river::Interface::setParameter(const std::string& _filter, const std::string& _parameter, const std::string& _value) {
RIVER_DEBUG("setParameter [BEGIN] : '" << _filter << "':'" << _parameter << "':'" << _value << "'");
2015-01-30 21:44:36 +01:00
bool out = false;
if ( _filter == "volume"
&& _parameter != "FLOW") {
RIVER_ERROR("Interface is not allowed to modify '" << _parameter << "' Volume just allowed to modify 'FLOW' volume");
return false;
2015-01-30 21:44:36 +01:00
}
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Algo> algo = m_process.get<drain::Algo>(_filter);
if (algo == nullptr) {
RIVER_ERROR("setParameter(" << _filter << ") ==> no filter named like this ...");
return false;
}
out = algo->setParameter(_parameter, _value);
RIVER_DEBUG("setParameter [ END ] : '" << out << "'");
2015-01-30 21:44:36 +01:00
return out;
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
std::string river::Interface::getParameter(const std::string& _filter, const std::string& _parameter) const {
RIVER_DEBUG("getParameter [BEGIN] : '" << _filter << "':'" << _parameter << "'");
2015-01-30 21:44:36 +01:00
std::string out;
2015-02-24 22:20:11 +01:00
std11::shared_ptr<const drain::Algo> algo = m_process.get<const drain::Algo>(_filter);
if (algo == nullptr) {
RIVER_ERROR("setParameter(" << _filter << ") ==> no filter named like this ...");
return "[ERROR]";
}
out = algo->getParameter(_parameter);
RIVER_DEBUG("getParameter [ END ] : '" << out << "'");
2015-01-30 21:44:36 +01:00
return out;
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
std::string river::Interface::getParameterProperty(const std::string& _filter, const std::string& _parameter) const {
RIVER_DEBUG("getParameterProperty [BEGIN] : '" << _filter << "':'" << _parameter << "'");
2015-01-30 21:44:36 +01:00
std::string out;
2015-02-24 22:20:11 +01:00
std11::shared_ptr<const drain::Algo> algo = m_process.get<const drain::Algo>(_filter);
if (algo == nullptr) {
RIVER_ERROR("setParameter(" << _filter << ") ==> no filter named like this ...");
return "[ERROR]";
}
out = algo->getParameterProperty(_parameter);
RIVER_DEBUG("getParameterProperty [ END ] : '" << out << "'");
2015-01-30 21:44:36 +01:00
return out;
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
void river::Interface::write(const void* _value, size_t _nbChunk) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::EndPointWrite> algo = m_process.get<drain::EndPointWrite>(0);
2015-01-25 22:17:06 +01:00
if (algo == nullptr) {
return;
}
algo->write(_value, _nbChunk);
}
2015-01-27 21:01:52 +01:00
#if 0
2015-01-25 22:17:06 +01:00
// TODO : add API aCCess mutex for Read and write...
2015-02-05 19:10:53 +01:00
std::vector<int16_t> river::Interface::read(size_t _nbChunk) {
2015-01-25 22:17:06 +01:00
// TODO :...
std::vector<int16_t> data;
/*
data.resize(_nbChunk*m_map.size(), 0);
m_mutex.lock();
int32_t nbChunkBuffer = m_circularBuffer.size() / m_map.size();
m_mutex.unlock();
while (nbChunkBuffer < _nbChunk) {
usleep(1000);
nbChunkBuffer = m_circularBuffer.size() / m_map.size();
}
m_mutex.lock();
for (size_t iii = 0; iii<data.size(); ++iii) {
data[iii] = m_circularBuffer[iii];
}
m_circularBuffer.erase(m_circularBuffer.begin(), m_circularBuffer.begin()+data.size());
m_mutex.unlock();
*/
return data;
}
2015-01-27 21:01:52 +01:00
#endif
2015-01-25 22:17:06 +01:00
2015-02-05 19:10:53 +01:00
void river::Interface::read(void* _value, size_t _nbChunk) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-01-25 22:17:06 +01:00
// TODO :...
}
2015-02-05 19:10:53 +01:00
size_t river::Interface::size() const {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-01-25 22:17:06 +01:00
// TODO :...
return 0;
}
2015-02-05 19:10:53 +01:00
void river::Interface::setBufferSize(size_t _nbChunk) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-01-25 22:17:06 +01:00
// TODO :...
}
2015-02-24 22:20:11 +01:00
void river::Interface::setBufferSize(const std11::chrono::microseconds& _time) {
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-01-25 22:17:06 +01:00
// TODO :...
}
2015-02-05 19:10:53 +01:00
void river::Interface::clearInternalBuffer() {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-02-09 21:44:32 +01:00
m_process.updateInterAlgo();
2015-01-25 22:17:06 +01:00
// TODO :...
}
2015-02-24 22:20:11 +01:00
std11::chrono::system_clock::time_point river::Interface::getCurrentTime() const {
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
2015-01-25 22:17:06 +01:00
// TODO :...
2015-02-24 22:20:11 +01:00
return std11::chrono::system_clock::time_point();
return std11::chrono::system_clock::now();
2015-01-25 22:17:06 +01:00
}
2015-02-05 19:10:53 +01:00
void river::Interface::addVolumeGroup(const std::string& _name) {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lock(m_mutex);
RIVER_DEBUG("addVolumeGroup(" << _name << ")");
2015-02-24 22:20:11 +01:00
std11::shared_ptr<drain::Volume> algo = m_process.get<drain::Volume>("volume");
if (algo == nullptr) {
RIVER_ERROR("addVolumeGroup(" << _name << ") ==> no volume stage ... can not add it ...");
return;
}
if (_name == "FLOW") {
// Local volume name
2015-02-24 22:20:11 +01:00
algo->addVolumeStage(std11::make_shared<drain::VolumeElement>(_name));
} else {
// get manager unique instance:
2015-02-24 22:20:11 +01:00
std11::shared_ptr<river::io::Manager> mng = river::io::Manager::getInstance();
algo->addVolumeStage(mng->getVolumeGroup(_name));
}
}
2015-01-25 22:17:06 +01:00
2015-02-24 22:20:11 +01:00
void river::Interface::systemNewInputData(std11::chrono::system_clock::time_point _time, const void* _data, size_t _nbChunk) {
std11::unique_lock<std11::recursive_mutex> lockProcess(m_mutex);
void * tmpData = const_cast<void*>(_data);
m_process.push(_time, tmpData, _nbChunk);
2015-01-25 22:17:06 +01:00
}
2015-02-24 22:20:11 +01:00
void river::Interface::systemNeedOutputData(std11::chrono::system_clock::time_point _time, void* _data, size_t _nbChunk, size_t _chunkSize) {
std11::unique_lock<std11::recursive_mutex> lockProcess(m_mutex);
2015-03-04 22:15:35 +01:00
//RIVER_INFO("time : " << _time);
2015-02-09 21:44:32 +01:00
m_process.pull(_time, _data, _nbChunk, _chunkSize);
2015-01-25 22:17:06 +01:00
}
2015-01-30 21:44:36 +01:00
2015-02-05 19:10:53 +01:00
void river::Interface::systemVolumeChange() {
2015-02-24 22:20:11 +01:00
std11::unique_lock<std11::recursive_mutex> lockProcess(m_mutex);
std11::shared_ptr<drain::Volume> algo = m_process.get<drain::Volume>("volume");
2015-02-04 21:08:06 +01:00
if (algo == nullptr) {
return;
}
algo->volumeChange();
2015-02-19 22:00:21 +01:00
}
2015-03-04 22:15:35 +01:00
static void link(etk::FSNode& _node, const std::string& _first, const std::string& _op, const std::string& _second, bool _isLink=true) {
2015-02-19 22:00:21 +01:00
if (_op == "->") {
2015-03-04 22:15:35 +01:00
if (_isLink) {
_node << " " << _first << " -> " << _second << ";\n";
} else {
_node << " " << _first << " -> " << _second << " [style=dashed];\n";
}
2015-02-19 22:00:21 +01:00
} else if (_op == "<-") {
_node << " " << _first << " -> " <<_second<< " [color=transparent];\n";
2015-03-04 22:15:35 +01:00
if (_isLink) {
_node << " " << _second << " -> " << _first << " [constraint=false];\n";
} else {
_node << " " << _second << " -> " << _first << " [constraint=false, style=dashed];\n";
}
2015-02-19 22:00:21 +01:00
}
}
2015-03-04 22:15:35 +01:00
void river::Interface::generateDot(etk::FSNode& _node, const std::string& _nameIO, bool _isLink) {
2015-02-19 22:00:21 +01:00
_node << "subgraph clusterInterface_" << m_uid << " {\n";
_node << " color=orange;\n";
_node << " label=\"[" << m_uid << "] Interface : " << m_name << "\";\n";
_node << " subgraph clusterInterface_" << m_uid << "_process {\n";
_node << " label=\"Drain::Process\";\n";
_node << " node [shape=ellipse];\n";
_node << " INTERFACE_ALGO_" << m_uid << "_in [ label=\"format=xxx\n freq=yyy\n channelMap={left,right}\n in\" ];\n";
_node << " INTERFACE_ALGO_" << m_uid << "_out [ label=\"format=xxx\n freq=yyy\n channelMap={left,right}\n out\" ];\n";
_node << " }\n";
if ( m_mode == river::modeInterface_input
|| m_mode == river::modeInterface_feedback) {
2015-03-04 22:15:35 +01:00
link(_node, _nameIO, "->", "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_in", _isLink);
2015-02-19 22:00:21 +01:00
link(_node, "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_in", "->", "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_out");
} else {
2015-03-04 22:15:35 +01:00
link(_node, _nameIO, "<-", "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_out", _isLink);
2015-02-19 22:00:21 +01:00
link(_node, "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_out", "<-", "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_in");
}
_node << " node [shape=Mdiamond];\n";
if (m_mode == river::modeInterface_input) {
_node << " API_" << m_uid << "_input [ label=\"API\nINPUT\" ];\n";
link(_node, "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_out", "->", "API_" + etk::to_string(m_uid) + "_input");
} else if (m_mode == river::modeInterface_feedback) {
_node << " API_" << m_uid << "_feedback [ label=\"API\nFEEDBACK\" ];\n";
link(_node, "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_out", "->", "API_" + etk::to_string(m_uid) + "_feedback");
} else if (m_mode == river::modeInterface_output) {
_node << " API_" << m_uid << "_output [ label=\"API\nOUTPUT\" ];\n";
link(_node, "INTERFACE_ALGO_" + etk::to_string(m_uid) + "_in", "<-", "API_" + etk::to_string(m_uid) + "_output");
}
_node << "}\n";
}