index_fst_automation.c 5.5 KB
Newer Older
dengyihao's avatar
dengyihao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
dengyihao's avatar
dengyihao 已提交
15

dengyihao's avatar
dengyihao 已提交
16 17
#include "index_fst_automation.h"

dengyihao's avatar
dengyihao 已提交
18
StartWithStateValue* startWithStateValueCreate(StartWithStateKind kind, ValueType ty, void* val) {
dengyihao's avatar
dengyihao 已提交
19 20
  StartWithStateValue* sv = calloc(1, sizeof(StartWithStateValue));
  if (sv == NULL) {
dengyihao's avatar
dengyihao 已提交
21 22
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
23

dengyihao's avatar
dengyihao 已提交
24 25
  sv->kind = kind;
  sv->type = ty;
dengyihao's avatar
dengyihao 已提交
26
  if (ty == FST_INT) {
dengyihao's avatar
dengyihao 已提交
27
    sv->val = *(int*)val;
dengyihao's avatar
dengyihao 已提交
28
  } else if (ty == FST_CHAR) {
dengyihao's avatar
dengyihao 已提交
29
    size_t len = strlen((char*)val);
dengyihao's avatar
dengyihao 已提交
30 31
    sv->ptr = (char*)calloc(1, len + 1);
    memcpy(sv->ptr, val, len);
dengyihao's avatar
dengyihao 已提交
32
  } else if (ty == FST_ARRAY) {
33 34
    // TODO,
    // nsv->arr = taosArrayFromList()
dengyihao's avatar
dengyihao 已提交
35
  }
dengyihao's avatar
dengyihao 已提交
36
  return sv;
dengyihao's avatar
dengyihao 已提交
37
}
dengyihao's avatar
dengyihao 已提交
38 39
void startWithStateValueDestroy(void* val) {
  StartWithStateValue* sv = (StartWithStateValue*)val;
dengyihao's avatar
dengyihao 已提交
40 41 42
  if (sv == NULL) {
    return;
  }
dengyihao's avatar
dengyihao 已提交
43 44

  if (sv->type == FST_INT) {
45
    //
dengyihao's avatar
dengyihao 已提交
46 47 48 49 50
  } else if (sv->type == FST_CHAR) {
    free(sv->ptr);
  } else if (sv->type == FST_ARRAY) {
    taosArrayDestroy(sv->arr);
  }
51
  free(sv);
dengyihao's avatar
dengyihao 已提交
52
}
dengyihao's avatar
dengyihao 已提交
53 54
StartWithStateValue* startWithStateValueDump(StartWithStateValue* sv) {
  StartWithStateValue* nsv = calloc(1, sizeof(StartWithStateValue));
dengyihao's avatar
dengyihao 已提交
55 56 57
  if (nsv == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
58 59

  nsv->kind = sv->kind;
60
  nsv->type = sv->type;
dengyihao's avatar
dengyihao 已提交
61 62 63 64
  if (nsv->type == FST_INT) {
    nsv->val = sv->val;
  } else if (nsv->type == FST_CHAR) {
    size_t len = strlen(sv->ptr);
dengyihao's avatar
dengyihao 已提交
65
    nsv->ptr = (char*)calloc(1, len + 1);
dengyihao's avatar
dengyihao 已提交
66 67
    memcpy(nsv->ptr, sv->ptr, len);
  } else if (nsv->type == FST_ARRAY) {
dengyihao's avatar
dengyihao 已提交
68
    //
dengyihao's avatar
dengyihao 已提交
69 70 71 72
  }
  return nsv;
}

dengyihao's avatar
dengyihao 已提交
73
// iterate fst
dengyihao's avatar
dengyihao 已提交
74 75 76 77 78 79
static void* alwaysMatchStart(AutomationCtx* ctx) { return NULL; }
static bool  alwaysMatchIsMatch(AutomationCtx* ctx, void* state) { return true; }
static bool  alwaysMatchCanMatch(AutomationCtx* ctx, void* state) { return true; }
static bool  alwaysMatchWillAlwaysMatch(AutomationCtx* ctx, void* state) { return true; }
static void* alwaysMatchAccpet(AutomationCtx* ctx, void* state, uint8_t byte) { return NULL; }
static void* alwaysMatchAccpetEof(AutomationCtx* ctx, void* state) { return NULL; }
dengyihao's avatar
dengyihao 已提交
80
// prefix query, impl later
dengyihao's avatar
dengyihao 已提交
81

dengyihao's avatar
dengyihao 已提交
82 83
static void* prefixStart(AutomationCtx* ctx) {
  StartWithStateValue* data = (StartWithStateValue*)(ctx->stdata);
84
  return startWithStateValueDump(data);
dengyihao's avatar
dengyihao 已提交
85
};
dengyihao's avatar
dengyihao 已提交
86 87
static bool prefixIsMatch(AutomationCtx* ctx, void* sv) {
  StartWithStateValue* ssv = (StartWithStateValue*)sv;
88
  return ssv->val == strlen(ctx->data);
dengyihao's avatar
dengyihao 已提交
89
}
dengyihao's avatar
dengyihao 已提交
90 91
static bool prefixCanMatch(AutomationCtx* ctx, void* sv) {
  StartWithStateValue* ssv = (StartWithStateValue*)sv;
92
  return ssv->val >= 0;
dengyihao's avatar
dengyihao 已提交
93
}
dengyihao's avatar
dengyihao 已提交
94
static bool  prefixWillAlwaysMatch(AutomationCtx* ctx, void* state) { return true; }
dengyihao's avatar
dengyihao 已提交
95 96
static void* prefixAccept(AutomationCtx* ctx, void* state, uint8_t byte) {
  StartWithStateValue* ssv = (StartWithStateValue*)state;
dengyihao's avatar
dengyihao 已提交
97 98 99
  if (ssv == NULL || ctx == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
100

dengyihao's avatar
dengyihao 已提交
101
  char* data = ctx->data;
dengyihao's avatar
dengyihao 已提交
102 103 104
  if (ssv->kind == Done) {
    return startWithStateValueCreate(Done, FST_INT, &ssv->val);
  }
dengyihao's avatar
dengyihao 已提交
105
  if ((strlen(data) > ssv->val) && data[ssv->val] == byte) {
dengyihao's avatar
dengyihao 已提交
106 107
    int val = ssv->val + 1;

dengyihao's avatar
dengyihao 已提交
108
    StartWithStateValue* nsv = startWithStateValueCreate(Running, FST_INT, &val);
dengyihao's avatar
dengyihao 已提交
109 110 111 112
    if (prefixIsMatch(ctx, nsv)) {
      nsv->kind = Done;
    } else {
      nsv->kind = Running;
113
    }
dengyihao's avatar
dengyihao 已提交
114
    return nsv;
115
  }
dengyihao's avatar
dengyihao 已提交
116 117
  return NULL;
}
dengyihao's avatar
dengyihao 已提交
118
static void* prefixAcceptEof(AutomationCtx* ctx, void* state) { return NULL; }
dengyihao's avatar
dengyihao 已提交
119 120 121

// pattern query, impl later

dengyihao's avatar
dengyihao 已提交
122 123 124 125
static void* patternStart(AutomationCtx* ctx) { return NULL; }
static bool  patternIsMatch(AutomationCtx* ctx, void* data) { return true; }
static bool  patternCanMatch(AutomationCtx* ctx, void* data) { return true; }
static bool  patternWillAlwaysMatch(AutomationCtx* ctx, void* state) { return true; }
dengyihao's avatar
dengyihao 已提交
126

dengyihao's avatar
dengyihao 已提交
127
static void* patternAccept(AutomationCtx* ctx, void* state, uint8_t byte) { return NULL; }
dengyihao's avatar
dengyihao 已提交
128

dengyihao's avatar
dengyihao 已提交
129
static void* patternAcceptEof(AutomationCtx* ctx, void* state) { return NULL; }
dengyihao's avatar
dengyihao 已提交
130

131
AutomationFunc automFuncs[] = {
dengyihao's avatar
dengyihao 已提交
132 133
    {alwaysMatchStart, alwaysMatchIsMatch, alwaysMatchCanMatch, alwaysMatchWillAlwaysMatch, alwaysMatchAccpet,
     alwaysMatchAccpetEof},
134 135 136
    {prefixStart, prefixIsMatch, prefixCanMatch, prefixWillAlwaysMatch, prefixAccept, prefixAcceptEof},
    {patternStart, patternIsMatch, patternCanMatch, patternWillAlwaysMatch, patternAccept, patternAcceptEof}
    // add more search type
dengyihao's avatar
dengyihao 已提交
137 138
};

dengyihao's avatar
dengyihao 已提交
139 140
AutomationCtx* automCtxCreate(void* data, AutomationType atype) {
  AutomationCtx* ctx = calloc(1, sizeof(AutomationCtx));
dengyihao's avatar
dengyihao 已提交
141 142 143
  if (ctx == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
144

dengyihao's avatar
dengyihao 已提交
145
  StartWithStateValue* sv = NULL;
dengyihao's avatar
dengyihao 已提交
146 147 148 149
  if (atype == AUTOMATION_ALWAYS) {
    int val = 0;
    sv = startWithStateValueCreate(Running, FST_INT, &val);
  } else if (atype == AUTOMATION_PREFIX) {
dengyihao's avatar
dengyihao 已提交
150 151
    int val = 0;
    sv = startWithStateValueCreate(Running, FST_INT, &val);
dengyihao's avatar
dengyihao 已提交
152
  } else if (atype == AUTMMATION_MATCH) {
dengyihao's avatar
dengyihao 已提交
153 154
  } else {
    // add more search type
dengyihao's avatar
dengyihao 已提交
155
  }
dengyihao's avatar
dengyihao 已提交
156

dengyihao's avatar
dengyihao 已提交
157 158 159 160
  char* dst = NULL;
  if (data != NULL) {
    char*  src = (char*)data;
    size_t len = strlen(src);
dengyihao's avatar
dengyihao 已提交
161
    dst = (char*)calloc(1, len * sizeof(char) + 1);
dengyihao's avatar
dengyihao 已提交
162 163
    memcpy(dst, src, len);
  }
164 165 166

  ctx->data = dst;
  ctx->type = atype;
dengyihao's avatar
dengyihao 已提交
167
  ctx->stdata = (void*)sv;
168 169
  return ctx;
}
dengyihao's avatar
dengyihao 已提交
170
void automCtxDestroy(AutomationCtx* ctx) {
dengyihao's avatar
dengyihao 已提交
171 172
  startWithStateValueDestroy(ctx->stdata);
  free(ctx->data);
dengyihao's avatar
dengyihao 已提交
173 174
  free(ctx);
}