ttt.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #ifndef RABBITMQ_CLIENT_H_
  2. #define RABBITMQ_CLIENT_H_
  3. #include <string>
  4. #include <vector>
  5. #include <rabbitmq-c/tcp_socket.h>
  6. using std::string;
  7. using std::vector;
  8. class CRabbitmqClient{
  9. public:
  10. CRabbitmqClient();
  11. ~CRabbitmqClient();
  12. int Connect(const string &strHostname, int iPort, const string &strUser, const string &strPasswd);
  13. int Disconnect();
  14. /**
  15. * @brief ExchangeDeclare 声明exchange
  16. * @param [in] strExchange
  17. * @param [in] strType
  18. * @return 等于0值代表成功创建exchange,小于0代表错误
  19. */
  20. int ExchangeDeclare(const string &strExchange, const string &strType);
  21. /**
  22. * @brief QueueDeclare 声明消息队列
  23. * @param [in] strQueueName 消息队列实例
  24. * @param
  25. * @return 等于0值代表成功创建queue,小于0代表错误
  26. */
  27. int QueueDeclare(const string &strQueueName);
  28. /**
  29. * @brief QueueBind 将队列,交换机和绑定规则绑定起来形成一个路由表
  30. * @param [in] strQueueName 消息队列
  31. * @param [in] strExchange 交换机名称
  32. * @param [in] strBindKey 路由名称 “msg.#” “msg.weather.**”
  33. * @return 等于0值代表成功绑定,小于0代表错误
  34. */
  35. int QueueBind(const string &strQueueName, const string &strExchange, const string &strBindKey);
  36. /**
  37. * @brief QueueUnbind 将队列,交换机和绑定规则绑定解除
  38. * @param [in] strQueueName 消息队列
  39. * @param [in] strExchange 交换机名称
  40. * @param [in] strBindKey 路由名称 “msg.#” “msg.weather.**”
  41. * @return 等于0值代表成功绑定,小于0代表错误
  42. */
  43. int QueueUnbind(const string &strQueueName, const string &strExchange, const string &strBindKey);
  44. /**
  45. * @brief QueueDelete 删除消息队列。
  46. * @param [in] strQueueName 消息队列名称
  47. * @param [in] iIfUnused 消息队列是否在用,1 则论是否在用都删除
  48. * @return 等于0值代表成功删除queue,小于0代表错误
  49. */
  50. int QueueDelete(const string &strQueueName, int iIfUnused);
  51. /**
  52. * @brief Publish 发布消息
  53. * @param [in] strMessage 消息实体
  54. * @param [in] strExchange 交换器
  55. * @param [in] strRoutekey 路由规则
  56. * 1.Direct Exchange – 处理路由键。需要将一个队列绑定到交换机上,要求该消息与一个特定的路由键完全匹配。
  57. * 2.Fanout Exchange – 不处理路由键。将队列绑定到交换机上。一个发送到交换机的消息都会被转发到与该交换机绑定的所有队列上。
  58. * 3.Topic Exchange – 将路由键和某模式进行匹配。此时队列需要绑定要一个模式上。符号“#”匹配一个或多个词,符号“*”匹配不多不少一个词。
  59. * 因此“audit.#”能够匹配到“audit.irs.corporate”,但是“audit.*” 只会匹配到“audit.irs”
  60. * @return 等于0值代表成功发送消息实体,小于0代表发送错误
  61. */
  62. int Publish(const string &strMessage, const string &strExchange, const string &strRoutekey);
  63. /**
  64. * @brief consumer 消费消息
  65. * @param [in] strQueueName 队列名称
  66. * @param [out] message_array 获取的消息实体
  67. * @param [int] GetNum 需要取得的消息个数
  68. * @param [int] timeout 取得的消息是延迟,若为NULL,表示持续取,无延迟,阻塞状态
  69. * @return 等于0值代表成功,小于0代表错误,错误信息从ErrorReturn返回
  70. */
  71. int Consumer(const string &strQueueName, vector<string> &message_array, int GetNum = 1, struct timeval *timeout = NULL);
  72. private:
  73. CRabbitmqClient(const CRabbitmqClient & rh);
  74. void operator=(const CRabbitmqClient & rh);
  75. int ErrorMsg(amqp_rpc_reply_t x, char const *context);
  76. string m_strHostname; // amqp主机
  77. int m_iPort; // amqp端口
  78. string m_strUser;
  79. string m_strPasswd;
  80. int m_iChannel;
  81. amqp_socket_t *m_pSock;
  82. amqp_connection_state_t m_pConn;
  83. };
  84. #endif