/src/nstd/hidden_names/message_flags.hpp

http://github.com/dietmarkuehl/kuhllib · C++ Header · 74 lines · 39 code · 9 blank · 26 comment · 0 complexity · 8c601a31a0171a5463979dcbb34dacdc MD5 · raw file

  1. // nstd/hidden_names/message_flags.hpp -*-C++-*-
  2. // ----------------------------------------------------------------------------
  3. // Copyright (C) 2021 Dietmar Kuehl http://www.dietmar-kuehl.de
  4. //
  5. // Permission is hereby granted, free of charge, to any person
  6. // obtaining a copy of this software and associated documentation
  7. // files (the "Software"), to deal in the Software without restriction,
  8. // including without limitation the rights to use, copy, modify,
  9. // merge, publish, distribute, sublicense, and/or sell copies of
  10. // the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be
  14. // included in all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  18. // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  20. // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  21. // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  22. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  23. // OTHER DEALINGS IN THE SOFTWARE.
  24. // ----------------------------------------------------------------------------
  25. #ifndef INCLUDED_NSTD_HIDDEN_NAMES_MESSAGE_FLAGS
  26. #define INCLUDED_NSTD_HIDDEN_NAMES_MESSAGE_FLAGS
  27. #include <functional>
  28. #include <iosfwd>
  29. #include "nstd/file/socket.hpp"
  30. // ----------------------------------------------------------------------------
  31. namespace nstd::hidden_names {
  32. enum class message_flags: unsigned int {
  33. peek = MSG_PEEK,
  34. out_of_band = MSG_OOB,
  35. do_not_route = MSG_DONTROUTE
  36. };
  37. template <typename Operation>
  38. constexpr auto message_flags_apply(message_flags m0, message_flags m1) {
  39. return message_flags(Operation()(static_cast<unsigned int>(m0), static_cast<unsigned int>(m1)));
  40. }
  41. inline constexpr auto operator& (message_flags m0, message_flags m1) -> message_flags {
  42. return message_flags_apply<::std::bit_and<>>(m0, m1);
  43. }
  44. inline constexpr auto operator| (message_flags m0, message_flags m1) -> message_flags {
  45. return message_flags_apply<::std::bit_or<>>(m0, m1);
  46. }
  47. inline constexpr auto operator^ (message_flags m0, message_flags m1) -> message_flags {
  48. return message_flags_apply<::std::bit_xor<>>(m0, m1);
  49. }
  50. inline constexpr auto operator~ (message_flags m) -> message_flags {
  51. return message_flags(~static_cast<unsigned int>(m));
  52. }
  53. inline constexpr auto operator&= (message_flags& m0, message_flags m1) -> message_flags& {
  54. return m0 = m0 & m1;
  55. }
  56. inline constexpr auto operator|= (message_flags& m0, message_flags m1) -> message_flags& {
  57. return m0 = m0 | m1;
  58. }
  59. inline constexpr auto operator^= (message_flags& m0, message_flags m1) -> message_flags& {
  60. return m0 = m0 ^ m1;
  61. }
  62. auto operator<< (::std::ostream&, message_flags) -> ::std::ostream&;
  63. }
  64. // ----------------------------------------------------------------------------
  65. #endif