postgres.c 36.5 KB
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * postgres.c--
4
 *	  POSTGRES C Backend Interface
5 6 7 8 9
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
10
 *	  $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.84 1998/08/25 15:00:17 thomas Exp $
11 12
 *
 * NOTES
13 14
 *	  this is the "main" module of the postgres backend and
 *	  hence the main module of the "traffic cop".
15 16 17
 *
 *-------------------------------------------------------------------------
 */
B
Bruce Momjian 已提交
18 19

#include <unistd.h>
20 21
#include <stdio.h>
#include <string.h>
22
#include <signal.h>
23
#include <time.h>
B
Bruce Momjian 已提交
24
#include <setjmp.h>
25
#include <sys/time.h>
B
Bruce Momjian 已提交
26 27
#include <sys/types.h>
#include <fcntl.h>
28
#include <sys/param.h>			/* for MAXHOSTNAMELEN on most */
29
#ifndef MAXHOSTNAMELEN
30
#include <netdb.h>				/* for MAXHOSTNAMELEN on some */
M
Fixes:  
Marc G. Fournier 已提交
31
#endif
32
#ifndef MAXHOSTNAMELEN			/* for MAXHOSTNAMELEN under sco3.2v5.0.2 */
33 34
#include <sys/socket.h>
#endif
35
#include <errno.h>
36
#if HAVE_SYS_SELECT_H
37
#include <sys/select.h>
38
#endif							/* aix */
39 40 41 42


#include "postgres.h"
#include "miscadmin.h"
43
#include "fmgr.h"
44

45 46
#include "access/xact.h"
#include "catalog/catname.h"
47
#include "commands/async.h"
48 49 50
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "libpq/libpq.h"
51
#include "libpq/libpq-be.h"
52 53 54 55
#include "libpq/pqsignal.h"
#include "nodes/pg_list.h"
#include "nodes/print.h"
#include "optimizer/cost.h"
56
#include "optimizer/planner.h"
57
#include "optimizer/prep.h"
58
#include "parser/parser.h"
59 60 61 62 63
#include "rewrite/rewriteHandler.h"		/* for QueryRewrite() */
#include "storage/bufmgr.h"
#include "tcop/dest.h"
#include "tcop/fastpath.h"
#include "tcop/pquery.h"
64
#include "tcop/tcopdebug.h"
65 66 67 68
#include "tcop/tcopprot.h"		/* where declarations for this file go */
#include "tcop/utility.h"
#include "utils/mcxt.h"
#include "utils/rel.h"
69

70
#if FALSE
71
#include "nodes/relation.h"
72
#endif
73 74 75 76

#if 0
#include "optimizer/xfunc.h"
#endif
77

78
#if FALSE
79
#include "nodes/plannodes.h"
80
#endif
81

82
#if FALSE
83
#include "nodes/memnodes.h"
84
#endif
85

86
#ifdef MULTIBYTE
M
 
Marc G. Fournier 已提交
87
#include "mb/pg_wchar.h"
88 89
#endif

90
/* ----------------
91
 *		global variables
92 93
 * ----------------
 */
94 95 96 97
static bool DebugPrintQuery = false;
static bool DebugPrintPlan = false;
static bool DebugPrintParse = false;
static bool DebugPrintRewrittenParsetree = false;
98 99

/*static bool	EnableRewrite = true; , never changes why have it*/
100
CommandDest whereToSendOutput;
101
const char **ps_status;	/* this is our 'ps' status, argv[3] */
102

103
#ifdef LOCK_MGR_DEBUG
104
extern int	lockDebug;
105

106
#endif
107 108
extern int	lockingOff;
extern int	NBuffers;
109

110 111 112
int			dontExecute = 0;
static int	ShowStats;
static bool IsEmptyQuery = false;
113

114
char		relname[80];		/* current relation name */
115

116
#if defined(nextstep)
117
jmp_buf		Warn_restart;
118 119

#define sigsetjmp(x,y)	setjmp(x)
120 121
#define siglongjmp longjmp
#else
122
sigjmp_buf	Warn_restart;
123 124

#endif							/* defined(nextstep) */
125
bool			InError;
126

127
extern int	NBuffers;
128

129 130 131 132 133 134 135
static int	EchoQuery = 0;		/* default don't echo */
time_t		tim;
char		pg_pathname[256];
static int	ShowParserStats;
static int	ShowPlannerStats;
int			ShowExecutorStats;
FILE	   *StatFp;
136

137
/* ----------------
138 139
 *		people who want to use EOF should #define DONTUSENEWLINE in
 *		tcop/tcopdebug.h
140 141 142
 * ----------------
 */
#ifndef TCOP_DONTUSENEWLINE
143
int			UseNewLine = 1;		/* Use newlines query delimiters (the
144 145
								 * default) */

146
#else
147
int			UseNewLine = 0;		/* Use EOF as query delimiters */
148 149

#endif							/* TCOP_DONTUSENEWLINE */
150 151

/* ----------------
152 153
 *		bushy tree plan flag: if true planner will generate bushy-tree
 *		plans
154 155
 * ----------------
 */
156 157
int			BushyPlanFlag = 0;	/* default to false -- consider only
								 * left-deep trees */
158 159 160 161

/*
** Flags for expensive function optimization -- JMH 3/9/92
*/
162
int			XfuncMode = 0;
163 164 165

/*
 * ----------------
166 167 168 169 170 171 172
 *	 Note: _exec_repeat_ defaults to 1 but may be changed
 *		   by a DEBUG command.	 If you set this to a large
 *		   number N, run a single query, and then set it
 *		   back to 1 and run N queries, you can get an idea
 *		   of how much time is being spent in the parser and
 *		   planner b/c in the first case this overhead only
 *		   happens once.  -cim 6/9/91
173 174
 * ----------------
*/
175
int			_exec_repeat_ = 1;
176 177

/* ----------------------------------------------------------------
178
 *		decls for routines only used in this file
179 180
 * ----------------------------------------------------------------
 */
181
static char InteractiveBackend(char *inBuf);
182 183
static char SocketBackend(char *inBuf);
static char ReadCommand(char *inBuf);
184 185 186


/* ----------------------------------------------------------------
187
 *		routines to obtain user input
188 189 190 191
 * ----------------------------------------------------------------
 */

/* ----------------
192 193
 *	InteractiveBackend() is called for user interactive connections
 *	the string entered by the user is placed in its parameter inBuf.
194 195 196 197 198 199
 * ----------------
 */

