subscribe.c 1.9 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6
// sample code for TDengine subscribe/consume API
// to compile: gcc -o subscribe subscribe.c -ltaos

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
7
#include <taos.h>  // include TDengine header file
H
hzcheng 已提交
8

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

void print_result(TAOS_RES* res) {
  TAOS_ROW    row;
  int         num_fields = taos_num_fields(res);
  TAOS_FIELD* fields = taos_fetch_fields(res);

  while ((row = taos_fetch_row(res))) {
    char temp[256];
    taos_print_row(temp, row, fields, num_fields);
    puts(temp);
  }
}

void subscribe_callback(TAOS_SUB* tsub, TAOS_RES *res, void* param, int code) {
  print_result(res);
}


weixin_48148422's avatar
weixin_48148422 已提交
27
int main(int argc, char *argv[]) {
28 29 30
  const char* host = "127.0.0.1";
  const char* user = "root";
  const char* passwd = "taosdata";
31
  int async = 1, restart = 0;
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
  TAOS_SUB* tsub = NULL;

  for (int i = 1; i < argc; i++) {
    if (strncmp(argv[i], "-h=", 3) == 0) {
      host = argv[i] + 3;
      continue;
    }
    if (strncmp(argv[i], "-u=", 3) == 0) {
      user = argv[i] + 3;
      continue;
    }
    if (strncmp(argv[i], "-p=", 3) == 0) {
      passwd = argv[i] + 3;
      continue;
    }
47 48 49 50 51 52
    if (strcmp(argv[i], "-sync") == 0) {
      async = 0;
      continue;
    }
    if (strcmp(argv[i], "-restart") == 0) {
      restart = 1;
53 54 55 56
      continue;
    }
  }

weixin_48148422's avatar
weixin_48148422 已提交
57 58
  // init TAOS
  taos_init();
H
hzcheng 已提交
59

60
  TAOS* taos = taos_connect(host, user, passwd, "test", 0);
weixin_48148422's avatar
weixin_48148422 已提交
61 62
  if (taos == NULL) {
    printf("failed to connect to db, reason:%s\n", taos_errstr(taos));
H
hzcheng 已提交
63 64 65
    exit(1);
  }

66
  if (async) {
67
    tsub = taos_subscribe("test", restart, taos, "select * from meters;", subscribe_callback, NULL, 1000);
68
  } else {
69
    tsub = taos_subscribe("test", restart, taos, "select * from meters;", NULL, NULL, 0);
70 71 72
  }

  if (tsub == NULL) {
weixin_48148422's avatar
weixin_48148422 已提交
73 74 75
    printf("failed to create subscription.\n");
    exit(0);
  } 
H
hzcheng 已提交
76

77 78 79
  if (async) {
    getchar();
  } else while(1) {
weixin_48148422's avatar
weixin_48148422 已提交
80
    TAOS_RES* res = taos_consume(tsub);
81 82
    print_result(res);
    getchar();
H
hzcheng 已提交
83 84 85 86 87 88 89
  }

  taos_unsubscribe(tsub);

  return 0;
}