postgres.c 47.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*-------------------------------------------------------------------------
 *
 * postgres.c--
 *    POSTGRES C Backend Interface
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
B
Bruce Momjian 已提交
10
 *    $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.38 1997/08/06 05:08:37 momjian Exp $
11 12 13 14 15 16 17
 *
 * NOTES
 *    this is the "main" module of the postgres backend and
 *    hence the main module of the "traffic cop".
 *
 *-------------------------------------------------------------------------
 */
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 33 34
#ifndef MAXHOSTNAMELEN		/* for MAXHOSTNAMELEN under sco3.2v5.0.2 */
#include <sys/socket.h>
#endif
35
#include <errno.h>
M
Marc G. Fournier 已提交
36
#ifdef aix
37
#include <sys/select.h>
M
Marc G. Fournier 已提交
38
#endif /* aix */
39 40 41 42 43 44 45 46 47 48


#include "postgres.h"
#include "miscadmin.h"
#include "catalog/catname.h"
#include "access/xact.h"

#include "lib/dllist.h"

#include "parser/catalog_utils.h"
49
#include "parser/parse_query.h"     /* for MakeTimeRange() */
50
#include "commands/async.h"
51
#include "tcop/tcopprot.h"          /* where declarations for this file go */
52 53
#include "optimizer/planner.h"

54
#include "tcop/tcopprot.h"
55 56 57 58
#include "tcop/tcopdebug.h"

#include "executor/execdebug.h"
#include "executor/executor.h"
59
#if FALSE
60
#include "nodes/relation.h"
61
#endif
62
#include "nodes/print.h"
63 64 65 66 67 68 69

#include "optimizer/cost.h"
#include "optimizer/planner.h"
#if 0
#include "optimizer/xfunc.h"
#endif
#include "optimizer/prep.h"
70
#if FALSE
71
#include "nodes/plannodes.h"
72
#endif
73 74 75 76 77 78 79 80

#include "storage/bufmgr.h"
#include "fmgr.h"
#include "utils/palloc.h"
#include "utils/rel.h"

#include "nodes/pg_list.h"
#include "tcop/dest.h"
81
#if FALSE
82
#include "nodes/memnodes.h"
83
#endif
84 85 86 87 88 89
#include "utils/mcxt.h"
#include "tcop/pquery.h"
#include "tcop/utility.h"
#include "tcop/fastpath.h"

#include "libpq/libpq.h"
90
#include "libpq/pqsignal.h"
91 92 93
#include "rewrite/rewriteHandler.h" /* for QueryRewrite() */

/* ----------------
94
 *      global variables
95 96
 * ----------------
 */
97
static bool     DebugPrintQuery = false;
98 99 100 101
static bool     DebugPrintPlan = false;
static bool     DebugPrintParse = false;
static bool     DebugPrintRewrittenParsetree = false;
/*static bool   EnableRewrite = true; , never changes why have it*/
102 103
CommandDest whereToSendOutput;

104 105 106
#ifdef LOCK_MGR_DEBUG
extern int      lockDebug;
#endif
107 108
extern int      lockingOff;
extern int      NBuffers;
109

110
int     fsyncOff = 0;
B
Bruce Momjian 已提交
111
int	SortMem = 512 * 1024;
M
Marc G. Fournier 已提交
112

113 114 115
int     dontExecute = 0;
static int      ShowStats;
static bool     IsEmptyQuery = false;
116

117
char            relname[80];            /* current relation name */
118

119
#if defined(nextstep)
120 121 122 123 124
jmp_buf    Warn_restart;
#define sigsetjmp(x,y)  setjmp(x)
#define siglongjmp longjmp
#else
sigjmp_buf Warn_restart;
125
#endif /* defined(nextstep) */
M
Fixes:  
Marc G. Fournier 已提交
126
int InWarn;
127

128
extern int      NBuffers;
129

130 131 132 133 134 135 136
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;
137 138 139 140 141 142 143 144 145 146 147 148

typedef struct frontend {
  bool  fn_connected;
  Port  fn_port;
  FILE  *fn_Pfin;  /* the input fd */
  FILE  *fn_Pfout; /* the output fd */
  bool  fn_done; /* set after the frontend closes its connection */
} FrontEnd;

static Dllist* frontendList;

/* ----------------
149 150
 *      people who want to use EOF should #define DONTUSENEWLINE in
 *      tcop/tcopdebug.h
151 152 153 154 155 156 157 158 159
 * ----------------
 */
#ifndef TCOP_DONTUSENEWLINE
int UseNewLine = 1;  /* Use newlines query delimiters (the default) */
#else
int UseNewLine = 0;  /* Use EOF as query delimiters */
#endif /* TCOP_DONTUSENEWLINE */

/* ----------------
160 161
 *      bushy tree plan flag: if true planner will generate bushy-tree
 *      plans
162 163 164 165 166 167 168 169 170 171 172 173
 * ----------------
 */
int BushyPlanFlag = 0; /* default to false -- consider only left-deep trees */

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

/*
 * ----------------
 *   Note: _exec_repeat_ defaults to 1 but may be changed
174 175 176 177 178 179
 *         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
180 181 182 183 184
 * ----------------
*/
int _exec_repeat_ = 1;

