00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef qpid_framing_ExchangeBoundOkBody__
00029 #define qpid_framing_ExchangeBoundOkBody__
00030
00031 #include <string>
00032 #include <sstream>
00033
00034 #include <amqp_types.h>
00035 #include <AMQMethodBody.h>
00036 #include <Buffer.h>
00037 #include <FieldTable.h>
00038
00039 namespace qpid
00040 {
00041 namespace framing
00042 {
00043
00044
00045 class ExchangeBoundOkBody : public AMQMethodBody
00046 {
00047
00048
00049 u_int16_t replyCode;
00050 string replyText;
00051
00052
00053 public:
00054 typedef boost::shared_ptr<ExchangeBoundOkBody> shared_ptr;
00055
00056
00057
00058 ExchangeBoundOkBody(ProtocolVersion& version,
00059 u_int16_t replyCode,
00060 const string& replyText
00061 ) :
00062 AMQMethodBody(version),
00063 replyCode(replyCode),
00064 replyText(replyText)
00065 { }
00066
00067
00068 inline ExchangeBoundOkBody(u_int8_t major, u_int8_t minor): AMQMethodBody(major, minor) {}
00069 inline ExchangeBoundOkBody(ProtocolVersion& version): AMQMethodBody(version) {}
00070 virtual ~ExchangeBoundOkBody() {}
00071
00072
00073
00074 inline u_int16_t getReplyCode() { return replyCode; }
00075 inline const string& getReplyText() { return replyText; }
00076
00077
00078
00079 inline void print(std::ostream& out) const
00080 {
00081 out << "ExchangeBoundOk: ";
00082 out << "replyCode=" << replyCode;
00083 out << "; replyText=" << replyText;
00084 }
00085
00086 inline u_int16_t amqpClassId() const
00087 {
00088 return 40;
00089 }
00090
00091 inline u_int16_t amqpMethodId() const
00092 {
00093 return 23;
00094 }
00095
00096 inline u_int32_t bodySize() const
00097 {
00098 u_int32_t size = 0;
00099 size += 2;
00100 size += 1 + replyText.length();
00101 return size;
00102 }
00103
00104 inline void encodeContent(Buffer& buffer) const
00105 {
00106 buffer.putShort(replyCode);
00107 buffer.putShortString(replyText);
00108 }
00109
00110 inline void decodeContent(Buffer& buffer)
00111 {
00112 replyCode = buffer.getShort();
00113 buffer.getShortString(replyText);
00114 }
00115
00116
00117
00118 };
00119
00120
00121 }
00122 }
00123
00124 #endif
00125