Skip to content

Commit

Permalink
jtagd now sets and checks transport-layer protocol per connection
Browse files Browse the repository at this point in the history
  • Loading branch information
azonenberg committed Sep 12, 2018
1 parent 21e9142 commit c6ee4ba
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions jtagd/ConnectionThread.cpp
Expand Up @@ -52,11 +52,26 @@ void ProcessConnection(TestInterface* iface, Socket& client)
"");
}

//Pre-cache casted versions of the interface
auto jface = dynamic_cast<JtagInterface*>(iface);
auto sface = dynamic_cast<SWDInterface*>(iface);
auto gface = dynamic_cast<GPIOInterface*>(iface);

//Send the server-hello message
JtaghalPacket packet;
auto h = packet.mutable_hello();
h->set_magic("JTAGHAL");
h->set_version(1);
if(jface)
h->set_transport(Hello::TRANSPORT_JTAG);
else if(sface)
h->set_transport(Hello::TRANSPORT_SWD);
else
{
throw JtagExceptionWrapper(
"Unsupported transport",
"");
}
if(!SendMessage(client, packet))
{
throw JtagExceptionWrapper(
Expand All @@ -78,11 +93,29 @@ void ProcessConnection(TestInterface* iface, Socket& client)
"ClientHello has wrong magic/version",
"");
}
switch(ch.transport())
{
case Hello::TRANSPORT_JTAG:
if(!jface)
{
throw JtagExceptionWrapper(
"Client requested JTAG but this adapter doesn't support it",
"");
}
break;

//Pre-cache casted versions of the interface
auto jface = dynamic_cast<JtagInterface*>(iface);
auto sface = dynamic_cast<SWDInterface*>(iface);
auto gface = dynamic_cast<GPIOInterface*>(iface);
case Hello::TRANSPORT_SWD:
if(!sface)
{
throw JtagExceptionWrapper(
"Client requested SWD but this adapter doesn't support it",
"");
}
break;

default:
break;
}

//Sit around and wait for messages
while(RecvMessage(client, packet))
Expand Down

0 comments on commit c6ee4ba

Please sign in to comment.