channel.hpp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Copyright (c) 2019-2021 Paul-Louis Ageneau
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef RTC_IMPL_CHANNEL_H
  19. #define RTC_IMPL_CHANNEL_H
  20. #include "include.hpp"
  21. #include "message.hpp"
  22. #include <atomic>
  23. #include <functional>
  24. #include <variant>
  25. namespace rtc::impl {
  26. struct Channel {
  27. virtual std::optional<message_variant> receive() = 0;
  28. virtual std::optional<message_variant> peek() = 0;
  29. virtual size_t availableAmount() const = 0;
  30. virtual void triggerOpen();
  31. virtual void triggerClosed();
  32. virtual void triggerError(string error);
  33. virtual void triggerAvailable(size_t count);
  34. virtual void triggerBufferedAmount(size_t amount);
  35. virtual void resetCallbacks();
  36. synchronized_callback<> openCallback;
  37. synchronized_callback<> closedCallback;
  38. synchronized_callback<string> errorCallback;
  39. synchronized_callback<message_variant> messageCallback;
  40. synchronized_callback<> availableCallback;
  41. synchronized_callback<> bufferedAmountLowCallback;
  42. std::atomic<size_t> bufferedAmount = 0;
  43. std::atomic<size_t> bufferedAmountLowThreshold = 0;
  44. };
  45. } // namespace rtc::impl
  46. #endif