tref.h 2.5 KB
Newer Older
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

/*
 * 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 TDENGINE_TREF_H
#define TDENGINE_TREF_H

#ifdef __cplusplus
extern "C" {
#endif

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
24 25 26
// open a reference set, max is the mod used by hash, fp is the pointer to free resource function
// return rsetId which will be used by other APIs. On error, -1 is returned, and terrno is set appropriately
int taosOpenRef(int max, void (*fp)(void *)); 
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
27

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
28 29 30
// close the reference set, refId is the return value by taosOpenRef
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
int taosCloseRef(int refId); 
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
31 32

// add ref, p is the pointer to resource or pointer ID
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
33 34
// return Reference ID(rid) allocated. On error, -1 is returned, and terrno is set appropriately
int64_t taosAddRef(int refId, void *p);   
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
35 36 37 38

// remove ref, rid is the reference ID returned by taosAddRef
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
int taosRemoveRef(int rsetId, int64_t rid);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
39

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
40 41 42
// acquire ref, rid is the reference ID returned by taosAddRef
// return the resource p. On error, NULL is returned, and terrno is set appropriately
void *taosAcquireRef(int rsetId, int64_t rid);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
43

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
44 45 46
// release ref, rid is the reference ID returned by taosAddRef
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
int taosReleaseRef(int rsetId, int64_t rid);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
47

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
48 49 50
// return the first reference if rid is 0, otherwise return the next after current reference. 
// if return value is NULL, it means list is over(if terrno is set, it means error happens)
void *taosIterateRef(int rsetId, int64_t rid);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
51

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
52 53 54
// return the number of references in system
int  taosListRef();  

D
fix bug  
dapan1121 已提交
55 56
#define RID_VALID(x) ((x) > 0)

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
57 58
/* sample code to iterate the refs 

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
59
void demoIterateRefs(int rsetId) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
60

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
61
  void *p = taosIterateRef(refId, 0);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
62 63
  while (p) {
    // process P
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
64 65
    
    // get the rid from p
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
66

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
67
    p = taosIterateRef(rsetId, rid);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
68 69
  }
}
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
70

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
71
*/
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
72 73 74 75 76 77

#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_TREF_H