OSDN Git Service

Re-run pgindent, fixing a problem where comment lines after a blank
[pg-rex/syncrep.git] / src / backend / utils / init / postinit.c
index d06fa5d..b9b1f56 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.155 2005/07/31 17:19:19 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.159 2005/11/22 18:17:26 momjian Exp $
  *
  *
  *-------------------------------------------------------------------------
 #include <math.h>
 #include <unistd.h>
 
+#include "access/genam.h"
 #include "access/heapam.h"
 #include "catalog/catalog.h"
+#include "catalog/indexing.h"
 #include "catalog/namespace.h"
 #include "catalog/pg_authid.h"
 #include "catalog/pg_database.h"
@@ -45,6 +47,7 @@
 #include "utils/portal.h"
 #include "utils/relcache.h"
 #include "utils/syscache.h"
+#include "pgstat.h"
 
 
 static bool FindMyDatabase(const char *name, Oid *db_id, Oid *db_tablespace);
@@ -78,7 +81,7 @@ FindMyDatabase(const char *name, Oid *db_id, Oid *db_tablespace)
        char       *filename;
        FILE       *db_file;
        char            thisname[NAMEDATALEN];
-       TransactionId frozenxid;
+       TransactionId dummyxid;
 
        filename = database_getflatfilename();
        db_file = AllocateFile(filename, "r");
@@ -88,7 +91,8 @@ FindMyDatabase(const char *name, Oid *db_id, Oid *db_tablespace)
                                 errmsg("could not open file \"%s\": %m", filename)));
 
        while (read_pg_database_line(db_file, thisname, db_id,
-                                                                db_tablespace, &frozenxid))
+                                                                db_tablespace, &dummyxid,
+                                                                &dummyxid))
        {
                if (strcmp(thisname, name) == 0)
                {
@@ -108,7 +112,7 @@ FindMyDatabase(const char *name, Oid *db_id, Oid *db_tablespace)
  *
  * Since FindMyDatabase cannot lock pg_database, the information it read
  * could be stale; for example we might have attached to a database that's in
- * process of being destroyed by dropdb().  This routine is called after
+ * process of being destroyed by dropdb().     This routine is called after
  * we have all the locking and other infrastructure running --- now we can
  * check that we are really attached to a valid database.
  *
@@ -130,14 +134,14 @@ static void
 ReverifyMyDatabase(const char *name)
 {
        Relation        pgdbrel;
-       HeapScanDesc pgdbscan;
+       SysScanDesc pgdbscan;
        ScanKeyData key;
        HeapTuple       tup;
        Form_pg_database dbform;
 
        /*
-        * Because we grab RowShareLock here, we can be sure that dropdb()
-        * is not running in parallel with us (any more).
+        * Because we grab RowShareLock here, we can be sure that dropdb() is not
+        * running in parallel with us (any more).
         */
        pgdbrel = heap_open(DatabaseRelationId, RowShareLock);
 
@@ -146,9 +150,10 @@ ReverifyMyDatabase(const char *name)
                                BTEqualStrategyNumber, F_NAMEEQ,
                                NameGetDatum(name));
 
-       pgdbscan = heap_beginscan(pgdbrel, SnapshotNow, 1, &key);
+       pgdbscan = systable_beginscan(pgdbrel, DatabaseNameIndexId, true,
+                                                                 SnapshotNow, 1, &key);
 
-       tup = heap_getnext(pgdbscan, ForwardScanDirection);
+       tup = systable_getnext(pgdbscan);
        if (!HeapTupleIsValid(tup) ||
                HeapTupleGetOid(tup) != MyDatabaseId)
        {
@@ -156,17 +161,17 @@ ReverifyMyDatabase(const char *name)
                heap_close(pgdbrel, RowShareLock);
 
                /*
-                * The only real problem I could have created is to load dirty
-                * buffers for the dead database into shared buffer cache; if I
-                * did, some other backend will eventually try to write them and
-                * die in mdblindwrt.  Flush any such pages to forestall trouble.
+                * The only real problem I could have created is to load dirty buffers
+                * for the dead database into shared buffer cache; if I did, some
+                * other backend will eventually try to write them and die in
+                * mdblindwrt.  Flush any such pages to forestall trouble.
                 */
                DropBuffers(MyDatabaseId);
                /* Now I can commit hara-kiri with a clear conscience... */
                ereport(FATAL,
                                (errcode(ERRCODE_UNDEFINED_DATABASE),
-                                errmsg("database \"%s\", OID %u, has disappeared from pg_database",
-                                               name, MyDatabaseId)));
+                 errmsg("database \"%s\", OID %u, has disappeared from pg_database",
+                                name, MyDatabaseId)));
        }
 
        dbform = (Form_pg_database) GETSTRUCT(tup);
