PostgreSQL Source Code  git master
queryjumble.h File Reference
#include "nodes/parsenodes.h"
Include dependency graph for queryjumble.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  LocationLen
 
struct  JumbleState
 

Typedefs

typedef struct LocationLen LocationLen
 
typedef struct JumbleState JumbleState
 

Enumerations

enum  ComputeQueryIdType { COMPUTE_QUERY_ID_OFF , COMPUTE_QUERY_ID_ON , COMPUTE_QUERY_ID_AUTO , COMPUTE_QUERY_ID_REGRESS }
 

Functions

const char * CleanQuerytext (const char *query, int *location, int *len)
 
JumbleStateJumbleQuery (Query *query, const char *querytext)
 
void EnableQueryId (void)
 
static bool IsQueryIdEnabled (void)
 

Variables

PGDLLIMPORT int compute_query_id
 
PGDLLIMPORT bool query_id_enabled
 

Typedef Documentation

◆ JumbleState

typedef struct JumbleState JumbleState

◆ LocationLen

typedef struct LocationLen LocationLen

Enumeration Type Documentation

◆ ComputeQueryIdType

Enumerator
COMPUTE_QUERY_ID_OFF 
COMPUTE_QUERY_ID_ON 
COMPUTE_QUERY_ID_AUTO 
COMPUTE_QUERY_ID_REGRESS 

Definition at line 54 of file queryjumble.h.

55 {
60 };
@ COMPUTE_QUERY_ID_AUTO
Definition: queryjumble.h:58
@ COMPUTE_QUERY_ID_REGRESS
Definition: queryjumble.h:59
@ COMPUTE_QUERY_ID_ON
Definition: queryjumble.h:57
@ COMPUTE_QUERY_ID_OFF
Definition: queryjumble.h:56

Function Documentation

◆ CleanQuerytext()

const char* CleanQuerytext ( const char *  query,
int *  location,
int *  len 
)

Definition at line 61 of file queryjumblefuncs.c.

62 {
63  int query_location = *location;
64  int query_len = *len;
65 
66  /* First apply starting offset, unless it's -1 (unknown). */
67  if (query_location >= 0)
68  {
69  Assert(query_location <= strlen(query));
70  query += query_location;
71  /* Length of 0 (or -1) means "rest of string" */
72  if (query_len <= 0)
73  query_len = strlen(query);
74  else
75  Assert(query_len <= strlen(query));
76  }
77  else
78  {
79  /* If query location is unknown, distrust query_len as well */
80  query_location = 0;
81  query_len = strlen(query);
82  }
83 
84  /*
85  * Discard leading and trailing whitespace, too. Use scanner_isspace()
86  * not libc's isspace(), because we want to match the lexer's behavior.
87  */
88  while (query_len > 0 && scanner_isspace(query[0]))
89  query++, query_location++, query_len--;
90  while (query_len > 0 && scanner_isspace(query[query_len - 1]))
91  query_len--;
92 
93  *location = query_location;
94  *len = query_len;
95 
96  return query;
97 }
Assert(fmt[strlen(fmt) - 1] !='\n')
const void size_t len
bool scanner_isspace(char ch)
Definition: scansup.c:117

References Assert(), len, and scanner_isspace().

Referenced by pgss_store().

◆ EnableQueryId()

void EnableQueryId ( void  )

Definition at line 145 of file queryjumblefuncs.c.

146 {
148  query_id_enabled = true;
149 }
bool query_id_enabled
int compute_query_id

References compute_query_id, COMPUTE_QUERY_ID_OFF, and query_id_enabled.

Referenced by _PG_init().

◆ IsQueryIdEnabled()

static bool IsQueryIdEnabled ( void  )
inlinestatic

Definition at line 77 of file queryjumble.h.

78 {
80  return false;
82  return true;
83  return query_id_enabled;
84 }
PGDLLIMPORT bool query_id_enabled
PGDLLIMPORT int compute_query_id

References compute_query_id, COMPUTE_QUERY_ID_OFF, COMPUTE_QUERY_ID_ON, and query_id_enabled.

Referenced by ExplainQuery(), JumbleQuery(), parse_analyze_fixedparams(), parse_analyze_varparams(), and parse_analyze_withcb().

◆ JumbleQuery()

JumbleState* JumbleQuery ( Query query,
const char *  querytext 
)

Definition at line 100 of file queryjumblefuncs.c.

101 {
102  JumbleState *jstate = NULL;
103 
105 
106  jstate = (JumbleState *) palloc(sizeof(JumbleState));
107 
108  /* Set up workspace for query jumbling */
109  jstate->jumble = (unsigned char *) palloc(JUMBLE_SIZE);
110  jstate->jumble_len = 0;
111  jstate->clocations_buf_size = 32;
112  jstate->clocations = (LocationLen *)
113  palloc(jstate->clocations_buf_size * sizeof(LocationLen));
114  jstate->clocations_count = 0;
115  jstate->highest_extern_param_id = 0;
116 
117  /* Compute query ID and mark the Query node with it */
118  _jumbleNode(jstate, (Node *) query);
119  query->queryId = DatumGetUInt64(hash_any_extended(jstate->jumble,
120  jstate->jumble_len,
121  0));
122 
123  /*
124  * If we are unlucky enough to get a hash of zero, use 1 instead for
125  * normal statements and 2 for utility queries.
126  */
127  if (query->queryId == UINT64CONST(0))
128  {
129  if (query->utilityStmt)
130  query->queryId = UINT64CONST(2);
131  else
132  query->queryId = UINT64CONST(1);
133  }
134 
135  return jstate;
136 }
static Datum hash_any_extended(const unsigned char *k, int keylen, uint64 seed)
Definition: hashfn.h:37
void * palloc(Size size)
Definition: mcxt.c:1210
static uint64 DatumGetUInt64(Datum X)
Definition: postgres.h:419
static bool IsQueryIdEnabled(void)
Definition: queryjumble.h:77
static void _jumbleNode(JumbleState *jstate, Node *node)
#define JUMBLE_SIZE
unsigned char * jumble
Definition: queryjumble.h:35
int clocations_buf_size
Definition: queryjumble.h:44
Size jumble_len
Definition: queryjumble.h:38
int highest_extern_param_id
Definition: queryjumble.h:50
LocationLen * clocations
Definition: queryjumble.h:41
int clocations_count
Definition: queryjumble.h:47
Definition: nodes.h:129
Node * utilityStmt
Definition: parsenodes.h:143

References _jumbleNode(), Assert(), JumbleState::clocations, JumbleState::clocations_buf_size, JumbleState::clocations_count, DatumGetUInt64(), hash_any_extended(), JumbleState::highest_extern_param_id, IsQueryIdEnabled(), JumbleState::jumble, JumbleState::jumble_len, JUMBLE_SIZE, palloc(), and Query::utilityStmt.

Referenced by ExplainQuery(), parse_analyze_fixedparams(), parse_analyze_varparams(), and parse_analyze_withcb().

Variable Documentation

◆ compute_query_id

PGDLLIMPORT int compute_query_id
extern

Definition at line 43 of file queryjumblefuncs.c.

Referenced by EnableQueryId(), ExplainPrintPlan(), and IsQueryIdEnabled().

◆ query_id_enabled

PGDLLIMPORT bool query_id_enabled
extern

Definition at line 46 of file queryjumblefuncs.c.

Referenced by EnableQueryId(), and IsQueryIdEnabled().