/* ----------------------------------------------------------------
185
 *      decls for routines only used in this file
186 187 188
 * ----------------------------------------------------------------
 */
static char InteractiveBackend(char *inBuf);
189 190
static char SocketBackend(char *inBuf, bool multiplexedBackend);
static char ReadCommand(char *inBuf, bool multiplexedBackend);
191 192 193


/* ----------------------------------------------------------------
194
 *      routines to obtain user input
195 196 197 198 199 200 201 202 203 204 205 206
 * ----------------------------------------------------------------
 */

/* ----------------
 *  InteractiveBackend() is called for user interactive connections
 *  the string entered by the user is placed in its parameter inBuf.
 * ----------------
 */

static char
InteractiveBackend(char *inBuf)
{
207 208 209 210
    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 \ ? */
211 212
    
    /* ----------------
213
     *  display a prompt and obtain input from the user
214 215 216 217 218
     * ----------------
     */
    printf("> ");
    
    for (;;) {
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 266 267 268
        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;
            exitpg(0);
        }
        
        /* ----------------
         *  otherwise we have a user query so process it.
         * ----------------
         */
        break;
269 270 271
    }
    
    /* ----------------
272
     *  if the query echo flag was given, print the query..
273 274 275
     * ----------------
     */
    if (EchoQuery)
276
        printf("query is: %s\n", inBuf);
277 278 279 280 281
    
    return('Q');
}

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

static char
294
SocketBackend(char *inBuf, bool multiplexedBackend)
295 296
{
    char qtype[2];
B
Bruce Momjian 已提交
297
    char result = '\0';
298 299
    
    /* ----------------
300
     *  get input from the frontend
301 302 303 304
     * ----------------
     */
    (void) strcpy(qtype, "?");
    if (pq_getnchar(qtype,0,1) == EOF) {
305 306 307 308 309 310 311 312 313
        /* ------------
         *  when front-end applications quits/dies
         * ------------
         */
        if (multiplexedBackend) {
            return 'X';
        }
        else
            exitpg(0);
314 315 316
    }
    
    switch(*qtype) {
317 318 319 320
        /* ----------------
         *  'Q': user entered a query
         * ----------------
         */
321
    case 'Q':
322 323 324 325 326 327 328 329 330 331
        pq_getstr(inBuf, MAX_PARSE_BUFFER);
        result = 'Q';
        break;
        
        /* ----------------
         *  'F':  calling user/system functions
         * ----------------
         */
    case 'F':   
        pq_getstr(inBuf, MAX_PARSE_BUFFER);/* ignore the rest of the line */
332 333
        result = 'F';
        break;
334 335 336 337 338
        
        /* ----------------
         *  'X':  frontend is exiting
         * ----------------
         */
339
    case 'X':
340 341 342 343 344 345 346 347 348 349
        result = 'X';
        break;
        
        /* ----------------
         *  otherwise we got garbage from the frontend.
         *
         *  XXX are we certain that we want to do an elog(FATAL) here?
         *      -cim 1/24/90
         * ----------------
         */
350
    default:
351 352
        elog(FATAL, "Socket command type %c unknown\n", *qtype);
        break;
353 354 355 356 357
    }
    return result;
}

/* ----------------
358 359 360 361
 *      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.
362 363 364
 * ----------------
 */
static char
365
ReadCommand(char *inBuf, bool multiplexedBackend)
366 367
{
    if (IsUnderPostmaster || multiplexedBackend)
368
        return SocketBackend(inBuf, multiplexedBackend);
369
    else
370
        return InteractiveBackend(inBuf);
371 372 373
}

List *
374 375 376 377 378
pg_plan(char *query_string,     /* string to execute */
        Oid *typev,             /* argument types */
        int nargs,              /* number of arguments */
        QueryTreeList **queryListP,  /* pointer to the parse trees */
        CommandDest dest)       /* where results should go */