@@ -186,17 +191,18 @@ ReverifyMyDatabase(const char *name)
                if (!dbform->datallowconn)
                        ereport(FATAL,
                                        (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
-                                        errmsg("database \"%s\" is not currently accepting connections",
-                                                       name)));
+                        errmsg("database \"%s\" is not currently accepting connections",
+                                       name)));
+
                /*
                 * Check connection limit for this database.
                 *
                 * There is a race condition here --- we create our PGPROC before
-                * checking for other PGPROCs.  If two backends did this at about the
+                * checking for other PGPROCs.  If two backends did this at about the
                 * same time, they might both think they were over the limit, while
                 * ideally one should succeed and one fail.  Getting that to work
-                * exactly seems more trouble than it is worth, however; instead
-                * we just document that the connection limit is approximate.
+                * exactly seems more trouble than it is worth, however; instead we
+                * just document that the connection limit is approximate.
                 */
                if (dbform->datconnlimit >= 0 &&
                        !superuser() &&
@@ -208,8 +214,8 @@ ReverifyMyDatabase(const char *name)
        }
 
        /*
-        * OK, we're golden.  Next to-do item is to save the encoding
-        * info out of the pg_database tuple.
+        * OK, we're golden.  Next to-do item is to save the encoding info out of
+        * the pg_database tuple.
         */
        SetDatabaseEncoding(dbform->encoding);
        /* Record it as a GUC internal option, too */
@@ -237,7 +243,7 @@ ReverifyMyDatabase(const char *name)
                }
        }
 
-       heap_endscan(pgdbscan);
+       systable_endscan(pgdbscan);
        heap_close(pgdbrel, RowShareLock);
 }
 
@@ -259,8 +265,8 @@ InitCommunication(void)
        if (!IsUnderPostmaster)         /* postmaster already did this */
        {
                /*
-                * We're running a postgres bootstrap process or a standalone
-                * backend. Create private "shmem" and semaphores.
+                * We're running a postgres bootstrap process or a standalone backend.
+                * Create private "shmem" and semaphores.
                 */
                CreateSharedMemoryAndSemaphores(true, 0);
        }
@@ -287,7 +293,8 @@ BaseInit(void)
        InitCommunication();
        DebugFileOpen();
 
-       /* Do local initialization of storage and buffer managers */
+       /* Do local initialization of file, storage and buffer managers */
+       InitFileAccess();
        smgrinit();
        InitBufferPoolAccess();
 }
@@ -303,7 +310,7 @@ BaseInit(void)
  * The return value indicates whether the userID is a superuser.  (That
  * can only be tested inside a transaction, so we want to do it during
  * the startup transaction rather than doing a separate one in postgres.c.)
- * 
+ *
  * Note:
  *             Be very careful with the order of calls in the InitPostgres function.
  * --------------------------------
@@ -332,13 +339,12 @@ InitPostgres(const char *dbname, const char *username)
                char       *fullpath;
 
                /*
-                * Formerly we validated DataDir here, but now that's done
-                * earlier.
+                * Formerly we validated DataDir here, but now that's done earlier.
                 */
 
                /*
-                * Find oid and tablespace of the database we're about to open.
-                * Since we're not yet up and running we have to use the hackish
+                * Find oid and tablespace of the database we're about to open. Since
+                * we're not yet up and running we have to use the hackish
                 * FindMyDatabase.
                 */
                if (!FindMyDatabase(dbname, &MyDatabaseId, &MyDatabaseTableSpace))