static char
InteractiveBackend(char *inBuf)
{
200 201 202 203
	char	   *stuff = inBuf;	/* current place in input buffer */
	int			c;				/* character read from getc() */
	bool		end = false;	/* end-of-input flag */
	bool		backslashSeen = false;	/* have we seen a \ ? */
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265

	/* ----------------
	 *	display a prompt and obtain input from the user
	 * ----------------
	 */
	printf("> ");

	for (;;)
	{
		if (UseNewLine)
		{
			/* ----------------
			 *	if we are using \n as a delimiter, then read
			 *	characters until the \n.
			 * ----------------
			 */
			while ((c = getc(stdin)) != EOF)
			{
				if (c == '\n')
				{
					if (backslashSeen)
					{
						stuff--;
						continue;
					}
					else
					{
						/* keep the newline character */
						*stuff++ = '\n';
						*stuff++ = '\0';
						break;
					}
				}
				else if (c == '\\')
					backslashSeen = true;
				else
					backslashSeen = false;

				*stuff++ = (char) c;
			}

			if (c == EOF)
				end = true;
		}
		else
		{
			/* ----------------
			 *	otherwise read characters until EOF.
			 * ----------------
			 */
			while ((c = getc(stdin)) != EOF)
				*stuff++ = (char) c;

			if (stuff == inBuf)
				end = true;
		}

		if (end)
		{
			if (!Quiet)
				puts("EOF");
			IsEmptyQuery = true;
266
			proc_exit(0);
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
		}

		/* ----------------
		 *	otherwise we have a user query so process it.
		 * ----------------
		 */
		break;
	}

	/* ----------------
	 *	if the query echo flag was given, print the query..
	 * ----------------
	 */
	if (EchoQuery)
		printf("query is: %s\n", inBuf);

	return ('Q');
284 285 286
}

/* ----------------
287
 *	SocketBackend()		Is called for frontend-backend connections
288
 *
289 290
 *	If the input is a query (case 'Q') then the string entered by
 *	the user is placed in its parameter inBuf.
291
 *
292 293 294
 *	If the input is a fastpath function call (case 'F') then
 *	the function call is processed in HandleFunctionRequest().
 *	(now called from PostgresMain())
295 296 297 298
 * ----------------
 */

static char
299
SocketBackend(char *inBuf)
300
{
301 302
	char		qtype[2];
	char		result = '\0';
303 304 305 306 307 308 309 310 311 312 313 314

	/* ----------------
	 *	get input from the frontend
	 * ----------------
	 */
	strcpy(qtype, "?");
	if (pq_getnchar(qtype, 0, 1) == EOF)
	{
		/* ------------
		 *	when front-end applications quits/dies
		 * ------------
		 */
315
		proc_exit(0);
316 317 318 319
	}

	switch (*qtype)
	{
320 321 322 323 324 325 326 327
			/* ----------------
			 *	'Q': user entered a query
			 * ----------------
			 */
		case 'Q':
			pq_getstr(inBuf, MAX_PARSE_BUFFER);
			result = 'Q';
			break;
328

329 330 331 332 333 334
			/* ----------------
			 *	'F':  calling user/system functions
			 * ----------------
			 */
		case 'F':
			pq_getstr(inBuf, MAX_PARSE_BUFFER); /* ignore the rest of the
335
												 * line */
336 337
			result = 'F';
			break;
338

339 340 341 342 343 344 345
			/* ----------------
			 *	'X':  frontend is exiting
			 * ----------------
			 */
		case 'X':
			result = 'X';
			break;
346

347 348 349 350 351 352 353 354 355 356
			/* ----------------
			 *	otherwise we got garbage from the frontend.
			 *
			 *	XXX are we certain that we want to do an elog(FATAL) here?
			 *		-cim 1/24/90
			 * ----------------
			 */
		default:
			elog(FATAL, "Socket command type %c unknown\n", *qtype);
			break;
357 358
	}
	return result;
359 360 361
}

/* ----------------
362 363 364 365
 *		ReadCommand reads a command from either the frontend or
 *		standard input, places it in inBuf, and returns a char
 *		representing whether the string is a 'Q'uery or a 'F'astpath
 *		call.
366 367 368
 * ----------------
 */
static char
369
ReadCommand(char *inBuf)
370
{
371 372
	if (IsUnderPostmaster)
		return SocketBackend(inBuf);
373 374
	else
		return InteractiveBackend(inBuf);
375 376
}

377 378 379 380 381 382
List *
pg_parse_and_plan(char *query_string,	/* string to execute */
				  Oid *typev,	/* argument types */
				  int nargs,	/* number of arguments */
				  QueryTreeList **queryListP,	/* pointer to the parse
												 * trees */
383 384
				  CommandDest dest,		/* where results should go */
				  bool aclOverride)