379 380 381 382 383 384 385 386 387 388 389
{
    QueryTreeList *querytree_list;
    int i;
    List *plan_list = NIL;
    Plan *plan;
    int j;
    QueryTreeList *new_list; 
    List *rewritten = NIL;
    Query* querytree;

    /* ----------------
390
     *  (1) parse the request string into a list of parse trees
391 392 393
     * ----------------
     */
    if (ShowParserStats)
394
        ResetUsage();
395 396 397 398
    
    querytree_list = parser(query_string, typev, nargs);
    
    if (ShowParserStats) {
399 400
        fprintf(stderr, "! Parser Stats:\n");
        ShowUsage();
401 402 403 404 405 406 407 408
    }

    /* 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*));

    /* ----------------
409
     *  (2) rewrite the queries, as necessary     
410 411 412
     * ----------------
     */
    j = 0; /* counter for the new_list, new_list can be longer than
413
              old list as a result of rewrites */
414 415
    for (i=0;i<querytree_list->len;i++) {
        querytree = querytree_list->qtrees[i];
416 417 418 419 420 421 422 423
        

        /* don't rewrite utilites */
        if (querytree->commandType == CMD_UTILITY) {
            new_list->qtrees[j++] = querytree;
            continue;
        }
        
424 425 426 427 428 429
        if ( DebugPrintQuery == true ) {
            printf("\n---- \tquery is:\n%s\n",query_string);
            printf("\n");
	    fflush(stdout);
        }
        
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
        if ( DebugPrintParse == true ) {
            printf("\n---- \tparser outputs :\n");
            nodeDisplay(querytree);
            printf("\n");
        }
        
        /* rewrite queries (retrieve, append, delete, replace) */
        rewritten = QueryRewrite(querytree);
        if (rewritten != NULL) {
          int len, k;
          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);
          }
        }
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
    }
    
    /* we're done with the original lists, free it */
    free(querytree_list->qtrees);
    free(querytree_list);

    querytree_list = new_list;

    /* ----------------
     * Fix time range quals
     * this _must_ go here, because it must take place after rewrites
     * ( if they take place ) so that time quals are usable by the executor
     *
     * Also, need to frob the range table entries here to plan union
     * queries for archived relations.
     * ----------------
     */
    for (i=0;i<querytree_list->len;i++) {
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
        List *l;
        List *rt = NULL;

        querytree = querytree_list->qtrees[i];

        /* ----------------
         *  utilities don't have time ranges
         * ----------------
         */
        if (querytree->commandType == CMD_UTILITY)
            continue;
        
        rt = querytree->rtable;
        
        foreach (l, rt) {
            RangeTblEntry *rte = lfirst(l);
            TimeRange *timequal = rte->timeRange;

            if (timequal) {
                int timecode = (rte->timeRange->endDate == NULL)? 0 : 1;

                rte->timeQual = makeTimeRange(rte->timeRange->startDate,
                                              rte->timeRange->endDate,
                                              timecode);
            }else {
                rte->timeQual = NULL;
            }
        }
        
        /* check for archived relations */
        plan_archive(rt);
503 504 505
    }
    
    if (DebugPrintRewrittenParsetree == true) {
506
        printf("\n---- \tafter rewriting:\n");
507 508 509 510 511

        for (i=0; i<querytree_list->len; i++) {
            print(querytree_list->qtrees[i]);
            printf("\n");
        }
512 513 514 515
    }
    
    for (i=0; i<querytree_list->len;i++) {
        querytree = querytree_list->qtrees[i];
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
        
        /*
         *  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
                 * ----------------
                 */
                char *tag = "*ABORT STATE*";
                EndCommand(tag, dest);
                
                elog(NOTICE, "(transaction aborted): %s",
                     "queries ignored until END");
                
                *queryListP = (QueryTreeList*)NULL;
                return (List*)NULL;
            }
            
            if (ShowPlannerStats) ResetUsage();
            plan = planner(querytree);
            if (ShowPlannerStats) {
                fprintf(stderr, "! Planner Stats:\n");
                ShowUsage();
            }
            plan_list = lappend(plan_list, plan);
M
Fixes:  
Marc G. Fournier 已提交
547 548 549 550 551 552 553
#ifdef INDEXSCAN_PATCH
            /* ----------------
             *  Print plan if debugging.
             *  This has been moved here to get debugging output
             *  also for queries in functions.  DZ - 27-8-1996
             * ----------------
             */
554
            if ( DebugPrintPlan == true ) {
555
                printf("\n---- \tplan is :\n");
556 557 558
                nodeDisplay(plan);
                printf("\n");
            }
M
Fixes:  
Marc G. Fournier 已提交
559
#endif
560
        }
561
#ifdef FUNC_UTIL_PATCH
562 563 564 565 566 567 568 569
        /*
         * 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);
        }
570
#endif
571 572 573
    }
    
    if (queryListP)
574
        *queryListP = querytree_list;
575 576 577 578 579
    
    return (plan_list);
}

/* ----------------------------------------------------------------
580 581 582 583 584 585 586
 *      pg_eval()
 *      
 *      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.
587
 *
588 589 590 591
 *      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.
592 593 594 595 596
 *
 * ----------------------------------------------------------------
 */

void
597
pg_eval(char *query_string, char **argv, Oid *typev, int nargs)
598 599 600 601 602 603
{
    pg_eval_dest(query_string, argv, typev, nargs, whereToSendOutput);
}

void
pg_eval_dest(char *query_string, /* string to execute */
604 605 606 607
             char **argv,       /* arguments */
             Oid *typev,        /* argument types */
             int nargs,         /* number of arguments */
             CommandDest dest)  /* where results should go */
608 609 610 611 612 613 614 615 616 617 618 619
{
    List *plan_list; 
    Plan *plan;
    Query *querytree;
    int i,j;
    QueryTreeList *querytree_list;
    
    /* plan the queries */
    plan_list = pg_plan(query_string, typev, nargs, &querytree_list, dest);
    
    /* pg_plan could have failed */
    if (querytree_list == NULL)
620
        return;
621 622

    for (i=0;i<querytree_list->len;i++) {
623 624
        querytree = querytree_list->qtrees[i];
        
625
#ifdef FUNC_UTIL_PATCH
626 627 628 629 630 631
        /*
         * 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);
632
#endif
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
        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 {
649
#ifndef FUNC_UTIL_PATCH
650 651 652 653 654
            /*
             * Moved before the if.  DZ - 30-8-1996
             */
            plan = (Plan *) lfirst(plan_list);
            plan_list = lnext(plan_list);
655
#endif
656
            
M
Fixes:  
Marc G. Fournier 已提交
657
#ifdef INDEXSCAN_PATCH
658 659 660
            /*
             *  Print moved in pg_plan.  DZ - 27-8-1996
             */
M
Fixes:  
Marc G. Fournier 已提交
661
#else
662 663 664 665 666
            /* ----------------
             *  print plan if debugging
             * ----------------
             */
            if ( DebugPrintPlan == true ) {
667
                printf("\n---- plan is :\n");
668 669 670
                nodeDisplay(plan);
                printf("\n");
            }
M
Fixes:  
Marc G. Fournier 已提交
671
#endif
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
            
            /* ----------------
             *   execute the plan
             *
             */
            if (ShowExecutorStats)
                ResetUsage();
            
            for (j = 0; j < _exec_repeat_; j++) {
                if (! Quiet) {
                    time(&tim);
                    printf("\tProcessQuery() at %s\n", ctime(&tim));
                }
                ProcessQuery(querytree, plan, argv, typev, nargs, dest);
            }
            
            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();
701 702 703 704 705 706 707
    }

    free(querytree_list->qtrees);
    free(querytree_list);
}

