1
0
Fork 0

receiver for OSC messages

This commit is contained in:
Kevin Matz 2023-04-23 11:35:31 -04:00
parent 1cce721179
commit 42ca307c4d
3 changed files with 137 additions and 0 deletions

View File

@ -11,6 +11,7 @@ target_sources(${PROJECT_NAME}
message.h
method.h
packet.h
server.h
PRIVATE
argument.cpp
bundle.cpp
@ -18,6 +19,7 @@ target_sources(${PROJECT_NAME}
message.cpp
method.cpp
packet.cpp
server.cpp
)
target_link_libraries(${PROJECT_NAME}

79
protocol/osc/server.cpp Normal file
View File

@ -0,0 +1,79 @@
/*
osc/server.cpp
Copyright (c) 2023 Kevin Matz (kevin.matz@gmail.com)
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.
*/
#include "server.h"
#include <sstream>
namespace OSC {
Server::Server()
: address_space_(new Method())
{
}
Server::~Server()
{
delete address_space_;
}
/**
* @brief Server::dispatch
* @param msg
*/
void Server::dispatch(const std::shared_ptr<Message> msg)
{
switch (msg->address_pattern.at(0)) {
case '/':
{
std::vector<std::string> patterns;
std::istringstream strm(msg->address_pattern);
strm.seekg(1); // skip leading '/'
for (std::string name; std::getline(strm, name, '/');)
patterns.emplace_back(std::string(name));
address_space_->dispatch(patterns, msg);
}
break;
case '#':
scheduleBundle(std::static_pointer_cast<Bundle>(msg));
break;
default:
break;
}
}
/**
* @brief Server::scheduleBundle
* @param msg
*/
void Server::scheduleBundle(const std::shared_ptr<Bundle> msg)
{
(void)msg;
}
} // namespace OSC

56
protocol/osc/server.h Normal file
View File

@ -0,0 +1,56 @@
/*
osc/server.h
Copyright (c) 2023 Kevin Matz (kevin.matz@gmail.com)
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 "bundle.h"
#include "message.h"
#include "method.h"
namespace OSC {
/**
* @brief \cite Spec10 Any application that receives OSC Packets is an OSC Server.
*/
class Server
{
public:
explicit Server();
virtual ~Server();
void dispatch(const std::shared_ptr<Message>);
protected:
void scheduleBundle(const std::shared_ptr<Bundle>);
/**
* @brief rootMethod
* @return
*/
Method* rootMethod() { return address_space_; }
private:
Method* address_space_;
};
} // namespace OSC