385
{
386 387 388 389 390 391 392 393
	QueryTreeList *querytree_list;
	int			i;
	List	   *plan_list = NIL;
	Plan	   *plan;
	int			j;
	QueryTreeList *new_list;
	List	   *rewritten = NIL;
	Query	   *querytree;
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423

	/* ----------------
	 *	(1) parse the request string into a list of parse trees
	 * ----------------
	 */
	if (ShowParserStats)
		ResetUsage();

	querytree_list = parser(query_string, typev, nargs);

	if (ShowParserStats)
	{
		fprintf(stderr, "! Parser Stats:\n");
		ShowUsage();
	}

	/* new_list holds the rewritten queries */
	new_list = (QueryTreeList *) malloc(sizeof(QueryTreeList));
	new_list->len = querytree_list->len;
	new_list->qtrees = (Query **) malloc(new_list->len * sizeof(Query *));

	/* ----------------
	 *	(2) rewrite the queries, as necessary
	 * ----------------
	 */
	j = 0;						/* counter for the new_list, new_list can
								 * be longer than old list as a result of
								 * rewrites */
	for (i = 0; i < querytree_list->len; i++)
	{
424 425 426 427
		List	   *union_result,
				   *union_list,
				   *rewritten_list;

428 429
		querytree = querytree_list->qtrees[i];

430 431 432 433 434 435
		if (DebugPrintQuery == true)
		{
			printf("\n---- \tquery is:\n%s\n", query_string);
			printf("\n");
			fflush(stdout);
		}
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452

		/* don't rewrite utilites */
		if (querytree->commandType == CMD_UTILITY)
		{
			new_list->qtrees[j++] = querytree;
			continue;
		}

		if (DebugPrintParse == true)
		{
			printf("\n---- \tparser outputs :\n");
			nodeDisplay(querytree);
			printf("\n");
		}

		/* rewrite queries (retrieve, append, delete, replace) */
		rewritten = QueryRewrite(querytree);
B
Bruce Momjian 已提交
453

454
		if (rewritten != NIL)
455
		{
456 457
			int			len,
						k;
458

459 460 461 462 463 464 465 466 467 468 469 470 471
			/*
			 * Rewrite the UNIONS.
			 */
			foreach(rewritten_list, rewritten)
			{
				Query	   *qry = (Query *) lfirst(rewritten_list);

				union_result = NIL;
				foreach(union_list, qry->unionClause)
					union_result = nconc(union_result, QueryRewrite((Query *) lfirst(union_list)));
				qry->unionClause = union_result;
			}

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
			len = length(rewritten);
			if (len == 1)
				new_list->qtrees[j++] = (Query *) lfirst(rewritten);
			else
			{
				/* rewritten queries are longer than original query */
				/* grow the new_list to accommodate */
				new_list->len += len - 1;		/* - 1 because originally
												 * we allocated one space
												 * for the query */
				new_list->qtrees = realloc(new_list->qtrees,
										new_list->len * sizeof(Query *));
				for (k = 0; k < len; k++)
					new_list->qtrees[j++] = (Query *) nth(k, rewritten);
			}
		}
	}

490 491 492 493 494 495 496 497
	/* ----------
	 * Due to rewriting, the new list could also have been
	 * shrunk (do instead nothing). Forget obsolete queries
	 * at the end.
	 * ----------
	 */
	new_list->len = j;

498 499 500 501 502 503
	/* we're done with the original lists, free it */
	free(querytree_list->qtrees);
	free(querytree_list);

	querytree_list = new_list;

504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
	/*
	 * Override ACL checking if requested
	 */
	if (aclOverride) {
		for (i = 0; i < querytree_list->len; i++) {
			RangeTblEntry	*rte;
			List		*l;

			querytree = querytree_list->qtrees[i];
			if (querytree->commandType == CMD_UTILITY)
				continue;

			foreach (l, querytree->rtable) {
				rte = (RangeTblEntry *)lfirst(l);

				rte->skipAcl = TRUE;
			}
		}
	}

524 525 526 527 528 529
	if (DebugPrintRewrittenParsetree == true)
	{
		printf("\n---- \tafter rewriting:\n");

		for (i = 0; i < querytree_list->len; i++)
		{
530
			nodeDisplay(querytree_list->qtrees[i]);
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
			printf("\n");
		}
	}

	for (i = 0; i < querytree_list->len; i++)
	{
		querytree = querytree_list->qtrees[i];

		/*
		 * For each query that isn't a utility invocation, generate a
		 * plan.
		 */

		if (querytree->commandType != CMD_UTILITY)
		{

			if (IsAbortedTransactionBlockState())
			{
				/* ----------------
				 *	 the EndCommand() stuff is to tell the frontend
				 *	 that the command ended. -cim 6/1/90
				 * ----------------
				 */
554
				char	   *tag = "*ABORT STATE*";
555 556 557 558 559 560

				EndCommand(tag, dest);

				elog(NOTICE, "(transaction aborted): %s",
					 "queries ignored until END");

561 562 563 564
				free(querytree_list->qtrees);
				free(querytree_list);
				if (queryListP)
					*queryListP = (QueryTreeList *) NULL;
565 566 567 568 569
				return (List *) NULL;
			}

			if (ShowPlannerStats)
				ResetUsage();
570 571

			/* call that optimizer */
572
			plan = planner(querytree);
573

574 575 576 577 578 579
			if (ShowPlannerStats)
			{
				fprintf(stderr, "! Planner Stats:\n");
				ShowUsage();
			}
			plan_list = lappend(plan_list, plan);
M
Fixes:  
Marc G. Fournier 已提交
580
#ifdef INDEXSCAN_PATCH
581 582 583 584 585 586 587 588 589 590 591 592
			/* ----------------
			 *	Print plan if debugging.
			 *	This has been moved here to get debugging output
			 *	also for queries in functions.	DZ - 27-8-1996
			 * ----------------
			 */
			if (DebugPrintPlan == true)
			{
				printf("\n---- \tplan is :\n");
				nodeDisplay(plan);
				printf("\n");
			}
M
Fixes:  
Marc G. Fournier 已提交
593
#endif
594
		}
595
#ifdef FUNC_UTIL_PATCH
596 597 598 599 600 601 602 603

		/*
		 * If the command is an utility append a null plan. This is needed
		 * to keep the plan_list aligned with the querytree_list or the
		 * function executor will crash.  DZ - 30-8-1996
		 */
		else
			plan_list = lappend(plan_list, NULL);
604
#endif
605 606
	}

607 608 609 610 611 612 613 614 615 616
	/* ----------
	 * Check if the rewriting had thrown away anything
	 * ----------
	 */
	if (querytree_list->len == 0) {
		free(querytree_list->qtrees);
		free(querytree_list);
		querytree_list = NULL;
	}

617 618 619 620
	if (queryListP)
		*queryListP = querytree_list;

	return (plan_list);
621 622 623
}

/* ----------------------------------------------------------------
624
 *		pg_exec_query()
625 626 627 628 629 630
 *
 *		Takes a querystring, runs the parser/utilities or
 *		parser/planner/executor over it as necessary
 *		Begin Transaction Should have been called before this
 *		and CommitTransaction After this is called
 *		This is strictly because we do not allow for nested xactions.
631
 *
632 633 634 635
 *		NON-OBVIOUS-RESTRICTIONS
 *		this function _MUST_ allocate a new "parsetree" each time,
 *		since it may be stored in a named portal and should not
 *		change its value.
636 637 638 639 640
 *
 * ----------------------------------------------------------------
 */

void
641
pg_exec_query(char *query_string)
642
{
643 644 645 646 647 648 649
	pg_exec_query_dest(query_string, whereToSendOutput, FALSE);
}

void
pg_exec_query_acl_override(char *query_string)
{
	pg_exec_query_dest(query_string, whereToSendOutput, TRUE);
650 651 652
}

