mqtt_client.c 2.57 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright (c) 2014 Cesanta Software Limited
 * All rights reserved
 * This software is dual-licensed: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation. For the terms of this
 * license, see <http://www.gnu.org/licenses/>.
 *
 * You are free to use this software under the terms of the GNU General
 * Public License, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * Alternatively, you can license this software under a commercial
 * license, as set out in <https://www.cesanta.com/license>.
 */

#include "mongoose.h"

struct mg_mqtt_topic_expression topic_expressions[] = {
  {"/stuff", 0}
};

static void ev_handler(struct mg_connection *nc, int ev, void *p) {
  struct mg_mqtt_message *msg = (struct mg_mqtt_message *)p;
  (void) nc;

#if 0
29
  if (ev != MG_EV_POLL)
30 31 32 33
    printf("USER HANDLER GOT %d\n", ev);
#endif

  switch (ev) {
34
    case MG_EV_CONNECT:
35 36 37
      mg_set_protocol_mqtt(nc);
      mg_send_mqtt_handshake(nc, "dummy");
      break;
38 39
    case MG_EV_MQTT_CONNACK:
      if (msg->connack_ret_code != MG_EV_MQTT_CONNACK_ACCEPTED) {
40 41 42 43 44 45
        printf("Got mqtt connection error: %d\n", msg->connack_ret_code);
        exit(1);
      }
      printf("Subscribing to '/stuff'\n");
      mg_mqtt_subscribe(nc, topic_expressions, sizeof(topic_expressions)/sizeof(*topic_expressions), 42);
      break;
46
    case MG_EV_MQTT_PUBACK:
47 48
      printf("Message publishing acknowledged (msg_id: %d)\n", msg->message_id);
      break;
49
    case MG_EV_MQTT_SUBACK:
50 51
      printf("Subscription acknowledged, forwarding to '/test'\n");
      break;
52
    case MG_EV_MQTT_PUBLISH:
53 54 55 56 57 58 59 60 61 62
      {
#if 0
        char hex[1024] = {0};
        mg_hexdump(nc->recv_mbuf.buf, msg->payload.len, hex, sizeof(hex));
        printf("Got incoming message %s:\n%s", msg->topic, hex);
#else
        printf("Got incoming message %s: %.*s\n", msg->topic, (int)msg->payload.len, msg->payload.p);
#endif

        printf("Forwarding to /test\n");
63
        mg_mqtt_publish(nc, "/test", 65, MG_MQTT_QOS(0), msg->payload.p, msg->payload.len);
64 65
      }
      break;
66
    case MG_EV_CLOSE:
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
      printf("Connection closed\n");
      exit(1);
  }
}

int main(void) {
  struct mg_mgr mgr;
  const char *address = "localhost:1883";

  mg_mgr_init(&mgr, NULL);

  if (mg_connect(&mgr, address, ev_handler) == NULL) {
    fprintf(stderr, "mg_connect(%s) failed\n", address);
    exit(EXIT_FAILURE);
  }

  for(;;) {
    mg_mgr_poll(&mgr, 1000);
  }
}