diff --git a/protocol/osc/CMakeLists.txt b/protocol/osc/CMakeLists.txt index 83789c8..721a0ba 100644 --- a/protocol/osc/CMakeLists.txt +++ b/protocol/osc/CMakeLists.txt @@ -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} diff --git a/protocol/osc/server.cpp b/protocol/osc/server.cpp new file mode 100644 index 0000000..0a86deb --- /dev/null +++ b/protocol/osc/server.cpp @@ -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 + +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 msg) +{ + switch (msg->address_pattern.at(0)) { + case '/': + { + std::vector 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(msg)); + break; + default: + break; + } +} + + +/** + * @brief Server::scheduleBundle + * @param msg + */ +void Server::scheduleBundle(const std::shared_ptr msg) +{ + (void)msg; +} + + +} // namespace OSC + diff --git a/protocol/osc/server.h b/protocol/osc/server.h new file mode 100644 index 0000000..6120add --- /dev/null +++ b/protocol/osc/server.h @@ -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); + +protected: + void scheduleBundle(const std::shared_ptr); + + /** + * @brief rootMethod + * @return + */ + Method* rootMethod() { return address_space_; } + +private: + Method* address_space_; +}; + +} // namespace OSC