void
653
pg_exec_query_dest(char *query_string,	/* string to execute */
654 655 656 657 658
				   CommandDest dest,	/* where results should go */
				   bool aclOverride)	/* to give utility
				   			 * commands power of
							 * superusers
							 */
659
{
660 661 662 663 664 665
	List	   *plan_list;
	Plan	   *plan;
	Query	   *querytree;
	int			i,
				j;
	QueryTreeList *querytree_list;
666 667

	/* plan the queries */
668
	plan_list = pg_parse_and_plan(query_string, NULL, 0, &querytree_list, dest, aclOverride);
669

670 671 672
	if (QueryCancel)
		CancelQuery();
		
673
	/* pg_parse_and_plan could have failed */
674 675 676 677 678 679 680
	if (querytree_list == NULL)
		return;

	for (i = 0; i < querytree_list->len; i++)
	{
		querytree = querytree_list->qtrees[i];

681
#ifdef FUNC_UTIL_PATCH
682 683 684 685 686 687 688

		/*
		 * Advance on the plan_list in every case.	Now the plan_list has
		 * the same length of the querytree_list.  DZ - 30-8-1996
		 */
		plan = (Plan *) lfirst(plan_list);
		plan_list = lnext(plan_list);
689
#endif
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
		if (querytree->commandType == CMD_UTILITY)
		{
			/* ----------------
			 *	 process utility functions (create, destroy, etc..)
			 *
			 *	 Note: we do not check for the transaction aborted state
			 *	 because that is done in ProcessUtility.
			 * ----------------
			 */
			if (!Quiet)
			{
				time(&tim);
				printf("\tProcessUtility() at %s\n", ctime(&tim));
			}

			ProcessUtility(querytree->utilityStmt, dest);

		}
		else
		{
710
#ifndef FUNC_UTIL_PATCH
711 712 713 714 715 716

			/*
			 * Moved before the if.  DZ - 30-8-1996
			 */
			plan = (Plan *) lfirst(plan_list);
			plan_list = lnext(plan_list);
717
#endif
718

M
Fixes:  
Marc G. Fournier 已提交
719
#ifdef INDEXSCAN_PATCH
720 721

			/*
722
			 * Print moved in pg_parse_and_plan.	DZ - 27-8-1996
723
			 */
M
Fixes:  
Marc G. Fournier 已提交
724
#else
725 726 727 728 729 730 731 732 733 734
			/* ----------------
			 *	print plan if debugging
			 * ----------------
			 */
			if (DebugPrintPlan == true)
			{
				printf("\n---- plan is :\n");
				nodeDisplay(plan);
				printf("\n");
			}
M
Fixes:  
Marc G. Fournier 已提交
735
#endif
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750

			/* ----------------
			 *	 execute the plan
			 *
			 */
			if (ShowExecutorStats)
				ResetUsage();

			for (j = 0; j < _exec_repeat_; j++)
			{
				if (!Quiet)
				{
					time(&tim);
					printf("\tProcessQuery() at %s\n", ctime(&tim));
				}
751
				ProcessQuery(querytree, plan, dest);
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
			}

			if (ShowExecutorStats)
			{
				fprintf(stderr, "! Executor Stats:\n");
				ShowUsage();
			}
		}

		/*
		 * In a query block, we want to increment the command counter
		 * between queries so that the effects of early queries are
		 * visible to subsequent ones.
		 */

		if (querytree_list)
			CommandCounterIncrement();
	}

	free(querytree_list->qtrees);
	free(querytree_list);
773 774 775
}

/* --------------------------------
776
 *		signal handler routines used in PostgresMain()
777
 *
M
 
Marc G. Fournier 已提交
778
 *		handle_warn() is used to catch kill(getpid(), SIGHUP) which
779
 *		occurs when elog(ERROR) is called.
780
 *
781 782 783
 *		quickdie() occurs when signalled by the postmaster.
 *		Some backend has bought the farm,
 *		so we need to stop what we're doing and exit.
784
 *
785
 *		die() preforms an orderly cleanup via ExitPostgres()
786 787 788 789
 * --------------------------------
 */

void
790
handle_warn(SIGNAL_ARGS)
791
{
792
	siglongjmp(Warn_restart, 1);
793 794
}

795
void
796
quickdie(SIGNAL_ARGS)
797
{
798
	elog(NOTICE, "Message from PostgreSQL backend:"
799 800 801 802 803
		 "\n\tThe Postmaster has informed me that some other backend"
		 " died abnormally and possibly corrupted shared memory."
		 "\n\tI have rolled back the current transaction and am"
		 " going to terminate your database system connection and exit."
	"\n\tPlease reconnect to the database system and repeat your query.");
804

805 806 807 808 809 810 811 812

	/*
	 * DO NOT ExitPostgres(0) -- we're here because shared memory may be
	 * corrupted, so we don't want to flush any shared state to stable
	 * storage.  Just nail the windows shut and get out of town.
	 */

	exit(0);
813 814 815
}

void
816
die(SIGNAL_ARGS)
817
{
818
	ExitPostgres(0);
819 820 821
}

/* signal handler for floating point exception */
822
void
823
FloatExceptionHandler(SIGNAL_ARGS)
824
{
825
	elog(ERROR, "floating point exception!"
826 827
		 " The last floating point operation either exceeded legal ranges"
		 " or was a divide by zero");
828 829 830
}


M
 
Marc G. Fournier 已提交
831
/* signal handler for query cancel signal from postmaster */
832 833 834 835 836 837 838 839 840
static void
QueryCancelHandler(SIGNAL_ARGS)
{
	QueryCancel = true;
}

void
CancelQuery(void)
{
M
 
Marc G. Fournier 已提交
841 842 843
	/* QueryCancel flag will be reset in main loop, which we reach by
	 * longjmp from elog().
	 */
844 845 846 847
	elog(ERROR, "Query was cancelled.");
}


