status.hpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // Copyright (C) 2006 Douglas Gregor <doug.gregor -at- gmail.com>.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. /** @file status.hpp
  6. *
  7. * This header defines the class @c status, which reports on the
  8. * results of point-to-point communication.
  9. */
  10. #ifndef BOOST_MPI_STATUS_HPP
  11. #define BOOST_MPI_STATUS_HPP
  12. #include <boost/mpi/config.hpp>
  13. #include <boost/optional.hpp>
  14. namespace boost { namespace mpi {
  15. class request;
  16. class communicator;
  17. /** @brief Contains information about a message that has been or can
  18. * be received.
  19. *
  20. * This structure contains status information about messages that
  21. * have been received (with @c communicator::recv) or can be received
  22. * (returned from @c communicator::probe or @c
  23. * communicator::iprobe). It permits access to the source of the
  24. * message, message tag, error code (rarely used), or the number of
  25. * elements that have been transmitted.
  26. */
  27. class BOOST_MPI_DECL status
  28. {
  29. public:
  30. status() : m_count(-1) { }
  31. status(MPI_Status const& s) : m_status(s), m_count(-1) {}
  32. /**
  33. * Retrieve the source of the message.
  34. */
  35. int source() const { return m_status.MPI_SOURCE; }
  36. /**
  37. * Retrieve the message tag.
  38. */
  39. int tag() const { return m_status.MPI_TAG; }
  40. /**
  41. * Retrieve the error code.
  42. */
  43. int error() const { return m_status.MPI_ERROR; }
  44. /**
  45. * Determine whether the communication associated with this object
  46. * has been successfully cancelled.
  47. */
  48. bool cancelled() const;
  49. /**
  50. * Determines the number of elements of type @c T contained in the
  51. * message. The type @c T must have an associated data type, i.e.,
  52. * @c is_mpi_datatype<T> must derive @c mpl::true_. In cases where
  53. * the type @c T does not match the transmitted type, this routine
  54. * will return an empty @c optional<int>.
  55. *
  56. * @returns the number of @c T elements in the message, if it can be
  57. * determined.
  58. */
  59. template<typename T> optional<int> count() const;
  60. /**
  61. * References the underlying @c MPI_Status
  62. */
  63. operator MPI_Status&() { return m_status; }
  64. /**
  65. * References the underlying @c MPI_Status
  66. */
  67. operator const MPI_Status&() const { return m_status; }
  68. private:
  69. /**
  70. * INTERNAL ONLY
  71. */
  72. template<typename T> optional<int> count_impl(mpl::true_) const;
  73. /**
  74. * INTERNAL ONLY
  75. */
  76. template<typename T> optional<int> count_impl(mpl::false_) const;
  77. public: // friend templates are not portable
  78. /// INTERNAL ONLY
  79. mutable MPI_Status m_status;
  80. mutable int m_count;
  81. friend class communicator;
  82. friend class request;
  83. };
  84. } } // end namespace boost::mpi
  85. #endif // BOOST_MPI_STATUS_HPP