/* --------------------------------
708
 *      signal handler routines used in PostgresMain()
709
 *
710 711
 *      handle_warn() is used to catch kill(getpid(),1) which
 *      occurs when elog(WARN) is called.
712 713 714 715
 *
 *      quickdie() occurs when signalled by the postmaster, some backend
 *      has bought the farm we need to stop what we're doing and exit.
 *
716
 *      die() preforms an orderly cleanup via ExitPostgres()
717 718 719 720
 * --------------------------------
 */

void
721
handle_warn(SIGNAL_ARGS)
722 723 724 725 726
{
    siglongjmp(Warn_restart, 1);
}

void
727
quickdie(SIGNAL_ARGS)
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
{
    elog(NOTICE, "I have been signalled by the postmaster.");
    elog(NOTICE, "Some backend process has died unexpectedly and possibly");
    elog(NOTICE, "corrupted shared memory.  The current transaction was");
    elog(NOTICE, "aborted, and I am going to exit.  Please resend the");
    elog(NOTICE, "last query. -- The postgres backend");
    
    /*
     *  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);
}

void
745
die(SIGNAL_ARGS)
746 747 748 749 750
{
    ExitPostgres(0);
}

/* signal handler for floating point exception */
B
Bruce Momjian 已提交
751
static void
752
FloatExceptionHandler(SIGNAL_ARGS)
753 754 755 756 757 758 759 760
{
   elog(WARN, "floating point exception! the last floating point operation eit\
her exceeded legal ranges or was a divide by zero");
}


static void usage(char* progname)
{
761
    fprintf(stderr, 
762 763
            "Usage: %s [-B nbufs] [-d lvl] ] [-f plantype] \t[-m portno] [\t -o filename]\n",
            progname);
B
Bruce Momjian 已提交
764
    fprintf(stderr,"\t[-P portno] [-t tracetype] [-x opttype] [-bCEiLFNopQSs] [dbname]\n");
765 766 767 768 769
    fprintf(stderr, "    b: consider bushy plan trees during optimization\n");
    fprintf(stderr, "    B: set number of buffers in buffer pool\n");
    fprintf(stderr, "    C: supress version info\n");
    fprintf(stderr, "    d: set debug level\n");
    fprintf(stderr, "    E: echo query before execution\n");
770
    fprintf(stderr, "    e  turn on European date format\n");
M
Marc G. Fournier 已提交
771
    fprintf(stderr, "    F: turn off fsync\n");
772 773
    fprintf(stderr, "    f: forbid plantype generation\n");
    fprintf(stderr, "    i: don't execute the query, just show the plan tree\n");
774 775 776
#ifdef LOCK_MGR_DEBUG
    fprintf(stderr, "    K: set locking debug level [0|1|2]\n");
#endif
777
    fprintf(stderr, "    L: turn off locking\n");
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
    fprintf(stderr, "    m: set up a listening backend at portno to support multiple front-ends\n");
    fprintf(stderr, "    M: start as postmaster\n");
    fprintf(stderr, "    N: don't use newline as query delimiter\n");
    fprintf(stderr, "    o: send stdout and stderr to given filename \n");
    fprintf(stderr, "    p: backend started by postmaster\n");
    fprintf(stderr, "    P: set port file descriptor\n");
    fprintf(stderr, "    Q: suppress informational messages\n");
    fprintf(stderr, "    S: assume stable main memory\n");
    fprintf(stderr, "    s: show stats after each query\n");
    fprintf(stderr, "    t: trace component execution times\n");
    fprintf(stderr, "    T: execute all possible plans for each query\n");
    fprintf(stderr, "    x: control expensive function optimization\n");
}

/* ----------------------------------------------------------------
793 794
 *      PostgresMain
 *        postgres main loop
795 796 797 798 799 800 801
 *      all backends, interactive or otherwise start here
 * ----------------------------------------------------------------
 */
int
PostgresMain(int argc, char *argv[])
{
    int    flagC;
802 803 804
    int    flagQ;
    int    flagS;
    int    flagE;
805
    int    flagEu;
806
    int    flag;
807
    
B
Bruce Momjian 已提交
808
    char   *DBName = NULL; 
809 810 811 812 813 814
    int    errs = 0;
    
    char   firstchar;
    char   parser_input[MAX_PARSE_BUFFER];
    char *userName;
    
815
    bool   multiplexedBackend;
816 817 818
    char*  hostName;                /* the host name of the backend server */
    char   hostbuf[MAXHOSTNAMELEN];
    int    serverSock;
B
Bruce Momjian 已提交
819
    int    serverPortnum = 0;
820
    int    nSelected; /* number of descriptors ready from select(); */
B
Bruce Momjian 已提交
821
    int    maxFd = 0; /* max file descriptor + 1 */
822
    fd_set rmask, basemask;
B
Bruce Momjian 已提交
823
    FrontEnd *newFE, *currentFE = NULL;
824 825 826 827 828 829
    int    numFE = 0; /* keep track of number of active frontends */
    Port   *newPort;
    int    newFd;
    Dlelem *curr;
    int    status;

830 831
    extern int    optind;
    extern char   *optarg;
832 833 834
    extern short  DebugLvl;
    
    /* ----------------
835
     *  register signal handlers.
836 837
     * ----------------
     */
838
    pqsignal(SIGINT, die);
839

840 841 842 843 844 845
    pqsignal(SIGHUP, die);
    pqsignal(SIGTERM, die);
    pqsignal(SIGPIPE, die);
    pqsignal(SIGUSR1, quickdie);
    pqsignal(SIGUSR2, Async_NotifyHandler);
    pqsignal(SIGFPE, FloatExceptionHandler);
846 847
    
    /* --------------------
848
     *  initialize globals 
849 850 851
     * -------------------
     */
    
852
    MasterPid = getpid();
853 854

    /* ----------------
855
     *  parse command line arguments
856 857
     * ----------------
     */
858
    flagC = flagQ = flagS = flagE = flagEu = ShowStats = 0;
859
    ShowParserStats = ShowPlannerStats = ShowExecutorStats = 0;
860 861 862 863
#ifdef LOCK_MGR_DEBUG
    lockDebug = 0;
#endif

864 865 866
    /* get hostname is either the environment variable PGHOST
       or 'localhost' */
    if (!(hostName = getenv("PGHOST"))) {
867 868 869
        if (gethostname(hostbuf, MAXHOSTNAMELEN) < 0)
            (void) strcpy(hostbuf, "localhost");
        hostName = hostbuf;
870 871
    }

872 873 874
    DataDir = getenv("PGDATA");   /* default */
    multiplexedBackend = false;   /* default */

875
    while ((flag = getopt(argc, argv, "B:bCD:d:Eef:iK:Lm:MNo:P:pQSst:x:F")) 
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
           != EOF)
        switch (flag) {
            
        case 'b':
            /* ----------------
             *  set BushyPlanFlag to true.
             * ----------------
             */
            BushyPlanFlag = 1;
            break;
        case 'B':
            /* ----------------
             *  specify the size of buffer pool
             * ----------------
             */
            NBuffers = atoi(optarg);
            break;
            
        case 'C':
            /* ----------------
             *  don't print version string (don't know why this is 'C' --mao)
             * ----------------
             */
            flagC = 1;
            break;
            
        case 'D':   /* PGDATA directory */
            DataDir = optarg;
            
        case 'd':   /* debug level */
            flagQ = 0;
            DebugLvl = (short)atoi(optarg);
908 909 910 911 912 913 914 915
            if (DebugLvl > 1)
	        DebugPrintQuery = true;
            if (DebugLvl > 2)
            {
	        DebugPrintParse = true;
		DebugPrintPlan = true;
            	DebugPrintRewrittenParsetree = true;
            }
916 917 918 919 920 921 922 923 924 925
            break;
            
        case 'E':
            /* ----------------
             *  E - echo the query the user entered
             * ----------------
             */
            flagE = 1;
            break;
            
926 927 928 929 930 931 932 933
        case 'e':
            /* --------------------------
             * Use european date formats.
             * --------------------------
             */
            flagEu = 1;
            break;

934 935 936 937 938 939 940 941
        case 'F':
            /* --------------------
             *  turn off fsync
             * --------------------
             */
            fsyncOff = 1;
            break;

942 943 944 945 946 947 948
        case 'f':
            /* -----------------
             *    f - forbid generation of certain plans
             * -----------------
             */
            switch (optarg[0]) {
            case 's': /* seqscan */
949 950
                _enable_seqscan_ = false;
                break;
951
            case 'i': /* indexscan */
952 953
                _enable_indexscan_ = false;
                break;
954
            case 'n': /* nestloop */
955 956
                _enable_nestloop_ = false;
                break;
957
            case 'm': /* mergejoin */
958 959
                _enable_mergesort_ = false;
                break;
960
            case 'h': /* hashjoin */
961 962
                _enable_hashjoin_ = false;
                break;
963
            default:
964
                errs++;
965 966 967 968 969 970 971
            }
            break;

        case 'i':
            dontExecute = 1;
            break;
            
972 973 974 975 976 977 978 979
        case 'K':
#ifdef LOCK_MGR_DEBUG
            lockDebug = atoi(optarg);
#else
	    fprintf(stderr, "Lock debug not compiled in\n");
#endif
            break;
            
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
        case 'L':
            /* --------------------
             *  turn off locking
             * --------------------
             */
            lockingOff = 1;
            break;
            
        case 'm':
            /* start up a listening backend that can respond to 
               multiple front-ends.  (Note:  all the front-end connections
               are still connected to a single-threaded backend.  Requests
               are FCFS.  Everything is in one transaction 
               */
            multiplexedBackend = true;
            serverPortnum = atoi(optarg);
            break;
        case 'M':
            exit(PostmasterMain(argc, argv));
            break;
        case 'N':
            /* ----------------
             *  N - Don't use newline as a query delimiter
             * ----------------
             */
            UseNewLine = 0;
            break;
            
        case 'o':
            /* ----------------
             *  o - send output (stdout and stderr) to the given file
             * ----------------
             */
            (void) strncpy(OutputFileName, optarg, MAXPGPATH);
            break;
            
        case 'p':       /* started by postmaster */
            /* ----------------
             *  p - special flag passed if backend was forked
             *      by a postmaster.
             * ----------------
             */
            IsUnderPostmaster = true;
            break;
            
        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;
            
        case 'Q':
            /* ----------------
             *  Q - set Quiet mode (reduce debugging output)
             * ----------------
             */
            flagQ = 1;
            break;
1042 1043 1044 1045 1046 1047

        case 'S':
            /* ----------------
             *  S - amount of sort memory to use in 1k bytes
             * ----------------
             */
B
Bruce Momjian 已提交
1048
            SortMem = atoi(optarg) * 1024;
1049 1050 1051
            break;

#ifdef NOT_USED
1052 1053 1054 1055 1056 1057 1058 1059 1060
        case 'S':
            /* ----------------
             *  S - assume stable main memory
             *      (don't flush all pages at end transaction)
             * ----------------
             */
            flagS = 1;
            SetTransactionFlushEnabled(false);
            break;
1061
#endif
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
            
        case 's':
            /* ----------------
             *    s - report usage statistics (timings) after each query
             * ----------------
             */
            ShowStats = 1;
            StatFp = stderr;
            break;
            
        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;
            } 
            break;
            
        case 'x':
1098
#if 0 /* planner/xfunc.h */
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
            /* 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++;
            }
1122
#endif
1123 1124 1125 1126 1127 1128 1129 1130 1131
            break;
            
        default:
            /* ----------------
             *  default: bad command line option
             * ----------------
             */
            errs++;
        }
1132 1133
    
    /* ----------------
1134
     *  get user name and pathname and check command line validity
1135 1136 1137 1138 1139 1140
     * ----------------
     */
    SetPgUserName();
    userName = GetPgUserName();
    
    if (FindBackend(pg_pathname, argv[0]) < 0)
1141 1142
        elog(FATAL, "%s: could not locate executable, bailing out...",
             argv[0]);
1143 1144
    
    if (errs || argc - optind > 1) {
1145 1146
        usage (argv[0]);
        exitpg(1);
1147
    } else if (argc - optind == 1) {
1148
        DBName = argv[optind];
1149
    } else if ((DBName = userName) == NULL) {
1150 1151 1152
        fprintf(stderr, "%s: USER undefined and no database specified\n",
                argv[0]);
        exitpg(1);
1153 1154 1155
    }
    
    if (ShowStats && 
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
        (ShowParserStats || ShowPlannerStats || ShowExecutorStats)) {
        fprintf(stderr, "-s can not be used together with -t.\n");
        exitpg(1);
    }

    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]);
        exitpg(1);
