From 8d3ad577f57e0a45ef9c0e2f1ce99957445f0eb8 Mon Sep 17 00:00:00 2001 From: christian mueller Date: Wed, 8 Feb 2012 17:01:01 +0100 Subject: [PATCH] * more changes regarding test controller. Now a very basic connect is supported --- CHANGELOG | 16 +++++++ PluginControlInterface/include/ControlSender.h | 8 ++++ PluginControlInterface/src/ControlSender.cpp | 59 +++++++++++++++++++++----- 3 files changed, 72 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5e62a11..c8b28e1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +commit 9f9f6fc7d283c60166431c5175b6bbaa53a23c9c +Author: christian mueller + + * change doc path + +commit d461527cb74c2fa42202a4466a6eeb07c0848a3a +Author: christian mueller + + * renaming of databasetest - copy paste fault + +commit 8a2db276ede7516038eb5d2bf13b89cc3ff185a7 +Author: christian mueller + + * add another routing test + * change answer in case routing can not be done on only one domain + commit f00468f45b72e2693b79af30665f683967deb5a7 Author: christian mueller diff --git a/PluginControlInterface/include/ControlSender.h b/PluginControlInterface/include/ControlSender.h index d4bb7bb..834c432 100644 --- a/PluginControlInterface/include/ControlSender.h +++ b/PluginControlInterface/include/ControlSender.h @@ -27,6 +27,7 @@ #define CONTROLSENDER_H_ #include +#include using namespace am; @@ -81,6 +82,13 @@ public: private: ControlReceiveInterface * mControlReceiveInterface; + struct handleStack + { + bool ok; + am_Handle_s handle; + }; + std::list mListOpenHandles; + am_mainConnectionID_t mCurrentID; }; #endif /* CONTROLSENDER_H_ */ diff --git a/PluginControlInterface/src/ControlSender.cpp b/PluginControlInterface/src/ControlSender.cpp index 2582f30..be750fe 100644 --- a/PluginControlInterface/src/ControlSender.cpp +++ b/PluginControlInterface/src/ControlSender.cpp @@ -70,10 +70,30 @@ void ControlSenderPlugin::hookAllPluginsLoaded() am_Error_e ControlSenderPlugin::hookUserConnectionRequest(const am_sourceID_t sourceID, const am_sinkID_t sinkID, am_mainConnectionID_t & mainConnectionID) { - (void) sourceID; - (void) sinkID; - (void) mainConnectionID; - return E_NOT_USED; + std::vector listRoutes; + am_Handle_s handle; + am_connectionID_t connectionID; + mControlReceiveInterface->getRoute(true, sourceID, sinkID, listRoutes); + if (listRoutes.empty()) + return E_NOT_POSSIBLE; + std::vector::iterator it(listRoutes[0].route.begin()); + for (; it != listRoutes[0].route.end(); ++it) + { + mControlReceiveInterface->connect(handle, connectionID, it->connectionFormat, it->sourceID, it->sinkID); + //this is primitive and works only for one connect at a time... otherwise the handles get mixed up! + handleStack stack; + stack.handle=handle; + stack.ok=false; + mListOpenHandles.push_back(stack); + } + am_MainConnection_s mainConnectionData; + mainConnectionData.connectionID=0; + mainConnectionData.connectionState=CS_CONNECTING; + mainConnectionData.delay=0; + mainConnectionData.route=listRoutes[0]; + mControlReceiveInterface->enterMainConnectionDB(mainConnectionData,mainConnectionID); + mCurrentID=mainConnectionID; + return E_OK; } am_Error_e ControlSenderPlugin::hookUserDisconnectionRequest(const am_mainConnectionID_t connectionID) @@ -126,7 +146,7 @@ am_Error_e ControlSenderPlugin::hookUserSetSinkMuteState(const am_sinkID_t sinkI am_Error_e ControlSenderPlugin::hookSystemRegisterDomain(const am_Domain_s & domainData, am_domainID_t & domainID) { //this application does not do anything with it -> but some product might want to take influence here - return mControlReceiveInterface->enterDomainDB(domainData,domainID); + return mControlReceiveInterface->enterDomainDB(domainData, domainID); } am_Error_e ControlSenderPlugin::hookSystemDeregisterDomain(const am_domainID_t domainID) @@ -143,7 +163,7 @@ void ControlSenderPlugin::hookSystemDomainRegistrationComplete(const am_domainID am_Error_e ControlSenderPlugin::hookSystemRegisterSink(const am_Sink_s & sinkData, am_sinkID_t & sinkID) { //this application does not do anything with it -> but some product might want to take influence here - return mControlReceiveInterface->enterSinkDB(sinkData,sinkID); + return mControlReceiveInterface->enterSinkDB(sinkData, sinkID); } am_Error_e ControlSenderPlugin::hookSystemDeregisterSink(const am_sinkID_t sinkID) @@ -155,7 +175,7 @@ am_Error_e ControlSenderPlugin::hookSystemDeregisterSink(const am_sinkID_t sinkI am_Error_e ControlSenderPlugin::hookSystemRegisterSource(const am_Source_s & sourceData, am_sourceID_t & sourceID) { //this application does not do anything with it -> but some product might want to take influence here - return mControlReceiveInterface->enterSourceDB(sourceData,sourceID); + return mControlReceiveInterface->enterSourceDB(sourceData, sourceID); } am_Error_e ControlSenderPlugin::hookSystemDeregisterSource(const am_sourceID_t sourceID) @@ -167,7 +187,7 @@ am_Error_e ControlSenderPlugin::hookSystemDeregisterSource(const am_sourceID_t s am_Error_e ControlSenderPlugin::hookSystemRegisterGateway(const am_Gateway_s & gatewayData, am_gatewayID_t & gatewayID) { //this application does not do anything with it -> but some product might want to take influence here - return mControlReceiveInterface->enterGatewayDB(gatewayData,gatewayID); + return mControlReceiveInterface->enterGatewayDB(gatewayData, gatewayID); } am_Error_e ControlSenderPlugin::hookSystemDeregisterGateway(const am_gatewayID_t gatewayID) @@ -179,7 +199,7 @@ am_Error_e ControlSenderPlugin::hookSystemDeregisterGateway(const am_gatewayID_t am_Error_e ControlSenderPlugin::hookSystemRegisterCrossfader(const am_Crossfader_s & crossfaderData, am_crossfaderID_t & crossfaderID) { //this application does not do anything with it -> but some product might want to take influence here - return mControlReceiveInterface->enterCrossfaderDB(crossfaderData,crossfaderID); + return mControlReceiveInterface->enterCrossfaderDB(crossfaderData, crossfaderID); } am_Error_e ControlSenderPlugin::hookSystemDeregisterCrossfader(const am_crossfaderID_t crossfaderID) @@ -244,8 +264,24 @@ void ControlSenderPlugin::hookSystemTimingInformationChanged(const am_mainConnec void ControlSenderPlugin::cbAckConnect(const am_Handle_s handle, const am_Error_e errorID) { - (void) handle; - (void) errorID; + (void)errorID; + //here is no error check !!!! + //\todo: add error check here + //\todo: algorith can be much better written here + bool allOk = true; + std::list::iterator it(mListOpenHandles.begin()); + + for (; it != mListOpenHandles.end(); ++it) + { + if (it->handle.handle == handle.handle) + it->ok = true; + allOk = allOk && it->ok; + } + + if (allOk) + { + mControlReceiveInterface->changeMainConnectionStateDB(mCurrentID,CS_CONNECTED); + } } void ControlSenderPlugin::cbAckDisconnect(const am_Handle_s handle, const am_Error_e errorID) @@ -309,6 +345,7 @@ am_Error_e ControlSenderPlugin::getConnectionFormatChoice(const am_sourceID_t so { (void) sourceID; (void) sinkID; + //ok, this is cheap. In a real product you have your preferences, right? listPrioConnectionFormats = listPossibleConnectionFormats; return (E_OK); } -- 2.7.4