123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <mosquittopp.h>
- static int run = -1;
- class mosquittopp_test : public mosqpp::mosquittopp
- {
- public:
- mosquittopp_test(const char *id);
- void on_connect(int rc);
- void on_message(const struct mosquitto_message *msg);
- };
- mosquittopp_test::mosquittopp_test(const char *id) : mosqpp::mosquittopp(id)
- {
- }
- void mosquittopp_test::on_connect(int rc)
- {
- if(rc){
- exit(1);
- }
- }
- void mosquittopp_test::on_message(const struct mosquitto_message *msg)
- {
- if(msg->mid != 13423){
- printf("Invalid mid (%d)\n", msg->mid);
- exit(1);
- }
- if(msg->qos != 2){
- printf("Invalid qos (%d)\n", msg->qos);
- exit(1);
- }
- if(strcmp(msg->topic, "pub/qos2/receive")){
- printf("Invalid topic (%s)\n", msg->topic);
- exit(1);
- }
- if(strcmp((char *)msg->payload, "message")){
- printf("Invalid payload (%s)\n", (char *)msg->payload);
- exit(1);
- }
- if(msg->payloadlen != 7){
- printf("Invalid payloadlen (%d)\n", msg->payloadlen);
- exit(1);
- }
- if(msg->retain != false){
- printf("Invalid retain (%d)\n", msg->retain);
- exit(1);
- }
- run = 0;
- }
- int main(int argc, char *argv[])
- {
- struct mosquittopp_test *mosq;
- int port = atoi(argv[1]);
- mosqpp::lib_init();
- mosq = new mosquittopp_test("publish-qos2-test");
- mosq->message_retry_set(3);
- mosq->connect("localhost", port, 60);
- while(run == -1){
- mosq->loop();
- }
- delete mosq;
- mosqpp::lib_cleanup();
- return run;
- }
|