1168 1169 1170 1171 1172
    }
    
    Noversion = flagC;
    Quiet = flagQ;
    EchoQuery = flagE;
1173
    EuroDates = flagEu;
1174 1175
    
    /* ----------------
1176
     *  print flags
1177 1178 1179
     * ----------------
     */
    if (! Quiet) {
1180 1181 1182 1183 1184
        puts("\t---debug info---");
        printf("\tQuiet =        %c\n", Quiet     ? 't' : 'f');
        printf("\tNoversion =    %c\n", Noversion ? 't' : 'f');
        printf("\tstable    =    %c\n", flagS     ? 't' : 'f');
        printf("\ttimings   =    %c\n", ShowStats ? 't' : 'f');
1185
        printf("\tdates     =    %s\n", EuroDates ? "European" : "Normal");
1186
        printf("\tbufsize   =    %d\n", NBuffers);
1187
        printf("\tsortmem   =    %d\n", SortMem);
1188 1189 1190 1191 1192
        
        printf("\tquery echo =   %c\n", EchoQuery ? 't' : 'f');
        printf("\tmultiplexed backend? =  %c\n", multiplexedBackend ? 't' : 'f');
        printf("\tDatabaseName = [%s]\n", DBName);
        puts("\t----------------\n");
1193 1194 1195
    }
    
    /* ----------------
1196
     *  initialize portal file descriptors
1197 1198 1199
     * ----------------
     */
    if (IsUnderPostmaster == true) {
1200 1201 1202 1203 1204 1205
        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);
