result.h 6.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* C interface for result
  2. (C) 2017-2019 Niall Douglas <http://www.nedproductions.biz/> (6 commits)
  3. File Created: Aug 2017
  4. Boost Software License - Version 1.0 - August 17th, 2003
  5. Permission is hereby granted, free of charge, to any person or organization
  6. obtaining a copy of the software and accompanying documentation covered by
  7. this license (the "Software") to use, reproduce, display, distribute,
  8. execute, and transmit the Software, and to prepare derivative works of the
  9. Software, and to permit third-parties to whom the Software is furnished to
  10. do so, all subject to the following:
  11. The copyright notices in the Software and this entire statement, including
  12. the above license grant, this restriction and the following disclaimer,
  13. must be included in all copies of the Software, in whole or in part, and
  14. all derivative works of the Software, unless such copies or derivative
  15. works are solely in the form of machine-executable object code generated by
  16. a source language processor.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  20. SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  21. FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef BOOST_OUTCOME_EXPERIMENTAL_RESULT_H
  26. #define BOOST_OUTCOME_EXPERIMENTAL_RESULT_H
  27. #include <stdint.h> // for intptr_t
  28. #define BOOST_OUTCOME_C_DECLARE_RESULT(ident, R, S) \
  29. struct cxx_result_##ident \
  30. { \
  31. R value; \
  32. unsigned flags; \
  33. S error; \
  34. }
  35. #define BOOST_OUTCOME_C_RESULT(ident) struct cxx_result_##ident
  36. #define BOOST_OUTCOME_C_RESULT_HAS_VALUE(r) (((r).flags & 1U) == 1U)
  37. #define BOOST_OUTCOME_C_RESULT_HAS_ERROR(r) (((r).flags & 2U) == 2U)
  38. #define BOOST_OUTCOME_C_RESULT_ERROR_IS_ERRNO(r) (((r).flags & (1U << 4U)) == (1U << 4U))
  39. /***************************** <system_error2> support ******************************/
  40. #define BOOST_OUTCOME_C_DECLARE_STATUS_CODE(ident, value_type) \
  41. struct cxx_status_code_##ident \
  42. { \
  43. void *domain; \
  44. value_type value; \
  45. };
  46. #define BOOST_OUTCOME_C_STATUS_CODE(ident) struct cxx_status_code_##ident
  47. struct cxx_status_code_posix
  48. {
  49. void *domain;
  50. int value;
  51. };
  52. #define BOOST_OUTCOME_C_DECLARE_RESULT_ERRNO(ident, R) BOOST_OUTCOME_C_DECLARE_RESULT(posix_##ident, R, struct cxx_status_code_posix)
  53. #define BOOST_OUTCOME_C_RESULT_ERRNO(ident) BOOST_OUTCOME_C_RESULT(posix_##ident)
  54. struct cxx_status_code_system
  55. {
  56. void *domain;
  57. intptr_t value;
  58. };
  59. #define BOOST_OUTCOME_C_DECLARE_RESULT_SYSTEM(ident, R) BOOST_OUTCOME_C_DECLARE_RESULT(system_##ident, R, struct cxx_status_code_system)
  60. #define BOOST_OUTCOME_C_RESULT_SYSTEM(ident) BOOST_OUTCOME_C_RESULT(system_##ident)
  61. #endif