subscribe.c 2.0 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
  const char* sql = "select * from meters;";
32
  int async = 1, restart = 0;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  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;
    }
48 49 50 51 52 53
    if (strcmp(argv[i], "-sync") == 0) {
      async = 0;
      continue;
    }
    if (strcmp(argv[i], "-restart") == 0) {
      restart = 1;
54 55
      continue;
    }
56 57 58 59
    if (strcmp(argv[i], "-single") == 0) {
      sql = "select * from t0;";
      continue;
    }
60 61
  }

weixin_48148422's avatar
weixin_48148422 已提交
62 63
  // init TAOS
  taos_init();
H
hzcheng 已提交
64

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

71
  if (async) {
72
    tsub = taos_subscribe("test", restart, taos, sql, subscribe_callback, NULL, 1000);
73
  } else {
74
    tsub = taos_subscribe("test", restart, taos, sql, NULL, NULL, 0);
75 76 77
  }

  if (tsub == NULL) {
weixin_48148422's avatar
weixin_48148422 已提交
78 79 80
    printf("failed to create subscription.\n");
    exit(0);
  } 
H
hzcheng 已提交
81

82 83 84
  if (async) {
    getchar();
  } else while(1) {
weixin_48148422's avatar
weixin_48148422 已提交
85
    TAOS_RES* res = taos_consume(tsub);
86 87
    print_result(res);
    getchar();
H
hzcheng 已提交
88 89 90 91 92 93 94
  }

  taos_unsubscribe(tsub);

  return 0;
}