@@ -358,8 +364,8 @@ InitPostgres(const char *dbname, const char *username)
                                                (errcode(ERRCODE_UNDEFINED_DATABASE),
                                                 errmsg("database \"%s\" does not exist",
                                                                dbname),
-                               errdetail("The database subdirectory \"%s\" is missing.",
-                                                 fullpath)));
+                                       errdetail("The database subdirectory \"%s\" is missing.",
+                                                         fullpath)));
                        else
                                ereport(FATAL,
                                                (errcode_for_file_access(),
@@ -377,17 +383,17 @@ InitPostgres(const char *dbname, const char *username)
         */
 
        /*
-        * Set up my per-backend PGPROC struct in shared memory.        (We need
-        * to know MyDatabaseId before we can do this, since it's entered into
-        * the PGPROC struct.)
+        * Set up my per-backend PGPROC struct in shared memory.        (We need to
+        * know MyDatabaseId before we can do this, since it's entered into the
+        * PGPROC struct.)
         */
        InitProcess();
 
        /*
         * Initialize my entry in the shared-invalidation manager's array of
-        * per-backend data.  (Formerly this came before InitProcess, but now
-        * it must happen after, because it uses MyProc.)  Once I have done
-        * this, I am visible to other backends!
+        * per-backend data.  (Formerly this came before InitProcess, but now it
+        * must happen after, because it uses MyProc.)  Once I have done this, I
+        * am visible to other backends!
         *
         * Sets up MyBackendId, a unique backend identifier.
         */
@@ -399,28 +405,44 @@ InitPostgres(const char *dbname, const char *username)
                elog(FATAL, "bad backend id: %d", MyBackendId);
 
        /*
-        * Initialize local process's access to XLOG.  In bootstrap case we
-        * may skip this since StartupXLOG() was run instead.
+        * bufmgr needs another initialization call too
+        */
+       InitBufferPoolBackend();
+
+       /*
+        * Initialize local process's access to XLOG.  In bootstrap case we may
+        * skip this since StartupXLOG() was run instead.
         */
        if (!bootstrap)
                InitXLOGAccess();
 
        /*
-        * Initialize the relation descriptor cache.  This must create at
-        * least the minimum set of "nailed-in" cache entries.  No catalog
-        * access happens here.
+        * Initialize the relation descriptor cache.  This must create at least
+        * the minimum set of "nailed-in" cache entries.  No catalog access
+        * happens here.
         */
        RelationCacheInitialize();
 
        /*
-        * Initialize all the system catalog caches.  Note that no catalog
-        * access happens here; we only set up the cache structure.
+        * Initialize all the system catalog caches.  Note that no catalog access
+        * happens here; we only set up the cache structure.
         */
        InitCatalogCache();
 
        /* Initialize portal manager */
        EnablePortalManager();
 
+       /*
+        * Set up process-exit callback to do pre-shutdown cleanup.  This has to
+        * be after we've initialized all the low-level modules like the buffer
+        * manager, because during shutdown this has to run before the low-level
+        * modules start to close down.  On the other hand, we want it in place
+        * before we begin our first transaction --- if we fail during the
+        * initialization transaction, as is entirely possible, we need the
+        * AbortTransaction call to clean up.
+        */
+       on_shmem_exit(ShutdownPostgres, 0);
+
        /* start a new transaction here before access to db */
        if (!bootstrap)
                StartTransactionCommand();
@@ -456,17 +478,18 @@ InitPostgres(const char *dbname, const char *username)
        }
 
        /*
-        * Unless we are bootstrapping, double-check that InitMyDatabaseInfo()
-        * got a correct result.  We can't do this until all the
-        * database-access infrastructure is up.
+        * Unless we are bootstrapping, double-check that InitMyDatabaseInfo() got
+        * a correct result.  We can't do this until all the database-access
+        * infrastructure is up.  (Also, it wants to know if the user is a
+        * superuser, so the above stuff has to happen first.)
         */
        if (!bootstrap)
                ReverifyMyDatabase(dbname);
 
        /*
         * Final phase of relation cache startup: write a new cache file if
-        * necessary.  This is done after ReverifyMyDatabase to avoid writing
-        * cache file into a dead database.
+        * necessary.  This is done after ReverifyMyDatabase to avoid writing a
+        * cache file into a dead database.
         */
        RelationCacheInitializePhase3();
 
@@ -502,14 +525,9 @@ InitPostgres(const char *dbname, const char *username)
        /* initialize client encoding */
        InitializeClientEncoding();
 
-       /*
-        * Set up process-exit callback to do pre-shutdown cleanup.  This
-        * should be last because we want shmem_exit to call this routine
-        * before the exit callbacks that are registered by buffer manager,
-        * lock manager, etc. We need to run this code before we close down
-        * database access!
-        */
-       on_shmem_exit(ShutdownPostgres, 0);
+       /* initialize statistics collection for this backend */
+       if (IsUnderPostmaster)
+               pgstat_bestart();
 
        /* close the transaction we started above */
        if (!bootstrap)
@@ -518,12 +536,11 @@ InitPostgres(const char *dbname, const char *username)
        return am_superuser;
 }
 
+
 /*
  * Backend-shutdown callback.  Do cleanup that we want to be sure happens
  * before all the supporting modules begin to nail their doors shut via
- * their own callbacks.  Note that because this has to be registered very
- * late in startup, it will not get called if we suffer a failure *during*
- * startup.
+ * their own callbacks.
  *
  * User-level cleanup, such as temp-relation removal and UNLISTEN, happens
  * via separate callbacks that execute before this one.  We don't combine the
@@ -533,32 +550,19 @@ InitPostgres(const char *dbname, const char *username)
 static void
 ShutdownPostgres(int code, Datum arg)
 {
-       /*
-        * These operations are really just a minimal subset of
-        * AbortTransaction(). We don't want to do any inessential cleanup,
-        * since that just raises the odds of failure --- but there's some
-        * stuff we need to do.
-        *
-        * Release any LW locks, buffer content locks, and buffer pins we might be
-        * holding.  This is a kluge to improve the odds that we won't get into a
-        * self-made stuck-lock scenario while trying to shut down.  We *must*
-        * release buffer pins to make it safe to do file deletion, since we
-        * might have some pins on pages of the target files.
-        */
-       LWLockReleaseAll();
-       AtProcExit_Buffers();
-       AtProcExit_LocalBuffers();
+       /* Make sure we've killed any active transaction */
+       AbortOutOfAnyTransaction();
 
        /*
-        * In case a transaction is open, delete any files it created.  This
-        * has to happen before bufmgr shutdown, so having smgr register a
-        * callback for it wouldn't work.
+        * User locks are not released by transaction end, so be sure to release
+        * them explicitly.
         */
-       smgrDoPendingDeletes(false);    /* delete as though aborting xact */
+#ifdef USER_LOCKS
+       LockReleaseAll(USER_LOCKMETHOD, true);
+#endif
 }
 
 
-
 /*
  * Returns true if at least one role is defined in this database cluster.
  */