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.

86 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) {
  50. handler(from, begin(buffer), end(buffer));
  51. };
  52. }
  53. template <typename It>
  54. void incomingMessage(
  55. const asio::ip::udp::endpoint& from, It messageBegin, It messageEnd)
  56. {
  57. std::vector<uint8_t> buffer{messageBegin, messageEnd};
  58. mCallback(from, buffer);
  59. }
  60. asio::ip::udp::endpoint endpoint() const
  61. {
  62. return asio::ip::udp::endpoint({}, 0);
  63. }
  64. using SentMessage = std::pair<std::vector<uint8_t>, asio::ip::udp::endpoint>;
  65. std::vector<SentMessage> sentMessages;
  66. private:
  67. using ReceiveCallback =
  68. std::function<void(const asio::ip::udp::endpoint&, const std::vector<uint8_t>&)>;
  69. ReceiveCallback mCallback;
  70. };
  71. } // namespace test
  72. } // namespace discovery
  73. } // namespace ableton