848 849
static void
usage(char *progname)
850
{
851
	fprintf(stderr,
852 853 854 855 856 857
			"Usage: %s [options] [dbname]\n", progname);
	fprintf(stderr, "\t-B buffers\tset number of buffers in buffer pool\n");
	fprintf(stderr, "\t-C \t\tsupress version info\n");
	fprintf(stderr, "\t-D dir\t\tdata directory\n");
	fprintf(stderr, "\t-E \t\techo query before execution\n");
	fprintf(stderr, "\t-F \t\tturn off fsync\n");
858
#ifdef LOCK_MGR_DEBUG
859
	fprintf(stderr, "\t-K \t\tset locking debug level [0|1|2]\n");
860
#endif
861 862 863 864 865 866 867 868
	fprintf(stderr, "\t-P port\t\tset port file descriptor\n");
	fprintf(stderr, "\t-Q \t\tsuppress informational messages\n");
	fprintf(stderr, "\t-S buffers\tset amount of sort memory available\n");
	fprintf(stderr, "\t-d [1|2|3]\tset debug level\n");
	fprintf(stderr, "\t-e \t\tturn on European date format\n");
	fprintf(stderr, "\t-o file\t\tsend stdout and stderr to given filename \n");
	fprintf(stderr, "\t-s \t\tshow stats after each query\n");
	fprintf(stderr, "\t-v version\tset protocol version being used by frontend\n");
869 870 871
}

/* ----------------------------------------------------------------
872 873 874
 *		PostgresMain
 *		  postgres main loop
 *		all backends, interactive or otherwise start here
875 876 877
 * ----------------------------------------------------------------
 */
