executor.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:6k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * executor.h
  4.  *   support for the POSTGRES executor module
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: executor.h,v 1.34 1999/06/17 15:15:53 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef EXECUTOR_H
  14. #define EXECUTOR_H
  15. #include <catalog/pg_index.h>
  16. #include <storage/bufmgr.h>
  17. #include <access/itup.h>
  18. #include <stdio.h>
  19. #include <executor/execdesc.h>
  20. /* ----------------
  21.  * TupIsNull
  22.  *
  23.  * This is used mainly to detect when there are no more
  24.  * tuples to process.
  25.  * ----------------
  26.  */
  27. /* return: true if tuple in slot is NULL, slot is slot to test */
  28. #define TupIsNull(slot) 
  29. ((slot) == NULL) ? 
  30. true 
  31. ((slot)->val == NULL) ? 
  32. true 
  33. false 
  34. )
  35. /* --------------------------------
  36.  * ExecIncrSlotBufferRefcnt
  37.  *
  38.  * When we pass around buffers in the tuple table, we have to
  39.  * be careful to increment reference counts appropriately.
  40.  * This is used mainly in the mergejoin code.
  41.  * --------------------------------
  42.  */
  43. #define ExecIncrSlotBufferRefcnt(slot) 
  44. BufferIsValid((slot)->ttc_buffer) ? 
  45. IncrBufferRefCount((slot)->ttc_buffer) 
  46. : (void)NULL 
  47. )
  48. /*
  49.  * prototypes from functions in execAmi.c
  50.  */
  51. extern void ExecOpenScanR(Oid relOid, int nkeys, ScanKey skeys, bool isindex,
  52.   ScanDirection dir, Snapshot snapshot,
  53.   Relation *returnRelation, Pointer *returnScanDesc);
  54. extern void ExecCloseR(Plan *node);
  55. extern void ExecReScan(Plan *node, ExprContext *exprCtxt, Plan *parent);
  56. extern HeapScanDesc ExecReScanR(Relation relDesc, HeapScanDesc scanDesc,
  57. ScanDirection direction, int nkeys, ScanKey skeys);
  58. extern void ExecMarkPos(Plan *node);
  59. extern void ExecRestrPos(Plan *node);
  60. extern Relation ExecCreatR(TupleDesc tupType, Oid relationOid);
  61. /*
  62.  * prototypes from functions in execJunk.c
  63.  */
  64. extern JunkFilter *ExecInitJunkFilter(List *targetList);
  65. extern bool ExecGetJunkAttribute(JunkFilter *junkfilter, TupleTableSlot *slot,
  66.  char *attrName, Datum *value, bool *isNull);
  67. extern HeapTuple ExecRemoveJunk(JunkFilter *junkfilter, TupleTableSlot *slot);
  68. /*
  69.  * prototypes from functions in execMain.c
  70.  */
  71. extern TupleDesc ExecutorStart(QueryDesc *queryDesc, EState *estate);
  72. extern TupleTableSlot *ExecutorRun(QueryDesc *queryDesc, EState *estate,
  73. int feature, Node *limoffset, Node *limcount);
  74. extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate);
  75. extern void ExecConstraints(char *caller, Relation rel, HeapTuple tuple,
  76. EState *estate);
  77. /*
  78.  * prototypes from functions in execProcnode.c
  79.  */
  80. extern bool ExecInitNode(Plan *node, EState *estate, Plan *parent);
  81. extern TupleTableSlot *ExecProcNode(Plan *node, Plan *parent);
  82. extern int ExecCountSlotsNode(Plan *node);
  83. extern void ExecEndNode(Plan *node, Plan *parent);
  84. /*
  85.  * prototypes from functions in execQual.c
  86.  */
  87. extern bool execConstByVal;
  88. extern int execConstLen;
  89. extern Datum ExecExtractResult(TupleTableSlot *slot, AttrNumber attnum,
  90.   bool *isNull);
  91. extern Datum ExecEvalParam(Param *expression, ExprContext *econtext,
  92.   bool *isNull);
  93. /* stop here */
  94. extern char *GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno,
  95.   bool *isNull);
  96. extern char *GetAttributeByName(TupleTableSlot *slot, char *attname, bool *isNull);
  97. extern Datum ExecEvalExpr(Node *expression, ExprContext *econtext, bool *isNull,
  98.  bool *isDone);
  99. extern bool ExecQual(List *qual, ExprContext *econtext);
  100. extern int ExecTargetListLength(List *targetlist);
  101. extern TupleTableSlot *ExecProject(ProjectionInfo *projInfo, bool *isDone);
  102. /*
  103.  * prototypes from functions in execScan.c
  104.  */
  105. extern TupleTableSlot *ExecScan(Scan *node, TupleTableSlot *(*accessMtd) ());
  106. /*
  107.  * prototypes from functions in execTuples.c
  108.  */
  109. extern TupleTable ExecCreateTupleTable(int initialSize);
  110. extern void ExecDestroyTupleTable(TupleTable table, bool shouldFree);
  111. extern TupleTableSlot *ExecAllocTableSlot(TupleTable table);
  112. extern TupleTableSlot *ExecStoreTuple(HeapTuple tuple,
  113.    TupleTableSlot *slot,
  114.    Buffer buffer,
  115.    bool shouldFree);
  116. extern TupleTableSlot *ExecClearTuple(TupleTableSlot *slot);
  117. extern TupleDesc ExecSetSlotDescriptor(TupleTableSlot *slot,
  118.   TupleDesc tupdesc);
  119. extern void ExecSetSlotDescriptorIsNew(TupleTableSlot *slot, bool isNew);
  120. extern void ExecInitResultTupleSlot(EState *estate, CommonState *commonstate);
  121. extern void ExecInitScanTupleSlot(EState *estate,
  122.   CommonScanState *commonscanstate);
  123. extern void ExecInitOuterTupleSlot(EState *estate, HashJoinState *hashstate);
  124. extern TupleDesc ExecGetTupType(Plan *node);
  125. extern TupleDesc ExecTypeFromTL(List *targetList);
  126. extern void SetChangedParamList(Plan *node, List *newchg);
  127. /*
  128.  * prototypes from functions in execUtils.c
  129.  */
  130. extern void ResetTupleCount(void);
  131. extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode,
  132.    Plan *parent);
  133. extern void ExecAssignExprContext(EState *estate, CommonState *commonstate);
  134. extern void ExecAssignResultType(CommonState *commonstate,
  135.  TupleDesc tupDesc);
  136. extern void ExecAssignResultTypeFromOuterPlan(Plan *node,
  137.   CommonState *commonstate);
  138. extern void ExecAssignResultTypeFromTL(Plan *node, CommonState *commonstate);
  139. extern TupleDesc ExecGetResultType(CommonState *commonstate);
  140. extern void ExecAssignProjectionInfo(Plan *node, CommonState *commonstate);
  141. extern void ExecFreeProjectionInfo(CommonState *commonstate);
  142. extern void ExecFreeExprContext(CommonState *commonstate);
  143. extern void ExecFreeTypeInfo(CommonState *commonstate);
  144. extern TupleDesc ExecGetScanType(CommonScanState *csstate);
  145. extern void ExecAssignScanType(CommonScanState *csstate,
  146.    TupleDesc tupDesc);
  147. extern void ExecAssignScanTypeFromOuterPlan(Plan *node,
  148. CommonScanState *csstate);
  149. extern Form_pg_attribute ExecGetTypeInfo(Relation relDesc);
  150. extern void ExecOpenIndices(Oid resultRelationOid,
  151. RelationInfo *resultRelationInfo);
  152. extern void ExecCloseIndices(RelationInfo *resultRelationInfo);
  153. extern void ExecInsertIndexTuples(TupleTableSlot *slot, ItemPointer tupleid,
  154.   EState *estate, bool is_update);
  155. #endif  /* EXECUTOR_H */