indexFstRegex.h 1.7 KB
Newer Older
dengyihao's avatar
dengyihao 已提交
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 29 30 31 32 33
/*
 * 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/>.
 */

#ifndef _TD_INDEX_FST_REGEX_H_
#define _TD_INDEX_FST_REGEX_H_

//#include "indexFstDfa.h"
#include "taos.h"
#include "tarray.h"
#include "tchecksum.h"
#include "thash.h"
#include "tlog.h"
#include "tutil.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef enum { MATCH, JUMP, SPLIT, RANGE } InstType;

typedef struct MatchValue {
wafwerar's avatar
wafwerar 已提交
34 35 36
#ifdef WINDOWS
  size_t avoidCompilationErrors;
#endif
dengyihao's avatar
dengyihao 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
} MatchValue;
typedef struct JumpValue {
  uint32_t step;
} JumpValue;

typedef struct SplitValue {
  uint32_t len1;
  uint32_t len2;
} SplitValue;

typedef struct RangeValue {
  uint8_t start;
  uint8_t end;
} RangeValue;

typedef struct {
  InstType ty;
  union {
    MatchValue mv;
    JumpValue  jv;
    SplitValue sv;
    RangeValue rv;
  };
} Inst;

typedef struct {
  char *orig;
  void *dfa;
} FstRegex;

FstRegex *regexCreate(const char *str);

dengyihao's avatar
dengyihao 已提交
69 70 71 72
uint32_t regexAutomStart(FstRegex *regex);
bool     regexAutomIsMatch(FstRegex *regex, uint32_t state);
bool     regexAutomCanMatch(FstRegex *regex, uint32_t state, bool null);
bool     regexAutomAccept(FstRegex *regex, uint32_t state, uint8_t byte, uint32_t *result);
dengyihao's avatar
dengyihao 已提交
73 74 75 76 77 78

#ifdef __cplusplus
}
#endif

#endif