vnodeInt.h 2.4 KB
Newer Older
H
save  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

H
refact  
Hongze Cheng 已提交
16 17
#ifndef _TD_VNODE_DEF_H_
#define _TD_VNODE_DEF_H_
H
save  
Hongze Cheng 已提交
18

H
Hongze Cheng 已提交
19
#include "executor.h"
H
Hongze Cheng 已提交
20 21 22
#include "filter.h"
#include "qworker.h"
#include "sync.h"
H
Hongze Cheng 已提交
23
#include "tchecksum.h"
H
more  
Hongze Cheng 已提交
24
#include "tcoding.h"
H
Hongze Cheng 已提交
25
#include "tcompression.h"
L
Liu Jicong 已提交
26
#include "tdatablock.h"
H
refact  
Hongze Cheng 已提交
27
#include "tdbInt.h"
H
refact  
Hongze Cheng 已提交
28
#include "tfs.h"
H
Hongze Cheng 已提交
29
#include "tglobal.h"
H
Hongze Cheng 已提交
30
#include "tjson.h"
H
Hongze Cheng 已提交
31
#include "tlist.h"
H
refact  
Hongze Cheng 已提交
32
#include "tlockfree.h"
H
Hongze Cheng 已提交
33
#include "tlosertree.h"
H
Hongze Cheng 已提交
34
#include "tmallocator.h"
H
Hongze Cheng 已提交
35
#include "tskiplist.h"
H
Hongze Cheng 已提交
36
#include "tstream.h"
H
Hongze Cheng 已提交
37
#include "ttime.h"
H
Hongze Cheng 已提交
38 39
#include "ttimer.h"
#include "wal.h"
H
save  
Hongze Cheng 已提交
40

H
Hongze Cheng 已提交
41 42
#include "vnode.h"

H
save  
Hongze Cheng 已提交
43 44 45 46
#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
47
typedef struct SVnodeInfo   SVnodeInfo;
H
Hongze Cheng 已提交
48 49 50
typedef struct SMeta        SMeta;
typedef struct STsdb        STsdb;
typedef struct STQ          STQ;
H
Hongze Cheng 已提交
51 52 53
typedef struct SVState      SVState;
typedef struct SVBufPool    SVBufPool;
typedef struct SQWorkerMgmt SQHandle;
H
refact  
Hongze Cheng 已提交
54

L
Liu Jicong 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
typedef struct {
  int8_t  streamType;  // sma or other
  int8_t  dstType;
  int16_t padding;
  int32_t smaId;
  int64_t tbUid;
  int64_t lastReceivedVer;
  int64_t lastCommittedVer;
} SStreamSinkInfo;

typedef struct {
  SVnode*   pVnode;
  SHashObj* pHash;  // streamId -> SStreamSinkInfo
} SSink;

H
refact  
Hongze Cheng 已提交
70 71 72 73 74 75 76
// SVState
struct SVState {
  int64_t processed;
  int64_t committed;
  int64_t applied;
};

H
Hongze Cheng 已提交
77 78 79 80 81
struct SVnodeInfo {
  SVnodeCfg config;
  SVState   state;
};

H
save  
Hongze Cheng 已提交
82
struct SVnode {
H
refact  
Hongze Cheng 已提交
83 84 85 86 87 88 89
  char*      path;
  SVnodeCfg  config;
  SVState    state;
  SVBufPool* pBufPool;
  SMeta*     pMeta;
  STsdb*     pTsdb;
  SWal*      pWal;
L
Liu Jicong 已提交
90 91
  STQ*       pTq;
  SSink*     pSink;
H
refact  
Hongze Cheng 已提交
92 93
  tsem_t     canCommit;
  SQHandle*  pQuery;
S
Shengliang Guan 已提交
94
  SMsgCb     msgCb;
S
Shengliang Guan 已提交
95
  STfs*      pTfs;
H
save  
Hongze Cheng 已提交
96 97
};

H
refact  
Hongze Cheng 已提交
98 99
#define TD_VID(PVNODE) (PVNODE)->config.vgId

L
Liu Jicong 已提交
100
// sma
L
Liu Jicong 已提交
101
void smaHandleRes(void* pVnode, int64_t smaId, const SArray* data);
L
Liu Jicong 已提交
102

H
Hongze Cheng 已提交
103 104
#include "vnd.h"

H
Hongze Cheng 已提交
105 106 107 108 109 110
#include "meta.h"

#include "tsdb.h"

#include "tq.h"

H
save  
Hongze Cheng 已提交
111 112 113 114
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
115
#endif /*_TD_VNODE_DEF_H_*/