Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.3KB

  1. /* Copyright 2016, Ableton AG, Berlin. All rights reserved.
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. * If you would like to incorporate Link into a proprietary software application,
  17. * please contact <link-devs@ableton.com>.
  18. */
  19. #pragma once
  20. #include <ableton/platforms/asio/AsioWrapper.hpp>
  21. #include <ableton/util/Log.hpp>
  22. #include <ableton/util/test/IoService.hpp>
  23. namespace ableton
  24. {
  25. namespace discovery
  26. {
  27. namespace test
  28. {
  29. class Socket
  30. {
  31. public:
  32. Socket(util::test::IoService&)
  33. {
  34. }
  35. friend void configureUnicastSocket(Socket&, const asio::ip::address_v4&)
  36. {
  37. }
  38. std::size_t send(
  39. const uint8_t* const pData, const size_t numBytes, const asio::ip::udp::endpoint& to)
  40. {
  41. sentMessages.push_back(
  42. std::make_pair(std::vector<uint8_t>{pData, pData + numBytes}, to));
  43. return numBytes;
  44. }
  45. template <typename Handler>
  46. void receive(Handler handler)
  47. {
  48. mCallback = [handler](const asio::ip::udp::endpoint& from,
  49. const std::vector<uint8_t>& buffer) { handler(from, begin(buffer), end(buffer)); };
  50. }
  51. template <typename It>
  52. void incomingMessage(
  53. const asio::ip::udp::endpoint& from, It messageBegin, It messageEnd)
  54. {
  55. std::vector<uint8_t> buffer{messageBegin, messageEnd};
  56. mCallback(from, buffer);
  57. }
  58. asio::ip::udp::endpoint endpoint() const
  59. {
  60. return asio::ip::udp::endpoint({}, 0);
  61. }
  62. using SentMessage = std::pair<std::vector<uint8_t>, asio::ip::udp::endpoint>;
  63. std::vector<SentMessage> sentMessages;
  64. private:
  65. using ReceiveCallback =
  66. std::function<void(const asio::ip::udp::endpoint&, const std::vector<uint8_t>&)>;
  67. ReceiveCallback mCallback;
  68. };
  69. } // namespace test
  70. } // namespace discovery
  71. } // namespace ableton