int
878
PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
879
{
880 881 882 883 884
	bool			flagC = false,
					flagQ = false,
					flagE = false,
					flagEu = false;
	int				flag;
885 886 887 888 889 890 891 892

	char	   *DBName = NULL;
	int			errs = 0;

	char		firstchar;
	char		parser_input[MAX_PARSE_BUFFER];
	char	   *userName;

893
	char	   *DBDate = NULL;
894 895 896
	extern int	optind;
	extern char *optarg;
	extern short DebugLvl;
897 898 899 900 901

	/* ----------------
	 *	parse command line arguments
	 * ----------------
	 */
902 903 904 905

	/*
	 * Set default values.
	 */
906
	ShowStats = 0;
907
	ShowParserStats = ShowPlannerStats = ShowExecutorStats = 0;
908
#ifdef LOCK_MGR_DEBUG
909
	lockDebug = 0;
910 911
#endif

912
	/*
913 914
	 * get hostname is either the environment variable PGHOST or NULL NULL
	 * means Unix-socket only
915
	 */
916
	DataDir = getenv("PGDATA");
917

918
	/*
919 920 921
	 * Try to get initial values for date styles and formats. Does not do
	 * a complete job, but should be good enough for backend. Cannot call
	 * parse_date() since palloc/pfree memory is not set up yet.
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
	 */
	DBDate = getenv("PGDATESTYLE");
	if (DBDate != NULL)
	{
		if (strcasecmp(DBDate, "ISO") == 0)
			DateStyle = USE_ISO_DATES;
		else if (strcasecmp(DBDate, "SQL") == 0)
			DateStyle = USE_SQL_DATES;
		else if (strcasecmp(DBDate, "POSTGRES") == 0)
			DateStyle = USE_POSTGRES_DATES;
		else if (strcasecmp(DBDate, "GERMAN") == 0)
		{
			DateStyle = USE_GERMAN_DATES;
			EuroDates = TRUE;
		}
937

938 939 940 941 942
		if (strcasecmp(DBDate, "NONEURO") == 0)
			EuroDates = FALSE;
		else if (strcasecmp(DBDate, "EURO") == 0)
			EuroDates = TRUE;
	}
943

944 945
    optind = 1; /* reset after postmaster usage */
	
946
	while ((flag = getopt(argc, argv, "B:bCD:d:Eef:iK:Lm:MNo:P:pQS:st:v:x:F"))
947 948 949 950
		   != EOF)
		switch (flag)
		{

951 952 953 954 955 956 957 958 959 960 961 962 963 964
			case 'b':
				/* ----------------
				 *	set BushyPlanFlag to true.
				 * ----------------
				 */
				BushyPlanFlag = 1;
				break;
			case 'B':
				/* ----------------
				 *	specify the size of buffer pool
				 * ----------------
				 */
				NBuffers = atoi(optarg);
				break;
965

966 967 968 969 970
			case 'C':
				/* ----------------
				 *	don't print version string (don't know why this is 'C' --mao)
				 * ----------------
				 */
971
				flagC = true;
972
				break;
973

974 975
			case 'D':			/* PGDATA directory */
				DataDir = optarg;
976

977
			case 'd':			/* debug level */
978
				flagQ = false;
979 980 981 982 983 984 985 986 987
				DebugLvl = (short) atoi(optarg);
				if (DebugLvl > 1)
					DebugPrintQuery = true;
				if (DebugLvl > 2)
				{
					DebugPrintParse = true;
					DebugPrintPlan = true;
					DebugPrintRewrittenParsetree = true;
				}
988
				break;
989 990 991 992 993 994

			case 'E':
				/* ----------------
				 *	E - echo the query the user entered
				 * ----------------
				 */
995
				flagE = true;
996
				break;
997 998 999 1000 1001 1002

			case 'e':
				/* --------------------------
				 * Use european date formats.
				 * --------------------------
				 */
1003
				flagEu = true;
1004
				break;
1005 1006 1007 1008 1009 1010 1011

			case 'F':
				/* --------------------
				 *	turn off fsync
				 * --------------------
				 */
				fsyncOff = 1;
1012
				break;
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030

			case 'f':
				/* -----------------
				 *	  f - forbid generation of certain plans
				 * -----------------
				 */
				switch (optarg[0])
				{
					case 's':	/* seqscan */
						_enable_seqscan_ = false;
						break;
					case 'i':	/* indexscan */
						_enable_indexscan_ = false;
						break;
					case 'n':	/* nestloop */
						_enable_nestloop_ = false;
						break;
					case 'm':	/* mergejoin */
1031
						_enable_mergejoin_ = false;
1032 1033 1034 1035 1036 1037 1038
						break;
					case 'h':	/* hashjoin */
						_enable_hashjoin_ = false;
						break;
					default:
						errs++;
				}
1039 1040
				break;

1041 1042 1043
			case 'i':
				dontExecute = 1;
				break;
1044

1045
			case 'K':
1046
#ifdef LOCK_MGR_DEBUG
1047
				lockDebug = atoi(optarg);
1048
#else
1049
				fprintf(stderr, "Lock debug not compiled in\n");
1050
#endif
1051
				break;
1052

1053 1054 1055 1056 1057 1058 1059
			case 'L':
				/* --------------------
				 *	turn off locking
				 * --------------------
				 */
				lockingOff = 1;
				break;
1060

1061
			case 'm':
1062
				/* Multiplexed backends are no longer supported. */
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
				break;
			case 'M':
				exit(PostmasterMain(argc, argv));
				break;
			case 'N':
				/* ----------------
				 *	N - Don't use newline as a query delimiter
				 * ----------------
				 */
				UseNewLine = 0;
				break;
1074

1075 1076 1077 1078 1079
			case 'o':
				/* ----------------
				 *	o - send output (stdout and stderr) to the given file
				 * ----------------
				 */
1080
				StrNCpy(OutputFileName, optarg, MAXPGPATH);
1081
				break;
1082

1083 1084 1085 1086 1087 1088 1089 1090
			case 'p':			/* started by postmaster */
				/* ----------------
				 *	p - special flag passed if backend was forked
				 *		by a postmaster.
				 * ----------------
				 */
				IsUnderPostmaster = true;
				break;
1091

1092 1093 1094 1095 1096 1097 1098 1099 1100
			case 'P':
				/* ----------------
				 *	P - Use the passed file descriptor number as the port
				 *	  on which to communicate with the user.  This is ONLY
				 *	  useful for debugging when fired up by the postmaster.
				 * ----------------
				 */
				Portfd = atoi(optarg);
				break;
1101

1102 1103 1104 1105 1106
			case 'Q':
				/* ----------------
				 *	Q - set Quiet mode (reduce debugging output)
				 * ----------------
				 */
1107
				flagQ = true;
1108
				break;
1109

1110 1111
			case 'S':
				/* ----------------
V
Vadim B. Mikheev 已提交
1112
				 *	S - amount of sort memory to use in 1k bytes
1113 1114
				 * ----------------
				 */
1115
				{
1116 1117
					int			S;

V
Vadim B. Mikheev 已提交
1118
					S = atoi(optarg);
1119
					if (S >= 4 * BLCKSZ / 1024)
V
Vadim B. Mikheev 已提交
1120
						SortMem = S;
1121
				}
1122
				break;
1123 1124 1125 1126 1127 1128 1129 1130

			case 's':
				/* ----------------
				 *	  s - report usage statistics (timings) after each query
				 * ----------------
				 */
				ShowStats = 1;
				StatFp = stderr;
1131
				break;
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161

			case 't':
				/* ----------------
				 *	tell postgres to report usage statistics (timings) for
				 *	each query
				 *
				 *	-tpa[rser] = print stats for parser time of each query
				 *	-tpl[anner] = print stats for planner time of each query
				 *	-te[xecutor] = print stats for executor time of each query
				 *	caution: -s can not be used together with -t.
				 * ----------------
				 */
				StatFp = stderr;
				switch (optarg[0])
				{
					case 'p':
						if (optarg[1] == 'a')
							ShowParserStats = 1;
						else if (optarg[1] == 'l')
							ShowPlannerStats = 1;
						else
							errs++;
						break;
					case 'e':
						ShowExecutorStats = 1;
						break;
					default:
						errs++;
						break;
				}
1162 1163
				break;

1164
			case 'v':
1165
				FrontendProtocol = (ProtocolVersion) atoi(optarg);
1166 1167
				break;

1168
			case 'x':
1169
#if 0							/* planner/xfunc.h */
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197

				/*
				 * control joey hellerstein's expensive function
				 * optimization
				 */
				if (XfuncMode != 0)
				{
					fprintf(stderr, "only one -x flag is allowed\n");
					errs++;
					break;
				}
				if (strcmp(optarg, "off") == 0)
					XfuncMode = XFUNC_OFF;
				else if (strcmp(optarg, "nor") == 0)
					XfuncMode = XFUNC_NOR;
				else if (strcmp(optarg, "nopull") == 0)
					XfuncMode = XFUNC_NOPULL;
				else if (strcmp(optarg, "nopm") == 0)
					XfuncMode = XFUNC_NOPM;
				else if (strcmp(optarg, "pullall") == 0)
					XfuncMode = XFUNC_PULLALL;
				else if (strcmp(optarg, "wait") == 0)
					XfuncMode = XFUNC_WAIT;
				else
				{
					fprintf(stderr, "use -x {off,nor,nopull,nopm,pullall,wait}\n");
					errs++;
				}
1198
#endif
1199
				break;
1200

1201 1202 1203 1204 1205 1206
			default:
				/* ----------------
				 *	default: bad command line option
				 * ----------------
				 */
				errs++;
1207 1208 1209 1210 1211 1212 1213 1214 1215
		}

	/* ----------------
	 *	get user name and pathname and check command line validity
	 * ----------------
	 */
	SetPgUserName();
	userName = GetPgUserName();

1216
#ifdef CYR_RECODE
1217
	SetCharSet();
1218 1219
#endif

1220
	if (FindExec(pg_pathname, argv[0], "postgres") < 0)
1221 1222 1223 1224 1225 1226
		elog(FATAL, "%s: could not locate executable, bailing out...",
			 argv[0]);

	if (errs || argc - optind > 1)
	{
		usage(argv[0]);
1227
		proc_exit(1);
1228 1229 1230 1231 1232 1233 1234
	}
	else if (argc - optind == 1)
		DBName = argv[optind];
	else if ((DBName = userName) == NULL)
	{
		fprintf(stderr, "%s: USER undefined and no database specified\n",
				argv[0]);
1235
		proc_exit(1);
1236 1237 1238 1239 1240 1241
	}

	if (ShowStats &&
		(ShowParserStats || ShowPlannerStats || ShowExecutorStats))
	{
		fprintf(stderr, "-s can not be used together with -t.\n");
1242
		proc_exit(1);
1243 1244 1245 1246 1247 1248 1249 1250 1251
	}

	if (!DataDir)
	{
		fprintf(stderr, "%s does not know where to find the database system "
				"data.  You must specify the directory that contains the "
				"database system either by specifying the -D invocation "
			 "option or by setting the PGDATA environment variable.\n\n",
				argv[0]);
1252
		proc_exit(1);
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
	}

	Noversion = flagC;
	Quiet = flagQ;
	EchoQuery = flagE;
	EuroDates = flagEu;

	/* ----------------
	 *	print flags
	 * ----------------
	 */
	if (!Quiet)
	{
		puts("\t---debug info---");
		printf("\tQuiet =        %c\n", Quiet ? 't' : 'f');
		printf("\tNoversion =    %c\n", Noversion ? 't' : 'f');
		printf("\ttimings   =    %c\n", ShowStats ? 't' : 'f');
		printf("\tdates     =    %s\n", EuroDates ? "European" : "Normal");
		printf("\tbufsize   =    %d\n", NBuffers);
		printf("\tsortmem   =    %d\n", SortMem);

		printf("\tquery echo =   %c\n", EchoQuery ? 't' : 'f');
		printf("\tDatabaseName = [%s]\n", DBName);
		puts("\t----------------\n");
	}

1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
	/* ----------------
	 *	set process params for ps
	 * ----------------
	 */
	if (IsUnderPostmaster)
	{
		int i;

		Assert(real_argc >= 4);
		real_argv[1] = userName;
		real_argv[2] = DBName;
		ps_status = (const char **)&real_argv[3];
		*ps_status = "idle";
		for (i = 4; i < real_argc; i++)
			real_argv[i] = "";  /* blank them */
	}
	/* we just put a dummy here so we don't have to test everywhere */
	else	ps_status = malloc(sizeof(char *));

1298 1299 1300 1301
	/* ----------------
	 *	initialize portal file descriptors
	 * ----------------
	 */
1302
	if (IsUnderPostmaster)
1303 1304 1305 1306 1307 1308 1309 1310 1311
	{
		if (Portfd < 0)
		{
			fprintf(stderr,
					"Postmaster flag set: no port number specified, use /dev/null\n");
			Portfd = open(NULL_DEV, O_RDWR, 0666);
		}
		pq_init(Portfd);
		whereToSendOutput = Remote;
1312
	}
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
	else
		whereToSendOutput = Debug;

	SetProcessingMode(InitProcessing);

	/* initialize */
	if (!Quiet)
		puts("\tInitPostgres()..");

	InitPostgres(DBName);

1324
#ifdef MULTIBYTE
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
	/* set default client encoding */
	if (!Quiet)
	{
		puts("\treset_client_encoding()..");
	}
	reset_client_encoding();
	if (!Quiet)
	{
		puts("\treset_client_encoding() done.");
	}
#endif

M
 
Marc G. Fournier 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
	/* ----------------
	 *  Set up handler for cancel-request signal, and
	 *	send this backend's cancellation info to the frontend.
	 *	This should not be done until we are sure startup is successful.
	 * ----------------
	 */

	pqsignal(SIGINT, QueryCancelHandler);

	if (whereToSendOutput == Remote &&
		PG_PROTOCOL_MAJOR(FrontendProtocol) >= 2)
	{
		pq_putnchar("K", 1);
		pq_putint((int32) MyProcPid, sizeof(int32));
		pq_putint((int32) MyCancelKey, sizeof(int32));
		/* Need not flush since ReadyForQuery will do it. */
	}

1355 1356 1357 1358 1359 1360 1361
	/* ----------------
	 *	if an exception is encountered, processing resumes here
	 *	so we abort the current transaction and start a new one.
	 *	This must be done after we initialize the slave backends
	 *	so that the slaves signal the master to abort the transaction
	 *	rather than calling AbortCurrentTransaction() themselves.
	 *
M
 
Marc G. Fournier 已提交
1362
	 *	Note:  elog(ERROR) causes a kill(getpid(), SIGHUP) to occur sending
1363 1364 1365 1366 1367 1368 1369 1370
	 *		   us back here.
	 * ----------------
	 */

	pqsignal(SIGHUP, handle_warn);

	if (sigsetjmp(Warn_restart, 1) != 0)
	{
1371
		InError = true;
1372 1373 1374 1375 1376 1377

		time(&tim);

		if (!Quiet)
			printf("\tAbortCurrentTransaction() at %s\n", ctime(&tim));

B
Bruce Momjian 已提交
1378
		MemSet(parser_input, 0, MAX_PARSE_BUFFER);
1379 1380

		AbortCurrentTransaction();
1381

1382
	}
1383 1384

	InError = false;
1385 1386 1387 1388 1389

	/* ----------------
	 *	POSTGRES main processing loop begins here
	 * ----------------
	 */
1390
	if (!IsUnderPostmaster)
1391 1392
	{
		puts("\nPOSTGRES backend interactive interface");
1393
		puts("$Revision: 1.84 $ $Date: 1998/08/25 15:00:17 $");
1394 1395 1396 1397 1398 1399 1400 1401 1402
	}

	/* ----------------
	 * if stable main memory is assumed (-S(old) flag is set), it is necessary
	 * to flush all dirty shared buffers before exit
	 * plai 8/7/90
	 * ----------------
	 */
	if (!TransactionFlushEnabled())
1403
		on_shmem_exit(FlushBufferPool, NULL);
1404 1405 1406

	for (;;)
	{
B
Bruce Momjian 已提交
1407 1408 1409 1410
		/* ----------------
		 *	 (0) tell the frontend we're ready for a new query.
		 * ----------------
		 */
1411
		ReadyForQuery(whereToSendOutput);
B
Bruce Momjian 已提交
1412

1413 1414 1415 1416
		/* ----------------
		 *	 (1) read a command.
		 * ----------------
		 */
B
Bruce Momjian 已提交
1417
		MemSet(parser_input, 0, MAX_PARSE_BUFFER);
1418

1419
		firstchar = ReadCommand(parser_input);
1420 1421 1422

		QueryCancel = false;

1423 1424 1425 1426
		/* process the command */
		switch (firstchar)
		{
				/* ----------------
1427 1428
				 *	'F' indicates a fastpath call.
				 *		XXX HandleFunctionRequest
1429 1430
				 * ----------------
				 */
1431
			case 'F':
1432 1433
				IsEmptyQuery = false;

1434
				/* start an xact for this function invocation */
1435 1436 1437 1438 1439
				if (!Quiet)
				{
					time(&tim);
					printf("\tStartTransactionCommand() at %s\n", ctime(&tim));
				}
1440

1441
				StartTransactionCommand();
1442
				HandleFunctionRequest();
1443
				*ps_status = "idle";
1444
				break;
1445

1446 1447 1448 1449 1450 1451
				/* ----------------
				 *	'Q' indicates a user query
				 * ----------------
				 */
			case 'Q':
				fflush(stdout);
1452

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
				if (strspn(parser_input, " \t\n") == strlen(parser_input))
				{
					/* ----------------
					 *	if there is nothing in the input buffer, don't bother
					 *	trying to parse and execute anything..
					 * ----------------
					 */
					IsEmptyQuery = true;
				}
				else
				{
					/* ----------------
					 *	otherwise, process the input string.
					 * ----------------
					 */
					IsEmptyQuery = false;
					if (ShowStats)
						ResetUsage();

					/* start an xact for this query */
					if (!Quiet)
					{
						time(&tim);
						printf("\tStartTransactionCommand() at %s\n", ctime(&tim));
					}
					StartTransactionCommand();
1479

1480 1481 1482
					pg_exec_query(parser_input);

					*ps_status = "idle";
1483

1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
					if (ShowStats)
						ShowUsage();
				}
				break;

				/* ----------------
				 *	'X' means that the frontend is closing down the socket
				 * ----------------
				 */
			case 'X':
				pq_close();
1495
				proc_exit(0);
1496 1497 1498
				break;

			default:
M
 
Marc G. Fournier 已提交
1499
				elog(ERROR, "unknown frontend message was received");
1500 1501 1502 1503 1504 1505
		}

		/* ----------------
		 *	 (3) commit the current transaction
		 *
		 *	 Note: if we had an empty input buffer, then we didn't
1506
		 *	 call pg_exec_query, so we don't bother to commit this transaction.
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
		 * ----------------
		 */
		if (!IsEmptyQuery)
		{
			if (!Quiet)
			{
				time(&tim);
				printf("\tCommitTransactionCommand() at %s\n", ctime(&tim));
			}
			CommitTransactionCommand();

		}
		else
		{
1521
			if (IsUnderPostmaster)
1522 1523 1524 1525
				NullCommand(Remote);
		}

	}							/* infinite for-loop */
1526
	proc_exit(0);
1527
	return 1;
1528 1529
}