1206 1207 1208
    }

    if (multiplexedBackend) {
B
Bruce Momjian 已提交
1209
      if (serverPortnum == 0 ||
1210 1211 1212 1213 1214
          StreamServerPort(hostName, serverPortnum, &serverSock) != STATUS_OK)
        {
          fprintf(stderr, "Postgres: cannot create stream port %d\n", serverPortnum);
          exit(1);
        }
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
/*
{
    char buf[100];
    sprintf(buf, "stream port %d created, socket = %d\n", serverPortnum, serverSock);
    puts(buf);
}
*/
      FD_ZERO(&rmask);
      FD_ZERO(&basemask);
      FD_SET(serverSock, &basemask);  

      frontendList = DLNewList();
      /* add the original FrontEnd to the list */
      if (IsUnderPostmaster == true) {
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
        FrontEnd *fe = malloc(sizeof(FrontEnd));

        FD_SET(Portfd, &basemask);
        maxFd = Max(serverSock,Portfd) + 1;

        fe->fn_connected = true;
        fe->fn_Pfin = Pfin;
        fe->fn_Pfout = Pfout;
        fe->fn_done = false;
        (fe->fn_port).sock = Portfd;
        DLAddHead(frontendList, DLNewElem(fe));
        numFE++;
1241
      } else {
1242 1243
          numFE = 1;
          maxFd = serverSock + 1;
1244 1245 1246 1247
      }
    }

    if (IsUnderPostmaster || multiplexedBackend)
