tprocess.h 2.2 KB
Newer Older
S
shm  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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_UTIL_PROCESS_H_
#define _TD_UTIL_PROCESS_H_

#include "os.h"

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
25
typedef enum { PROC_REQ = 1, PROC_RSP, PROC_REGIST, PROC_RELEASE } ProcFuncType;
S
Shengliang Guan 已提交
26

27
typedef struct SProcObj SProcObj;
S
shm  
Shengliang Guan 已提交
28 29
typedef void *(*ProcMallocFp)(int32_t contLen);
typedef void *(*ProcFreeFp)(void *pCont);
S
Shengliang Guan 已提交
30
typedef void (*ProcConsumeFp)(void *parent, void *pHead, int16_t headLen, void *pBody, int32_t bodyLen,
S
Shengliang Guan 已提交
31
                               ProcFuncType ftype);
S
shm  
Shengliang Guan 已提交
32 33

typedef struct {
S
shm  
Shengliang Guan 已提交
34 35 36 37 38 39
  ProcConsumeFp childConsumeFp;
  ProcMallocFp  childMallocHeadFp;
  ProcFreeFp    childFreeHeadFp;
  ProcMallocFp  childMallocBodyFp;
  ProcFreeFp    childFreeBodyFp;
  ProcConsumeFp parentConsumeFp;
S
shm  
Shengliang Guan 已提交
40
  ProcMallocFp  parentMallocHeadFp;
S
shm  
Shengliang Guan 已提交
41 42 43
  ProcFreeFp    parentFreeHeadFp;
  ProcMallocFp  parentMallocBodyFp;
  ProcFreeFp    parentFreeBodyFp;
S
shm  
Shengliang Guan 已提交
44
  SShm          shm;
45
  void         *parent;
S
shm  
Shengliang Guan 已提交
46
  const char   *name;
S
shm  
Shengliang Guan 已提交
47
  bool          isChild;
S
shm  
Shengliang Guan 已提交
48 49 50
} SProcCfg;

SProcObj *taosProcInit(const SProcCfg *pCfg);
S
shm  
Shengliang Guan 已提交
51
void      taosProcCleanup(SProcObj *pProc);
S
shm  
Shengliang Guan 已提交
52
int32_t   taosProcRun(SProcObj *pProc);
S
Shengliang Guan 已提交
53
void      taosProcStop(SProcObj *pProc);
54 55 56 57 58 59 60

int32_t taosProcPutToChildQ(SProcObj *pProc, const void *pHead, int16_t headLen, const void *pBody, int32_t bodyLen,
                            void *handle, ProcFuncType ftype);
void    taosProcRemoveHandle(SProcObj *pProc, void *handle);
void    taosProcCloseHandles(SProcObj *pProc, void (*HandleFp)(void *handle));
void    taosProcPutToParentQ(SProcObj *pProc, const void *pHead, int16_t headLen, const void *pBody, int32_t bodyLen,
                             ProcFuncType ftype);
S
shm  
Shengliang Guan 已提交
61 62 63 64 65 66

#ifdef __cplusplus
}
#endif

#endif /*_TD_UTIL_PROCESS_H_*/