我正在尝试将 3 个 user_defined 函数添加到 PostgreSQL-8.4.15。这里有3个功能:
(1)start_create_profile();
(2)make_profile();
(3)check_anomaly();
所有这些都写在位于 src/backend/tcop 的文件“test.c”中。我想从exec_simple_query()
. exec_simple_query()
是在 src/backend/tcop 中的“postgres.c”中编写的 PostgreSQL 函数。我想通过我的 GUI 直接调用 (2)。
这是我用“test.c”编写的代码:
#include "postgres.h"
#ifndef PROGPROFILE_H_
#define PROGPROFILE_H_
/* interfaces */
extern void start_create_profile(List *querytree_list);
extern void create_profile();
extern void check_anomaly(List *querytree_list);
#endif /* Test ProgProf */
void start_create_profile(List *querytree_list){
ListCell *l;
ListCell *tl;
FILE *f;
//if the file exist just open and write
//else create and write
f = fopen ("QueryParsed.txt", "a+");
Query *query_idr = (Query *)linitial(querytree_list);
// CMD_SELECT=0 CMD_INSERT=1 CMD_UPDATE=2
switch (query_idr->commandType)
{
case CMD_SELECT:
fputs("CMD_SELECT, ", f);
break;
case CMD_INSERT:
fputs("CMD_INSERT, ", f);
break;
case CMD_UPDATE:
fputs("CMD_UPDATE, ", f);
break;
default:
break;
}
//to have the ID of the table
foreach(l, query_idr->rtable){
Oid tab_idT = ((RangeTblEntry *) lfirst(l)) ->relid;
//char temp1[10];
char *tab_idTConverted = itoa(tab_idT);
/* This is not a table */
if (tab_idT == 0)
continue;
fputs(" tab_id: , ", f);
fputs(tab_idTConverted, f);
}
//to have the name of the targer list
foreach(tl, query_idr->targetList){
TargetEntry *tle = (TargetEntry *) lfirst(tl);
Oid tab_id = tle->resorigtbl;
int tab_idCast=(int)tab_id;
//char temp[10];
char *tab_idConverted = itoa(tab_idCast);
char *resname=tle->resname;
fputs("Name of column: ", f);
fputs(resname, f);
fputs(" ID: ", f);
fputs(tab_idConverted, f);
fputs("\n", f);
}
//close the file that we write
fputs("$", f);
fclose (f);
}
void create_profile(){
}
void check_anomaly(List *querytree_list){
}
现在我创建了一个非常简单的 GUI,包括 3 个按钮(通过 java 中的 netbeans)。Button1, button2, button3 按顺序对应start_create_profile()
, make_profile, check_anomaly()
.
我想使用一个全局变量(让我们考虑可以设置为 3 个不同值的“按钮”,如 0、1、2。我希望每当我按下按钮 1 或按钮 3 时,全局变量都设置为 1 或 2,以便使用我写过的exec_simple_query()
“if”。这里是“if”
//initially button=0;
//inside exec_simple_query
if(button==1) start_create_profile();
if(button==2) check_anomaly;
每当我按下 button2 时,必须直接调用 function(2)。知道如何设置该变量以使我能够使用我的 GUI 选择这 3 个功能之一吗?我如何必须通过我的 GUI 直接调用函数(2)?