1248
        whereToSendOutput = Remote;
1249
    else 
1250
        whereToSendOutput = Debug;
1251 1252 1253 1254 1255
    
    SetProcessingMode(InitProcessing);
    
    /* initialize */
    if (! Quiet) {
1256
        puts("\tInitPostgres()..");
1257 1258 1259 1260 1261
    }
 
    InitPostgres(DBName);

    /* ----------------
1262
     *  if an exception is encountered, processing resumes here
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
     *  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.
     *
     *  Note:  elog(WARN) causes a kill(getpid(),1) to occur sending
     *         us back here.
     * ----------------
     */

1273
    pqsignal(SIGHUP, handle_warn);
1274 1275

    if (sigsetjmp(Warn_restart, 1) != 0) {
1276
        InWarn = 1;
1277

1278 1279 1280 1281
        time(&tim);
        
        if (! Quiet)
            printf("\tAbortCurrentTransaction() at %s\n", ctime(&tim));
1282

1283 1284 1285
        memset(parser_input, 0, MAX_PARSE_BUFFER);
        
        AbortCurrentTransaction();
1286
    }
M
Fixes:  
Marc G. Fournier 已提交
1287
    InWarn = 0;
1288 1289
    
    /* ----------------
1290
     *  POSTGRES main processing loop begins here
1291 1292 1293
     * ----------------
     */
    if (IsUnderPostmaster == false) {
1294
        puts("\nPOSTGRES backend interactive interface");
B
Bruce Momjian 已提交
1295
        puts("$Revision: 1.38 $ $Date: 1997/08/06 05:08:37 $");
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
    }
    
    /* ----------------
     * if stable main memory is assumed (-S flag is set), it is necessary
     * to flush all dirty shared buffers before exit
     * plai 8/7/90
     * ----------------
     */
    if (!TransactionFlushEnabled())
        on_exitpg(FlushBufferPool, (caddr_t) 0);
    
    for (;;) {
      
      if (multiplexedBackend) {
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
        if (numFE == 0) 
          break;

        memmove((char *) &rmask, (char *) &basemask, sizeof(fd_set));
        nSelected = select(maxFd, &rmask,0,0,0);

        if (nSelected < 0) {

          if (errno == EINTR) continue;
          fprintf(stderr,"postgres: multiplexed backend select failed\n");
          exitpg(1);
        }
        if (FD_ISSET(serverSock, &rmask)) {
        /* new connection pending on our well-known port's socket */
          newFE = (FrontEnd*) malloc (sizeof(FrontEnd));
          memset(newFE, 0, sizeof(FrontEnd));
          newFE->fn_connected = false;
          newFE->fn_done = false;
          newPort = &(newFE->fn_port);
          if (StreamConnection(serverSock,newPort) != STATUS_OK) {
            StreamClose(newPort->sock);
            newFd = -1;
          }
          else {
            DLAddHead(frontendList, DLNewElem(newFE));
            numFE++;
            newFd = newPort->sock;
            if (newFd >= maxFd) maxFd = newFd + 1;
            FD_SET(newFd, &rmask);
            FD_SET(newFd, &basemask);
            --nSelected;
            FD_CLR(serverSock, &rmask);
          }
          continue;
        } /* if FD_ISSET(serverSock) */
1345 1346

        /* if we get here, it means that the serverSocket was not the one
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
           selected.  Instead, one of the front ends was selected.
           find which one */
        curr = DLGetHead(frontendList);
        while (curr) {
          FrontEnd *fe = (FrontEnd*)DLE_VAL(curr);
          Port *port = &(fe->fn_port);

          /* this is lifted from postmaster.c */
          if (FD_ISSET(port->sock, &rmask)) {
            if (fe->fn_connected == false) {
                /* we have a message from a new frontEnd */
                status = PacketReceive(port, &port->buf, NON_BLOCKING);
                if (status == STATUS_OK) {
                  fe->fn_connected = true;
                  pq_init(port->sock);
                  fe->fn_Pfin = Pfin;
                  fe->fn_Pfout = Pfout;
                }
                else
                  fprintf(stderr,"Multiplexed backend: error in reading packets from %d\n", port->sock);
1367
               }
1368 1369 1370 1371 1372
            else  /* we have a query from an existing,  active FrontEnd */
              {
                Pfin = fe->fn_Pfin;
                Pfout = fe->fn_Pfout;
                currentFE = fe;
1373
              }
1374 1375 1376 1377 1378 1379
            if (fe->fn_done)
                {
                    Dlelem *c = curr;
                    curr = DLGetSucc(curr);
                    DLRemove(c);
                }
1380
             break;
1381 1382 1383 1384
              }
          else
            curr = DLGetSucc(curr);
        }
1385
    }
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
        /* ----------------
         *   (1) read a command. 
         * ----------------
         */
        memset(parser_input, 0, MAX_PARSE_BUFFER);

        firstchar = ReadCommand(parser_input, multiplexedBackend);
        /* process the command */
        switch (firstchar) {
            /* ----------------
             *  'F' indicates a fastpath call.
             *      XXX HandleFunctionRequest
             * ----------------
             */
        case 'F':
            IsEmptyQuery = false;
            
            /* start an xact for this function invocation */
            if (! Quiet) {
                time(&tim);
                printf("\tStartTransactionCommand() at %s\n", ctime(&tim));
            }
            
            StartTransactionCommand();
            HandleFunctionRequest();
            break;
            
            /* ----------------
             *  'Q' indicates a user query
             * ----------------
             */
        case 'Q':
            fflush(stdout);
            
1420
            if ( strspn(parser_input," \t\n") == strlen(parser_input)) {
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
                /* ----------------
                 *  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();
                
                pg_eval(parser_input, (char **) NULL, (Oid *) NULL, 0);
                
                if (ShowStats)
                    ShowUsage();
            }
            break;
            
            /* ----------------
             *  'X' means that the frontend is closing down the socket
             * ----------------
             */
        case 'X':
            IsEmptyQuery = true;
1456 1457
            if (multiplexedBackend) {
               FD_CLR(currentFE->fn_port.sock, &basemask);
1458
               currentFE->fn_done = true;
1459
               numFE--;
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
             }
            pq_close();
            break;
            
        default:
            elog(WARN,"unknown frontend message was recieved");
        }
        
        /* ----------------
         *   (3) commit the current transaction
         *
         *   Note: if we had an empty input buffer, then we didn't
         *   call pg_eval, so we don't bother to commit this transaction.
         * ----------------
         */
        if (! IsEmptyQuery) {
            if (! Quiet) {
                time(&tim);
                printf("\tCommitTransactionCommand() at %s\n", ctime(&tim));
            }
            CommitTransactionCommand();
            
        } else {
            if (IsUnderPostmaster || multiplexedBackend)
                NullCommand(Remote);
        }
        
1487 1488 1489 1490 1491
} /* infinite for-loop */
  exitpg(0);
  return 1;
}

