subscribe.c 1.8 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
  const char* host = "127.0.0.1";
  const char* user = "root";
  const char* passwd = "taosdata";
  int async = 1;
  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;
    }
    if (strncmp(argv[i], "-m=", 3) == 0) {
      async = strcmp(argv[i] + 3, "sync");
      continue;
    }
  }

weixin_48148422's avatar
weixin_48148422 已提交
53 54
  // init TAOS
  taos_init();
H
hzcheng 已提交
55

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

62 63 64 65 66 67 68
  if (async) {
    tsub = taos_subscribe(taos, "select * from meters;", subscribe_callback, NULL, 1000);
  } else {
    tsub = taos_subscribe(taos, "select * from meters;", NULL, NULL, 0);
  }

  if (tsub == NULL) {
weixin_48148422's avatar
weixin_48148422 已提交
69 70 71
    printf("failed to create subscription.\n");
    exit(0);
  } 
H
hzcheng 已提交
72

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

  taos_unsubscribe(tsub);

  return 0;
}