1530
#ifndef HAVE_GETRUSAGE
1531
#include "rusagestub.h"
1532
#else							/* HAVE_GETRUSAGE */
1533
#include <sys/resource.h>
1534
#endif							/* HAVE_GETRUSAGE */
1535

1536 1537
struct rusage Save_r;
struct timeval Save_t;
1538 1539

void
1540
ResetUsage(void)
1541
{
1542 1543 1544 1545 1546 1547
	struct timezone tz;

	getrusage(RUSAGE_SELF, &Save_r);
	gettimeofday(&Save_t, &tz);
	ResetBufferUsage();
/*	  ResetTupleCount(); */
1548 1549 1550
}

void
1551
ShowUsage(void)
1552
{
1553 1554 1555
	struct timeval user,
				sys;
	struct timeval elapse_t;
1556
	struct timezone tz;
1557
	struct rusage r;
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602

	getrusage(RUSAGE_SELF, &r);
	gettimeofday(&elapse_t, &tz);
	memmove((char *) &user, (char *) &r.ru_utime, sizeof(user));
	memmove((char *) &sys, (char *) &r.ru_stime, sizeof(sys));
	if (elapse_t.tv_usec < Save_t.tv_usec)
	{
		elapse_t.tv_sec--;
		elapse_t.tv_usec += 1000000;
	}
	if (r.ru_utime.tv_usec < Save_r.ru_utime.tv_usec)
	{
		r.ru_utime.tv_sec--;
		r.ru_utime.tv_usec += 1000000;
	}
	if (r.ru_stime.tv_usec < Save_r.ru_stime.tv_usec)
	{
		r.ru_stime.tv_sec--;
		r.ru_stime.tv_usec += 1000000;
	}

	/*
	 * the only stats we don't show here are for memory usage -- i can't
	 * figure out how to interpret the relevant fields in the rusage
	 * struct, and they change names across o/s platforms, anyway. if you
	 * can figure out what the entries mean, you can somehow extract
	 * resident set size, shared text size, and unshared data and stack
	 * sizes.
	 */

	fprintf(StatFp, "! system usage stats:\n");
	fprintf(StatFp,
			"!\t%ld.%06ld elapsed %ld.%06ld user %ld.%06ld system sec\n",
			(long int) elapse_t.tv_sec - Save_t.tv_sec,
			(long int) elapse_t.tv_usec - Save_t.tv_usec,
			(long int) r.ru_utime.tv_sec - Save_r.ru_utime.tv_sec,
			(long int) r.ru_utime.tv_usec - Save_r.ru_utime.tv_usec,
			(long int) r.ru_stime.tv_sec - Save_r.ru_stime.tv_sec,
			(long int) r.ru_stime.tv_usec - Save_r.ru_stime.tv_usec);
	fprintf(StatFp,
			"!\t[%ld.%06ld user %ld.%06ld sys total]\n",
			(long int) user.tv_sec,
			(long int) user.tv_usec,
			(long int) sys.tv_sec,
			(long int) sys.tv_usec);
1603
#ifdef HAVE_GETRUSAGE
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
	fprintf(StatFp,
			"!\t%ld/%ld [%ld/%ld] filesystem blocks in/out\n",
			r.ru_inblock - Save_r.ru_inblock,
	/* they only drink coffee at dec */
			r.ru_oublock - Save_r.ru_oublock,
			r.ru_inblock, r.ru_oublock);
	fprintf(StatFp,
		  "!\t%ld/%ld [%ld/%ld] page faults/reclaims, %ld [%ld] swaps\n",
			r.ru_majflt - Save_r.ru_majflt,
			r.ru_minflt - Save_r.ru_minflt,
			r.ru_majflt, r.ru_minflt,
			r.ru_nswap - Save_r.ru_nswap,
			r.ru_nswap);
	fprintf(StatFp,
	 "!\t%ld [%ld] signals rcvd, %ld/%ld [%ld/%ld] messages rcvd/sent\n",
			r.ru_nsignals - Save_r.ru_nsignals,
			r.ru_nsignals,
			r.ru_msgrcv - Save_r.ru_msgrcv,
			r.ru_msgsnd - Save_r.ru_msgsnd,
			r.ru_msgrcv, r.ru_msgsnd);
	fprintf(StatFp,
		 "!\t%ld/%ld [%ld/%ld] voluntary/involuntary context switches\n",
			r.ru_nvcsw - Save_r.ru_nvcsw,
			r.ru_nivcsw - Save_r.ru_nivcsw,
			r.ru_nvcsw, r.ru_nivcsw);
#endif							/* HAVE_GETRUSAGE */
	fprintf(StatFp, "! postgres usage stats:\n");
	PrintBufferUsage(StatFp);
/*	   DisplayTupleCount(StatFp); */
1633
}