1492
#ifndef HAVE_GETRUSAGE
1493
#include "rusagestub.h"
1494
#else /* HAVE_GETRUSAGE */
1495
#include <sys/resource.h>
1496
#endif /* HAVE_GETRUSAGE */
1497 1498 1499 1500 1501

struct rusage Save_r;
struct timeval Save_t;

void
1502
ResetUsage(void)
1503 1504 1505 1506 1507 1508 1509 1510 1511
{
    struct timezone tz;
    getrusage(RUSAGE_SELF, &Save_r);
    gettimeofday(&Save_t, &tz);
    ResetBufferUsage();
/*    ResetTupleCount(); */
}

void
1512
ShowUsage(void)
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
{
    struct timeval user, sys;
    struct timeval elapse_t;
    struct timezone tz;
    struct rusage r;
    
    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) {
1524 1525
        elapse_t.tv_sec--;
        elapse_t.tv_usec += 1000000;
1526 1527
    }
    if (r.ru_utime.tv_usec < Save_r.ru_utime.tv_usec) {
1528 1529
        r.ru_utime.tv_sec--;
        r.ru_utime.tv_usec += 1000000;
1530 1531
    }
    if (r.ru_stime.tv_usec < Save_r.ru_stime.tv_usec) {
1532 1533
        r.ru_stime.tv_sec--;
        r.ru_stime.tv_usec += 1000000;
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
    }
    
    /*
     *  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, 
B
Bryan Henderson 已提交
1547 1548 1549 1550 1551 1552 1553
            "!\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);
1554
    fprintf(StatFp,
B
Bryan Henderson 已提交
1555 1556 1557 1558 1559
            "!\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);
1560
#ifdef HAVE_GETRUSAGE
1561
    fprintf(StatFp, 
B
Bryan Henderson 已提交
1562 1563 1564 1565 1566
            "!\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);
1567
    fprintf(StatFp, 
B
Bryan Henderson 已提交
1568 1569 1570 1571 1572 1573
            "!\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);
1574
    fprintf(StatFp, 
B
Bryan Henderson 已提交
1575 1576 1577 1578 1579 1580
            "!\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);
1581
    fprintf(StatFp, 
B
Bryan Henderson 已提交
1582 1583 1584 1585
            "!\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);
1586
#endif /* HAVE_GETRUSAGE */
1587 1588 1589 1590
    fprintf(StatFp, "! postgres usage stats:\n");
    PrintBufferUsage(StatFp);
/*     DisplayTupleCount(StatFp); */
}