indexFstDfa.h 1.9 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
/*
 * 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 __INDEX_FST_DFA_H__
#define __INDEX_FST_DFA_H__

#include "indexFstRegex.h"
#include "indexFstSparse.h"
#include "tarray.h"
#include "thash.h"

#ifdef __cplusplus

extern "C" {
#endif

typedef struct FstDfa FstDfa;

typedef struct {
dengyihao's avatar
dengyihao 已提交
32
  SArray  *insts;
dengyihao's avatar
dengyihao 已提交
33 34
  uint32_t next[256];
  bool     isMatch;
dengyihao's avatar
dengyihao 已提交
35
} DfaState;
dengyihao's avatar
dengyihao 已提交
36 37 38 39 40

/*
 * dfa builder related func
 **/
typedef struct FstDfaBuilder {
dengyihao's avatar
dengyihao 已提交
41
  FstDfa   *dfa;
dengyihao's avatar
dengyihao 已提交
42 43 44 45 46
  SHashObj *cache;
} FstDfaBuilder;

FstDfaBuilder *dfaBuilderCreate(SArray *insts);

dengyihao's avatar
dengyihao 已提交
47 48
void dfaBuilderDestroy(FstDfaBuilder *builder);

dengyihao's avatar
dengyihao 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
FstDfa *dfaBuilderBuild(FstDfaBuilder *builder);

bool dfaBuilderRunState(FstDfaBuilder *builder, FstSparseSet *cur, FstSparseSet *next, uint32_t state, uint8_t bytes,
                        uint32_t *result);

bool dfaBuilderCachedState(FstDfaBuilder *builder, FstSparseSet *set, uint32_t *result);

/*
 * dfa related func
 **/
typedef struct FstDfa {
  SArray *insts;
  SArray *states;
} FstDfa;

FstDfa *dfaCreate(SArray *insts, SArray *states);
bool    dfaIsMatch(FstDfa *dfa, uint32_t si);
bool    dfaAccept(FstDfa *dfa, uint32_t si, uint8_t byte, uint32_t *result);
void    dfaAdd(FstDfa *dfa, FstSparseSet *set, uint32_t ip);
bool    dfaRun(FstDfa *dfa, FstSparseSet *from, FstSparseSet *to, uint8_t byte);

#ifdef __cplusplus
}
#endif

#endif