xact.c 45.0 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * xact.c
4
 *	  top level transaction system support routines
5
 *
B
Add:  
Bruce Momjian 已提交
6 7
 * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
 * Portions Copyright (c) 1994, Regents of the University of California
8 9 10
 *
 *
 * IDENTIFICATION
11
 *	  $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.82 2000/11/10 00:33:08 tgl Exp $
12
 *
13
 * NOTES
14
 *		Transaction aborts can now occur two ways:
15
 *
16 17
 *		1)	system dies from some internal cause  (Assert, etc..)
 *		2)	user types abort
18
 *
19 20
 *		These two cases used to be treated identically, but now
 *		we need to distinguish them.  Why?	consider the following
21
 *		two situations:
22
 *
23 24 25 26 27
 *				case 1							case 2
 *				------							------
 *		1) user types BEGIN				1) user types BEGIN
 *		2) user does something			2) user does something
 *		3) user does not like what		3) system aborts for some reason
28
 *		   she sees and types ABORT
29
 *
30 31 32 33 34
 *		In case 1, we want to abort the transaction and return to the
 *		default state.	In case 2, there may be more commands coming
 *		our way which are part of the same transaction block and we have
 *		to ignore these commands until we see an END transaction.
 *		(or an ABORT! --djm)
35
 *
36 37 38 39
 *		Internal aborts are now handled by AbortTransactionBlock(), just as
 *		they always have been, and user aborts are now handled by
 *		UserAbortTransactionBlock().  Both of them rely on AbortTransaction()
 *		to do all the real work.  The only difference is what state we
B
Bruce Momjian 已提交
40
 *		enter after AbortTransaction() does its work:
41
 *
42 43
 *		* AbortTransactionBlock() leaves us in TBLOCK_ABORT and
 *		* UserAbortTransactionBlock() leaves us in TBLOCK_ENDABORT
44
 *
45 46 47 48 49 50 51 52 53
 *		Low-level transaction abort handling is divided into two phases:
 *		* AbortTransaction() executes as soon as we realize the transaction
 *		  has failed.  It should release all shared resources (locks etc)
 *		  so that we do not delay other backends unnecessarily.
 *		* CleanupTransaction() executes when we finally see a user COMMIT
 *		  or ROLLBACK command; it cleans things up and gets us out of
 *		  the transaction internally.  In particular, we mustn't destroy
 *		  TransactionCommandContext until this point.
 *
54 55 56 57 58 59 60 61
 *	 NOTES
 *		This file is an attempt at a redesign of the upper layer
 *		of the V1 transaction system which was too poorly thought
 *		out to describe.  This new system hopes to be both simpler
 *		in design, simpler to extend and needs to contain added
 *		functionality to solve problems beyond the scope of the V1
 *		system.  (In particuler, communication of transaction
 *		information between parallel backends has to be supported)
62
 *
63
 *		The essential aspects of the transaction system are:
64
 *
65 66 67 68 69
 *				o  transaction id generation
 *				o  transaction log updating
 *				o  memory cleanup
 *				o  cache invalidation
 *				o  lock cleanup
70
 *
71 72 73 74 75
 *		Hence, the functional division of the transaction code is
 *		based on what of the above things need to be done during
 *		a start/commit/abort transaction.  For instance, the
 *		routine AtCommit_Memory() takes care of all the memory
 *		cleanup stuff done at commit time.
76
 *
77
 *		The code is layered as follows:
78
 *
79 80 81
 *				StartTransaction
 *				CommitTransaction
 *				AbortTransaction
82
 *				CleanupTransaction
83
 *
84 85 86
 *		are provided to do the lower level work like recording
 *		the transaction status in the log and doing memory cleanup.
 *		above these routines are another set of functions:
87
 *
88 89 90
 *				StartTransactionCommand
 *				CommitTransactionCommand
 *				AbortCurrentTransaction
91
 *
92 93 94 95 96 97 98 99 100
 *		These are the routines used in the postgres main processing
 *		loop.  They are sensitive to the current transaction block state
 *		and make calls to the lower level routines appropriately.
 *
 *		Support for transaction blocks is provided via the functions:
 *
 *				StartTransactionBlock
 *				CommitTransactionBlock
 *				AbortTransactionBlock
101
 *
102 103 104 105
 *		These are invoked only in responce to a user "BEGIN", "END",
 *		or "ABORT" command.  The tricky part about these functions
 *		is that they are called within the postgres main loop, in between
 *		the StartTransactionCommand() and CommitTransactionCommand().
106
 *
107
 *		For example, consider the following sequence of user commands:
108
 *
109 110 111 112
 *		1)		begin
 *		2)		retrieve (foo.all)
 *		3)		append foo (bar = baz)
 *		4)		end
113
 *
114 115
 *		in the main processing loop, this results in the following
 *		transaction sequence:
116
 *
117 118 119 120
 *			/	StartTransactionCommand();
 *		1) /	ProcessUtility();				<< begin
 *		   \		StartTransactionBlock();
 *			\	CommitTransactionCommand();
121
 *
122 123 124
 *			/	StartTransactionCommand();
 *		2) <	ProcessQuery();					<< retrieve (foo.all)
 *			\	CommitTransactionCommand();
125
 *
126 127 128
 *			/	StartTransactionCommand();
 *		3) <	ProcessQuery();					<< append foo (bar = baz)
 *			\	CommitTransactionCommand();
129
 *
130 131 132 133
 *			/	StartTransactionCommand();
 *		4) /	ProcessUtility();				<< end
 *		   \		CommitTransactionBlock();
 *			\	CommitTransactionCommand();
134
 *
135 136 137 138 139 140
 *		The point of this example is to demonstrate the need for
 *		StartTransactionCommand() and CommitTransactionCommand() to
 *		be state smart -- they should do nothing in between the calls
 *		to StartTransactionBlock() and EndTransactionBlock() and
 *		outside these calls they need to do normal start/commit
 *		processing.
141
 *
142 143 144 145
 *		Furthermore, suppose the "retrieve (foo.all)" caused an abort
 *		condition.	We would then want to abort the transaction and
 *		ignore all subsequent commands up to the "end".
 *		-cim 3/23/90
146 147 148
 *
 *-------------------------------------------------------------------------
 */
M
-Wall'd  
Marc G. Fournier 已提交
149

150 151 152 153 154
/*
 * Large object clean up added in CommitTransaction() to prevent buffer leaks.
 * [PA, 7/17/98]
 * [PA] is Pascal André <andre@via.ecp.fr>
 */
155
#include "postgres.h"
M
-Wall'd  
Marc G. Fournier 已提交
156

157 158
#include <sys/time.h>

159
#include "access/nbtree.h"
160
#include "catalog/heap.h"
H
Hiroshi Inoue 已提交
161
#include "catalog/index.h"
162 163
#include "commands/async.h"
#include "commands/sequence.h"
164
#include "commands/trigger.h"
165
#include "executor/spi.h"
166
#include "libpq/be-fsstubs.h"
167
#include "miscadmin.h"
B
Bruce Momjian 已提交
168
#include "storage/proc.h"
169
#include "storage/sinval.h"
170
#include "storage/smgr.h"
B
Bruce Momjian 已提交
171
#include "utils/inval.h"
172
#include "utils/memutils.h"
B
Bruce Momjian 已提交
173
#include "utils/portal.h"
174
#include "utils/catcache.h"
B
Bruce Momjian 已提交
175
#include "utils/relcache.h"
176
#include "utils/temprel.h"
177

178
extern bool SharedBufferChanged;
179

V
WAL  
Vadim B. Mikheev 已提交
180 181
void RecordTransactionCommit(void);

182 183 184 185
static void AbortTransaction(void);
static void AtAbort_Cache(void);
static void AtAbort_Locks(void);
static void AtAbort_Memory(void);
186
static void AtCleanup_Memory(void);
187
static void AtCommit_Cache(void);
H
 
Hiroshi Inoue 已提交
188
static void AtCommit_LocalCache(void);
189 190 191 192 193
static void AtCommit_Locks(void);
static void AtCommit_Memory(void);
static void AtStart_Cache(void);
static void AtStart_Locks(void);
static void AtStart_Memory(void);
194
static void CleanupTransaction(void);
195 196 197
static void CommitTransaction(void);
static void RecordTransactionAbort(void);
static void StartTransaction(void);
198

199
/* ----------------
200
 *		global variables holding the current transaction state.
201
 *
202 203 204 205
 *		Note: when we are running several slave processes, the
 *			  current transaction state data is copied into shared memory
 *			  and the CurrentTransactionState pointer changed to
 *			  point to the shared copy.  All this occurrs in slaves.c
206 207 208
 * ----------------
 */
TransactionStateData CurrentTransactionStateData = {
209 210
	0,							/* transaction id */
	FirstCommandId,				/* command id */
211
	0,							/* scan command id */
212 213 214 215
	0x0,						/* start time */
	TRANS_DEFAULT,				/* transaction state */
	TBLOCK_DEFAULT				/* transaction block state */
};
216

217
TransactionState CurrentTransactionState = &CurrentTransactionStateData;
218

B
Bruce Momjian 已提交
219 220
int			DefaultXactIsoLevel = XACT_READ_COMMITTED;
int			XactIsoLevel;
V
Vadim B. Mikheev 已提交
221

222 223 224
#ifdef XLOG
#include "access/xlogutils.h"

V
WAL  
Vadim B. Mikheev 已提交
225
int			CommitDelay = 5;	/* 1/200 sec */
226 227 228

void		xact_redo(XLogRecPtr lsn, XLogRecord *record);
void		xact_undo(XLogRecPtr lsn, XLogRecord *record);
V
WAL  
Vadim B. Mikheev 已提交
229
void		xact_desc(char *buf, uint8 xl_info, char* rec);
230 231 232 233 234 235

static void (*_RollbackFunc)(void*) = NULL;
static void *_RollbackData = NULL;

#endif

236
/* ----------------
237
 *		info returned when the system is disabled
238 239 240 241
 *
 * Apparently a lot of this code is inherited from other prototype systems.
 * For DisabledStartTime, use a symbolic value to make the relationships clearer.
 * The old value of 1073741823 corresponds to a date in y2004, which is coming closer
242 243 244
 *	every day. It appears that if we return a value guaranteed larger than
 *	any real time associated with a transaction then comparisons in other
 *	modules will still be correct. Let's use BIG_ABSTIME for this. tgl 2/14/97
245
 *
246 247 248 249
 *		Note:  I have no idea what the significance of the
 *			   1073741823 in DisabledStartTime.. I just carried
 *			   this over when converting things from the old
 *			   V1 transaction system.  -cim 3/18/90
250 251
 * ----------------
 */
252
TransactionId DisabledTransactionId = (TransactionId) -1;
253

254
CommandId	DisabledCommandId = (CommandId) -1;
255

256
AbsoluteTime DisabledStartTime = (AbsoluteTime) BIG_ABSTIME;	/* 1073741823; */
257

258
/* ----------------
259
 *		overflow flag
260 261
 * ----------------
 */
262
bool		CommandIdCounterOverflowFlag;
263

264
/* ----------------
265 266 267
 *		catalog creation transaction bootstrapping flag.
 *		This should be eliminated and added to the transaction
 *		state stuff.  -cim 3/19/90
268 269
 * ----------------
 */
270
bool		AMI_OVERRIDE = false;
271

272
/* ----------------------------------------------------------------
273
 *					 transaction state accessors
274 275
 * ----------------------------------------------------------------
 */
276

277
/* --------------------------------
278
 *		TranactionFlushEnabled()
279
 *		SetTransactionFlushEnabled()
280
 *
281 282 283 284 285 286
 *		These are used to test and set the "TransactionFlushState"
 *		varable.  If this variable is true (the default), then
 *		the system will flush all dirty buffers to disk at the end
 *		of each transaction.   If false then we are assuming the
 *		buffer pool resides in stable main memory, in which case we
 *		only do writes as necessary.
287 288
 * --------------------------------
 */
289
static int	TransactionFlushState = 1;
290 291

int
292
TransactionFlushEnabled(void)
293 294
{
	return TransactionFlushState;
295 296
}

297
#ifdef NOT_USED
298 299
void
SetTransactionFlushEnabled(bool state)
300 301
{
	TransactionFlushState = (state == true);
302
}
303

304 305

/* --------------------------------
306
 *		IsTransactionState
307
 *
308 309
 *		This returns true if we are currently running a query
 *		within an executing transaction.
310 311 312
 * --------------------------------
 */
bool
313
IsTransactionState(void)
314
{
315 316 317 318
	TransactionState s = CurrentTransactionState;

	switch (s->state)
	{
319 320 321 322 323 324 325 326 327 328 329 330
		case TRANS_DEFAULT:
			return false;
		case TRANS_START:
			return true;
		case TRANS_INPROGRESS:
			return true;
		case TRANS_COMMIT:
			return true;
		case TRANS_ABORT:
			return true;
		case TRANS_DISABLED:
			return false;
331 332 333 334 335
	}

	/*
	 * Shouldn't get here, but lint is not happy with this...
	 */
336
	return false;
337
}
B
Bruce Momjian 已提交
338

339
#endif
340 341

/* --------------------------------
342
 *		IsAbortedTransactionBlockState
343
 *
344 345
 *		This returns true if we are currently running a query
 *		within an aborted transaction block.
346 347 348
 * --------------------------------
 */
bool
349
IsAbortedTransactionBlockState(void)
350
{
351 352 353 354 355 356
	TransactionState s = CurrentTransactionState;

	if (s->blockState == TBLOCK_ABORT)
		return true;

	return false;
357 358 359
}

/* --------------------------------
360
 *		OverrideTransactionSystem
361
 *
362 363 364 365
 *		This is used to temporarily disable the transaction
 *		processing system in order to do initialization of
 *		the transaction system data structures and relations
 *		themselves.
366 367
 * --------------------------------
 */
368
int			SavedTransactionState;
369 370 371 372

void
OverrideTransactionSystem(bool flag)
{
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	TransactionState s = CurrentTransactionState;

	if (flag == true)
	{
		if (s->state == TRANS_DISABLED)
			return;

		SavedTransactionState = s->state;
		s->state = TRANS_DISABLED;
	}
	else
	{
		if (s->state != TRANS_DISABLED)
			return;

		s->state = SavedTransactionState;
	}
390 391 392
}

/* --------------------------------
393
 *		GetCurrentTransactionId
394
 *
395 396
 *		This returns the id of the current transaction, or
 *		the id of the "disabled" transaction.
397 398 399
 * --------------------------------
 */
TransactionId
400
GetCurrentTransactionId(void)
401
{
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
	TransactionState s = CurrentTransactionState;

	/* ----------------
	 *	if the transaction system is disabled, we return
	 *	the special "disabled" transaction id.
	 * ----------------
	 */
	if (s->state == TRANS_DISABLED)
		return (TransactionId) DisabledTransactionId;

	/* ----------------
	 *	otherwise return the current transaction id.
	 * ----------------
	 */
	return (TransactionId) s->transactionIdData;
417 418 419 420
}


/* --------------------------------
421
 *		GetCurrentCommandId
422 423 424
 * --------------------------------
 */
CommandId
425
GetCurrentCommandId(void)
426
{
427 428 429 430 431 432 433 434 435 436 437
	TransactionState s = CurrentTransactionState;

	/* ----------------
	 *	if the transaction system is disabled, we return
	 *	the special "disabled" command id.
	 * ----------------
	 */
	if (s->state == TRANS_DISABLED)
		return (CommandId) DisabledCommandId;

	return s->commandId;
438 439
}

440
CommandId
441
GetScanCommandId(void)
442
{
443 444 445 446 447 448 449 450 451 452 453
	TransactionState s = CurrentTransactionState;

	/* ----------------
	 *	if the transaction system is disabled, we return
	 *	the special "disabled" command id.
	 * ----------------
	 */
	if (s->state == TRANS_DISABLED)
		return (CommandId) DisabledCommandId;

	return s->scanCommandId;
454 455
}

456 457

/* --------------------------------
458
 *		GetCurrentTransactionStartTime
459 460 461
 * --------------------------------
 */
AbsoluteTime
462
GetCurrentTransactionStartTime(void)
463
{
464 465 466 467 468 469 470 471 472 473 474
	TransactionState s = CurrentTransactionState;

	/* ----------------
	 *	if the transaction system is disabled, we return
	 *	the special "disabled" starting time.
	 * ----------------
	 */
	if (s->state == TRANS_DISABLED)
		return (AbsoluteTime) DisabledStartTime;

	return s->startTime;
475 476 477 478
}


/* --------------------------------
479
 *		TransactionIdIsCurrentTransactionId
480 481 482 483 484
 * --------------------------------
 */
bool
TransactionIdIsCurrentTransactionId(TransactionId xid)
{
485 486 487 488 489 490 491
	TransactionState s = CurrentTransactionState;

	if (AMI_OVERRIDE)
		return false;

	return (bool)
		TransactionIdEquals(xid, s->transactionIdData);
492 493 494 495
}


/* --------------------------------
496
 *		CommandIdIsCurrentCommandId
497 498 499 500 501
 * --------------------------------
 */
bool
CommandIdIsCurrentCommandId(CommandId cid)
{
502 503 504 505 506
	TransactionState s = CurrentTransactionState;

	if (AMI_OVERRIDE)
		return false;

507
	return (cid == s->commandId) ? true : false;
508 509
}

510 511 512
bool
CommandIdGEScanCommandId(CommandId cid)
{
513 514 515 516 517
	TransactionState s = CurrentTransactionState;

	if (AMI_OVERRIDE)
		return false;

518
	return (cid >= s->scanCommandId) ? true : false;
519 520
}

521 522

/* --------------------------------
523
 *		ClearCommandIdCounterOverflowFlag
524 525
 * --------------------------------
 */
526
#ifdef NOT_USED
527
void
528
ClearCommandIdCounterOverflowFlag(void)
529
{
530
	CommandIdCounterOverflowFlag = false;
531
}
532

533
#endif
534 535

/* --------------------------------
536
 *		CommandCounterIncrement
537 538 539
 * --------------------------------
 */
void
540
CommandCounterIncrement(void)
541
{
542 543 544 545
	CurrentTransactionStateData.commandId += 1;
	if (CurrentTransactionStateData.commandId == FirstCommandId)
	{
		CommandIdCounterOverflowFlag = true;
546
		elog(ERROR, "You may only have 2^32-1 commands per transaction");
547 548
	}

549
	CurrentTransactionStateData.scanCommandId = CurrentTransactionStateData.commandId;
550

H
 
Hiroshi Inoue 已提交
551
	/*
552 553
	 * make cache changes visible to me.  AtCommit_LocalCache() instead of
	 * AtCommit_Cache() is called here.
H
 
Hiroshi Inoue 已提交
554 555
	 */
	AtCommit_LocalCache();
556
	AtStart_Cache();
V
Vadim B. Mikheev 已提交
557

558 559
}

560 561
void
SetScanCommandId(CommandId savedId)
562 563
{

564 565
	CurrentTransactionStateData.scanCommandId = savedId;

566 567
}

568
/* ----------------------------------------------------------------
569
 *						initialization stuff
570 571 572
 * ----------------------------------------------------------------
 */
void
573
InitializeTransactionSystem(void)
574
{
575
	InitializeTransactionLog();
576 577 578
}

/* ----------------------------------------------------------------
579
 *						StartTransaction stuff
580 581 582 583
 * ----------------------------------------------------------------
 */

/* --------------------------------
584
 *		AtStart_Cache
585 586
 * --------------------------------
 */
587
static void
588
AtStart_Cache(void)
589
{
590
	DiscardInvalid();
591 592 593
}

/* --------------------------------
594
 *		AtStart_Locks
595 596
 * --------------------------------
 */
597
static void
598
AtStart_Locks(void)
599
{
600 601 602 603 604 605 606

	/*
	 * at present, it is unknown to me what belongs here -cim 3/18/90
	 *
	 * There isn't anything to do at the start of a xact for locks. -mer
	 * 5/24/92
	 */
607 608 609
}

/* --------------------------------
610
 *		AtStart_Memory
611 612
 * --------------------------------
 */
613
static void
614
AtStart_Memory(void)
615
{
616 617 618 619 620 621
	/* ----------------
	 *	We shouldn't have any transaction contexts already.
	 * ----------------
	 */
	Assert(TopTransactionContext == NULL);
	Assert(TransactionCommandContext == NULL);
622 623

	/* ----------------
624
	 *	Create a toplevel context for the transaction.
625 626
	 * ----------------
	 */
627 628 629 630 631 632
	TopTransactionContext =
		AllocSetContextCreate(TopMemoryContext,
							  "TopTransactionContext",
							  ALLOCSET_DEFAULT_MINSIZE,
							  ALLOCSET_DEFAULT_INITSIZE,
							  ALLOCSET_DEFAULT_MAXSIZE);
633 634

	/* ----------------
635
	 *	Create a statement-level context and make it active.
636 637
	 * ----------------
	 */
638 639 640 641 642 643 644
	TransactionCommandContext =
		AllocSetContextCreate(TopTransactionContext,
							  "TransactionCommandContext",
							  ALLOCSET_DEFAULT_MINSIZE,
							  ALLOCSET_DEFAULT_INITSIZE,
							  ALLOCSET_DEFAULT_MAXSIZE);
	MemoryContextSwitchTo(TransactionCommandContext);
645 646 647 648
}


/* ----------------------------------------------------------------
649
 *						CommitTransaction stuff
650 651 652 653
 * ----------------------------------------------------------------
 */

/* --------------------------------
654
 *		RecordTransactionCommit
655
 *
656 657 658 659 660
 *		Note: the two calls to BufferManagerFlush() exist to ensure
 *			  that data pages are written before log pages.  These
 *			  explicit calls should be replaced by a more efficient
 *			  ordered page write scheme in the buffer manager
 *			  -cim 3/18/90
661 662
 * --------------------------------
 */
V
WAL  
Vadim B. Mikheev 已提交
663 664
void
RecordTransactionCommit()
665
{
666 667
	TransactionId xid;
	int			leak;
668 669 670 671 672 673 674

	/* ----------------
	 *	get the current transaction id
	 * ----------------
	 */
	xid = GetCurrentTransactionId();

675 676 677
	/*
	 * flush the buffer manager pages.	Note: if we have stable main
	 * memory, dirty shared buffers are not flushed plai 8/7/90
678 679 680
	 */
	leak = BufferPoolCheckLeak();

V
Vadim B. Mikheev 已提交
681
#ifdef XLOG
V
Vadim B. Mikheev 已提交
682
	if (MyLastRecPtr.xrecoff != 0)
V
Vadim B. Mikheev 已提交
683 684 685 686 687
	{
		xl_xact_commit	xlrec;
		struct timeval	delay;
		XLogRecPtr		recptr;

V
WAL  
Vadim B. Mikheev 已提交
688 689
		BufmgrCommit();

V
Vadim B. Mikheev 已提交
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
		xlrec.xtime = time(NULL);
		/*
		 * MUST SAVE ARRAY OF RELFILENODE-s TO DROP
		 */
		recptr = XLogInsert(RM_XACT_ID, XLOG_XACT_COMMIT,
			(char*) &xlrec, SizeOfXactCommit, NULL, 0);

		/* 
		 * Sleep before commit! So we can flush more than one
		 * commit records per single fsync.
		 */
		delay.tv_sec = 0;
		delay.tv_usec = CommitDelay;
		(void) select(0, NULL, NULL, NULL, &delay);
		XLogFlush(recptr);
		MyLastRecPtr.xrecoff = 0;

		TransactionIdCommit(xid);

		MyProc->logRec.xrecoff = 0;
	}
#else
712
	/*
713 714
	 * If no one shared buffer was changed by this transaction then we
	 * don't flush shared buffers and don't record commit status.
715
	 */
716 717
	if (SharedBufferChanged)
	{
V
Vadim B. Mikheev 已提交
718
		FlushBufferPool();
719
		if (leak)
720
			ResetBufferPool(true);
721 722

		/*
723 724
		 * have the transaction access methods record the status of this
		 * transaction id in the pg_log relation.
725 726 727 728
		 */
		TransactionIdCommit(xid);

		/*
729
		 * Now write the log info to the disk too.
730 731
		 */
		leak = BufferPoolCheckLeak();
V
Vadim B. Mikheev 已提交
732
		FlushBufferPool();
733
	}
734
#endif
735 736

	if (leak)
737
		ResetBufferPool(true);
738 739 740 741
}


/* --------------------------------
742
 *		AtCommit_Cache
743 744
 * --------------------------------
 */
745
static void
746
AtCommit_Cache(void)
747
{
748
	/* ----------------
H
 
Hiroshi Inoue 已提交
749
	 * Make catalog changes visible to all backend.
750 751 752
	 * ----------------
	 */
	RegisterInvalid(true);
753 754
}

H
 
Hiroshi Inoue 已提交
755 756 757 758 759
/* --------------------------------
 *		AtCommit_LocalCache
 * --------------------------------
 */
static void
760
AtCommit_LocalCache(void)
H
 
Hiroshi Inoue 已提交
761 762 763 764 765 766 767 768
{
	/* ----------------
	 * Make catalog changes visible to me for the next command.
	 * ----------------
	 */
	ImmediateLocalInvalidation(true);
}

769
/* --------------------------------
770
 *		AtCommit_Locks
771 772
 * --------------------------------
 */
773
static void
774
AtCommit_Locks(void)
775
{
776 777 778 779 780 781 782
	/* ----------------
	 *	XXX What if ProcReleaseLocks fails?  (race condition?)
	 *
	 *	Then you're up a creek! -mer 5/24/92
	 * ----------------
	 */
	ProcReleaseLocks();
783 784 785
}

/* --------------------------------
786
 *		AtCommit_Memory
787 788
 * --------------------------------
 */
789
static void
790
AtCommit_Memory(void)
791
{
792
	/* ----------------
793 794 795
	 *	Now that we're "out" of a transaction, have the
	 *	system allocate things in the top memory context instead
	 *	of per-transaction contexts.
796 797
	 * ----------------
	 */
798
	MemoryContextSwitchTo(TopMemoryContext);
799 800

	/* ----------------
801
	 *	Release all transaction-local memory.
802 803
	 * ----------------
	 */
804
	Assert(TopTransactionContext != NULL);
805 806 807
	MemoryContextDelete(TopTransactionContext);
	TopTransactionContext = NULL;
	TransactionCommandContext = NULL;
808 809 810
}

/* ----------------------------------------------------------------
811
 *						AbortTransaction stuff
812 813 814 815
 * ----------------------------------------------------------------
 */

/* --------------------------------
816
 *		RecordTransactionAbort
817 818
 * --------------------------------
 */
819
static void
820
RecordTransactionAbort(void)
821
{
822
	TransactionId xid;
823 824 825 826 827 828 829

	/* ----------------
	 *	get the current transaction id
	 * ----------------
	 */
	xid = GetCurrentTransactionId();

830 831 832 833
	/*
	 * Have the transaction access methods record the status of this
	 * transaction id in the pg_log relation. We skip it if no one shared
	 * buffer was changed by this transaction.
834
	 */
835
	if (SharedBufferChanged && !TransactionIdDidCommit(xid))
836
		TransactionIdAbort(xid);
837

838
#ifdef XLOG
V
Vadim B. Mikheev 已提交
839
	if (MyLastRecPtr.xrecoff != 0)
840 841 842 843 844 845 846
	{
		xl_xact_abort	xlrec;
		XLogRecPtr		recptr;

		xlrec.xtime = time(NULL);
		recptr = XLogInsert(RM_XACT_ID, XLOG_XACT_ABORT,
			(char*) &xlrec, SizeOfXactAbort, NULL, 0);
V
Vadim B. Mikheev 已提交
847 848

		MyProc->logRec.xrecoff = 0;
849 850 851
	}
#endif

852 853 854 855
	/*
	 * Tell bufmgr and smgr to release resources.
	 */
	ResetBufferPool(false);		/* false -> is abort */
856 857 858
}

/* --------------------------------
859
 *		AtAbort_Cache
860 861
 * --------------------------------
 */
862
static void
863
AtAbort_Cache(void)
864
{
865
	RelationCacheAbort();
866
	RegisterInvalid(false);
867 868 869
}

/* --------------------------------
870
 *		AtAbort_Locks
871 872
 * --------------------------------
 */
873
static void
874
AtAbort_Locks(void)
875
{
876 877 878 879 880 881 882
	/* ----------------
	 *	XXX What if ProcReleaseLocks() fails?  (race condition?)
	 *
	 *	Then you're up a creek without a paddle! -mer
	 * ----------------
	 */
	ProcReleaseLocks();
883 884 885 886
}


/* --------------------------------
887
 *		AtAbort_Memory
888 889
 * --------------------------------
 */
890
static void
891
AtAbort_Memory(void)
892
{
893 894
	/* ----------------
	 *	Make sure we are in a valid context (not a child of
895 896 897
	 *	TransactionCommandContext...).  Note that it is possible
	 *	for this code to be called when we aren't in a transaction
	 *	at all; go directly to TopMemoryContext in that case.
898 899
	 * ----------------
	 */
900 901 902
	if (TransactionCommandContext != NULL)
	{
		MemoryContextSwitchTo(TransactionCommandContext);
903

904 905 906 907 908 909 910 911 912 913 914
		/* ----------------
		 *	We do not want to destroy transaction contexts yet,
		 *	but it should be OK to delete any command-local memory.
		 * ----------------
		 */
		MemoryContextResetAndDeleteChildren(TransactionCommandContext);
	}
	else
	{
		MemoryContextSwitchTo(TopMemoryContext);
	}
915 916 917 918 919 920 921
}


/* ----------------------------------------------------------------
 *						CleanupTransaction stuff
 * ----------------------------------------------------------------
 */
922

923 924 925 926 927
/* --------------------------------
 *		AtCleanup_Memory
 * --------------------------------
 */
static void
928
AtCleanup_Memory(void)
929
{
930
	/* ----------------
931 932
	 *	Now that we're "out" of a transaction, have the
	 *	system allocate things in the top memory context instead
933
	 *	of per-transaction contexts.
934 935 936
	 * ----------------
	 */
	MemoryContextSwitchTo(TopMemoryContext);
937 938 939 940 941

	/* ----------------
	 *	Release all transaction-local memory.
	 * ----------------
	 */
942 943
	if (TopTransactionContext != NULL)
		MemoryContextDelete(TopTransactionContext);
944 945
	TopTransactionContext = NULL;
	TransactionCommandContext = NULL;
946 947
}

948

949
/* ----------------------------------------------------------------
950
 *						interface routines
951 952 953 954
 * ----------------------------------------------------------------
 */

/* --------------------------------
955
 *		StartTransaction
956 957 958
 *
 * --------------------------------
 */
959
static void
960
StartTransaction(void)
961
{
962 963
	TransactionState s = CurrentTransactionState;

V
Vadim B. Mikheev 已提交
964
	FreeXactSnapshot();
965
	XactIsoLevel = DefaultXactIsoLevel;
V
Vadim B. Mikheev 已提交
966

967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
	/* ----------------
	 *	Check the current transaction state.  If the transaction system
	 *	is switched off, or if we're already in a transaction, do nothing.
	 *	We're already in a transaction when the monitor sends a null
	 *	command to the backend to flush the comm channel.  This is a
	 *	hacky fix to a communications problem, and we keep having to
	 *	deal with it here.	We should fix the comm channel code.  mao 080891
	 * ----------------
	 */
	if (s->state == TRANS_DISABLED || s->state == TRANS_INPROGRESS)
		return;

	/* ----------------
	 *	set the current transaction state information
	 *	appropriately during start processing
	 * ----------------
	 */
	s->state = TRANS_START;

H
Hiroshi Inoue 已提交
986
	SetReindexProcessing(false);
987

988 989 990 991 992 993
	/* ----------------
	 *	generate a new transaction id
	 * ----------------
	 */
	GetNewTransactionId(&(s->transactionIdData));

V
Vadim B. Mikheev 已提交
994 995
	XactLockTableInsert(s->transactionIdData);

996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
	/* ----------------
	 *	initialize current transaction state fields
	 * ----------------
	 */
	s->commandId = FirstCommandId;
	s->scanCommandId = FirstCommandId;
	s->startTime = GetCurrentAbsoluteTime();

	/* ----------------
	 *	initialize the various transaction subsystems
	 * ----------------
	 */
1008
	AtStart_Memory();
1009 1010 1011
	AtStart_Cache();
	AtStart_Locks();

1012 1013 1014 1015 1016 1017
	/* ----------------
	 *	Tell the trigger manager to we're starting a transaction
	 * ----------------
	 */
	DeferredTriggerBeginXact();

1018 1019 1020 1021 1022 1023 1024
	/* ----------------
	 *	done with start processing, set current transaction
	 *	state to "in progress"
	 * ----------------
	 */
	s->state = TRANS_INPROGRESS;

1025 1026
}

1027
#ifdef NOT_USED
1028 1029 1030 1031 1032
/* ---------------
 * Tell me if we are currently in progress
 * ---------------
 */
bool
1033
CurrentXactInProgress(void)
1034
{
1035
	return CurrentTransactionState->state == TRANS_INPROGRESS;
1036
}
1037
#endif
1038 1039

/* --------------------------------
1040
 *		CommitTransaction
1041 1042 1043
 *
 * --------------------------------
 */
1044
static void
1045
CommitTransaction(void)
1046
{
1047
	TransactionState s = CurrentTransactionState;
1048 1049

	/* ----------------
1050
	 *	check the current transaction state
1051 1052
	 * ----------------
	 */
1053 1054 1055 1056 1057 1058
	if (s->state == TRANS_DISABLED)
		return;

	if (s->state != TRANS_INPROGRESS)
		elog(NOTICE, "CommitTransaction and not in in-progress state ");

1059 1060 1061
	/* ----------------
	 *	Tell the trigger manager that this transaction is about to be
	 *	committed. He'll invoke all trigger deferred until XACT before
1062
	 *	we really start on committing the transaction.
1063 1064 1065 1066
	 * ----------------
	 */
	DeferredTriggerEndXact();

1067
	/* ----------------
1068 1069
	 *	set the current transaction state information
	 *	appropriately during the abort processing
1070 1071
	 * ----------------
	 */
1072 1073
	s->state = TRANS_COMMIT;

1074
	/* ----------------
1075
	 *	do commit processing
1076 1077
	 * ----------------
	 */
1078

1079
	/* handle commit for large objects [ PA, 7/17/98 ] */
1080
	lo_commit(true);
1081

1082 1083 1084
	/* NOTIFY commit must also come before lower-level cleanup */
	AtCommit_Notify();

1085 1086 1087
	CloseSequences();
	AtEOXact_portals();
	RecordTransactionCommit();
1088 1089

	/*
1090 1091 1092 1093 1094 1095 1096
	 * Let others know about no transaction in progress by me. Note that
	 * this must be done _before_ releasing locks we hold and
	 * SpinAcquire(SInvalLock) is required: UPDATE with xid 0 is blocked
	 * by xid 1' UPDATE, xid 1 is doing commit while xid 2 gets snapshot -
	 * if xid 2' GetSnapshotData sees xid 1 as running then it must see
	 * xid 0 as running as well or it will see two tuple versions - one
	 * deleted by xid 1 and one inserted by xid 0.
1097 1098 1099
	 */
	if (MyProc != (PROC *) NULL)
	{
1100 1101
		/* Lock SInvalLock because that's what GetSnapshotData uses. */
		SpinAcquire(SInvalLock);
1102 1103
		MyProc->xid = InvalidTransactionId;
		MyProc->xmin = InvalidTransactionId;
1104
		SpinRelease(SInvalLock);
1105 1106
	}

1107
	RelationPurgeLocalRelation(true);
1108 1109 1110
	AtEOXact_temp_relations(true);
	smgrDoPendingDeletes(true);

1111
	AtEOXact_SPI();
1112
	AtEOXact_nbtree();
1113 1114 1115
	AtCommit_Cache();
	AtCommit_Locks();
	AtCommit_Memory();
1116
	AtEOXact_Files();
1117

1118 1119
	SharedBufferChanged = false; /* safest place to do it */

1120
	/* ----------------
1121 1122
	 *	done with commit processing, set current transaction
	 *	state back to default
1123 1124
	 * ----------------
	 */
1125
	s->state = TRANS_DEFAULT;
1126
}
1127

1128
/* --------------------------------
1129 1130
 *		AbortTransaction
 *
1131 1132
 * --------------------------------
 */
1133
static void
1134
AbortTransaction(void)
1135
{
1136 1137 1138 1139 1140
	TransactionState s = CurrentTransactionState;

	/*
	 * Let others to know about no transaction in progress - vadim
	 * 11/26/96
1141
	 */
1142
	if (MyProc != (PROC *) NULL)
1143
	{
1144
		MyProc->xid = InvalidTransactionId;
1145 1146
		MyProc->xmin = InvalidTransactionId;
	}
1147

1148
	/* ----------------
1149
	 *	check the current transaction state
1150 1151
	 * ----------------
	 */
1152 1153 1154 1155
	if (s->state == TRANS_DISABLED)
		return;

	if (s->state != TRANS_INPROGRESS)
1156
		elog(NOTICE, "AbortTransaction and not in in-progress state");
1157

1158 1159 1160 1161 1162
	/*
	 * Reset user id which might have been changed transiently
	 */
	SetUserId(GetSessionUserId());

1163 1164
	/* ----------------
	 *	Tell the trigger manager that this transaction is about to be
1165
	 *	aborted.
1166 1167 1168 1169
	 * ----------------
	 */
	DeferredTriggerAbortXact();

1170
	/* ----------------
1171 1172
	 *	set the current transaction state information
	 *	appropriately during the abort processing
1173 1174
	 * ----------------
	 */
1175 1176
	s->state = TRANS_ABORT;

1177
	/* ----------------
1178
	 *	do abort processing
1179 1180
	 * ----------------
	 */
1181
	lo_commit(false);			/* 'false' means it's abort */
V
Vadim B. Mikheev 已提交
1182
	UnlockBuffers();
1183
	AtAbort_Notify();
1184 1185 1186
	CloseSequences();
	AtEOXact_portals();
	RecordTransactionAbort();
1187

1188
	RelationPurgeLocalRelation(false);
1189 1190 1191
	AtEOXact_temp_relations(false);
	smgrDoPendingDeletes(false);

1192
	AtEOXact_SPI();
1193
	AtEOXact_nbtree();
1194 1195
	AtAbort_Cache();
	AtAbort_Memory();
1196
	AtEOXact_Files();
1197

1198
	/* Here we'll rollback xaction changes */
V
WAL  
Vadim B. Mikheev 已提交
1199
	MyLastRecPtr.xrecoff = 0;
1200 1201 1202

	AtAbort_Locks();

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	SharedBufferChanged = false; /* safest place to do it */

	/* ----------------
	 *	State remains TRANS_ABORT until CleanupTransaction().
	 * ----------------
	 */
}

/* --------------------------------
 *		CleanupTransaction
 *
 * --------------------------------
 */
static void
1217
CleanupTransaction(void)
1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
{
	TransactionState s = CurrentTransactionState;

	if (s->state == TRANS_DISABLED)
		return;

	/* ----------------
	 *	State should still be TRANS_ABORT from AbortTransaction().
	 * ----------------
	 */
	if (s->state != TRANS_ABORT)
		elog(FATAL, "CleanupTransaction and not in abort state");

	/* ----------------
	 *	do abort cleanup processing
	 * ----------------
	 */
	AtCleanup_Memory();

1237
	/* ----------------
1238 1239
	 *	done with abort processing, set current transaction
	 *	state back to default
1240 1241
	 * ----------------
	 */
1242 1243 1244 1245 1246 1247 1248 1249
	s->state = TRANS_DEFAULT;
}

/* --------------------------------
 *		StartTransactionCommand
 * --------------------------------
 */
void
1250
StartTransactionCommand(void)
1251 1252 1253 1254 1255
{
	TransactionState s = CurrentTransactionState;

	switch (s->blockState)
	{
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
			/* ----------------
			 *		if we aren't in a transaction block, we
			 *		just do our usual start transaction.
			 * ----------------
			 */
		case TBLOCK_DEFAULT:
			StartTransaction();
			break;

			/* ----------------
			 *		We should never experience this -- if we do it
			 *		means the BEGIN state was not changed in the previous
			 *		CommitTransactionCommand().  If we get it, we print
			 *		a warning and change to the in-progress state.
			 * ----------------
			 */
		case TBLOCK_BEGIN:
			elog(NOTICE, "StartTransactionCommand: unexpected TBLOCK_BEGIN");
			s->blockState = TBLOCK_INPROGRESS;
			break;

			/* ----------------
			 *		This is the case when are somewhere in a transaction
			 *		block and about to start a new command.  For now we
			 *		do nothing but someday we may do command-local resource
			 *		initialization.
			 * ----------------
			 */
		case TBLOCK_INPROGRESS:
			break;

			/* ----------------
B
Bruce Momjian 已提交
1288
			 *		As with BEGIN, we should never experience this
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
			 *		if we do it means the END state was not changed in the
			 *		previous CommitTransactionCommand().  If we get it, we
			 *		print a warning, commit the transaction, start a new
			 *		transaction and change to the default state.
			 * ----------------
			 */
		case TBLOCK_END:
			elog(NOTICE, "StartTransactionCommand: unexpected TBLOCK_END");
			s->blockState = TBLOCK_DEFAULT;
			CommitTransaction();
			StartTransaction();
			break;

			/* ----------------
			 *		Here we are in the middle of a transaction block but
			 *		one of the commands caused an abort so we do nothing
			 *		but remain in the abort state.	Eventually we will get
			 *		to the "END TRANSACTION" which will set things straight.
			 * ----------------
			 */
		case TBLOCK_ABORT:
			break;

			/* ----------------
			 *		This means we somehow aborted and the last call to
			 *		CommitTransactionCommand() didn't clear the state so
1315
			 *		we remain in the ENDABORT state and maybe next time
1316 1317 1318 1319 1320 1321 1322
			 *		we get to CommitTransactionCommand() the state will
			 *		get reset to default.
			 * ----------------
			 */
		case TBLOCK_ENDABORT:
			elog(NOTICE, "StartTransactionCommand: unexpected TBLOCK_ENDABORT");
			break;
1323
	}
1324 1325 1326 1327 1328 1329 1330

	/*
	 * We must switch to TransactionCommandContext before returning.
	 * This is already done if we called StartTransaction, otherwise not.
	 */
	Assert(TransactionCommandContext != NULL);
	MemoryContextSwitchTo(TransactionCommandContext);
1331 1332 1333 1334 1335 1336 1337
}

/* --------------------------------
 *		CommitTransactionCommand
 * --------------------------------
 */
void
1338
CommitTransactionCommand(void)
1339 1340 1341 1342 1343
{
	TransactionState s = CurrentTransactionState;

	switch (s->blockState)
	{
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
			/* ----------------
			 *		if we aren't in a transaction block, we
			 *		just do our usual transaction commit
			 * ----------------
			 */
		case TBLOCK_DEFAULT:
			CommitTransaction();
			break;

			/* ----------------
			 *		This is the case right after we get a "BEGIN TRANSACTION"
			 *		command, but the user hasn't done anything else yet, so
			 *		we change to the "transaction block in progress" state
			 *		and return.
			 * ----------------
			 */
		case TBLOCK_BEGIN:
			s->blockState = TBLOCK_INPROGRESS;
			break;

			/* ----------------
			 *		This is the case when we have finished executing a command
			 *		someplace within a transaction block.  We increment the
			 *		command counter and return.  Someday we may free resources
			 *		local to the command.
			 *
1370 1371
			 *		That someday is today, at least for memory allocated in
			 *		TransactionCommandContext.
1372 1373 1374 1375 1376
			 *				- vadim 03/25/97
			 * ----------------
			 */
		case TBLOCK_INPROGRESS:
			CommandCounterIncrement();
1377
			MemoryContextResetAndDeleteChildren(TransactionCommandContext);
1378 1379 1380 1381
			break;

			/* ----------------
			 *		This is the case when we just got the "END TRANSACTION"
1382 1383
			 *		statement, so we commit the transaction and go back to
			 *		the default state.
1384 1385 1386 1387
			 * ----------------
			 */
		case TBLOCK_END:
			CommitTransaction();
1388
			s->blockState = TBLOCK_DEFAULT;
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
			break;

			/* ----------------
			 *		Here we are in the middle of a transaction block but
			 *		one of the commands caused an abort so we do nothing
			 *		but remain in the abort state.	Eventually we will get
			 *		to the "END TRANSACTION" which will set things straight.
			 * ----------------
			 */
		case TBLOCK_ABORT:
			break;

			/* ----------------
			 *		Here we were in an aborted transaction block which
			 *		just processed the "END TRANSACTION" command from the
1404
			 *		user, so clean up and return to the default state.
1405 1406 1407
			 * ----------------
			 */
		case TBLOCK_ENDABORT:
1408
			CleanupTransaction();
1409 1410
			s->blockState = TBLOCK_DEFAULT;
			break;
1411
	}
1412 1413 1414
}

/* --------------------------------
1415
 *		AbortCurrentTransaction
1416 1417 1418
 * --------------------------------
 */
void
1419
AbortCurrentTransaction(void)
1420
{
1421 1422 1423 1424
	TransactionState s = CurrentTransactionState;

	switch (s->blockState)
	{
1425 1426
			/* ----------------
			 *		if we aren't in a transaction block, we
1427
			 *		just do the basic abort & cleanup transaction.
1428 1429 1430 1431
			 * ----------------
			 */
		case TBLOCK_DEFAULT:
			AbortTransaction();
1432
			CleanupTransaction();
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
			break;

			/* ----------------
			 *		If we are in the TBLOCK_BEGIN it means something
			 *		screwed up right after reading "BEGIN TRANSACTION"
			 *		so we enter the abort state.  Eventually an "END
			 *		TRANSACTION" will fix things.
			 * ----------------
			 */
		case TBLOCK_BEGIN:
			s->blockState = TBLOCK_ABORT;
			AbortTransaction();
1445
			/* CleanupTransaction happens when we exit TBLOCK_ABORT */
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
			break;

			/* ----------------
			 *		This is the case when are somewhere in a transaction
			 *		block which aborted so we abort the transaction and
			 *		set the ABORT state.  Eventually an "END TRANSACTION"
			 *		will fix things and restore us to a normal state.
			 * ----------------
			 */
		case TBLOCK_INPROGRESS:
			s->blockState = TBLOCK_ABORT;
			AbortTransaction();
1458
			/* CleanupTransaction happens when we exit TBLOCK_ABORT */
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
			break;

			/* ----------------
			 *		Here, the system was fouled up just after the
			 *		user wanted to end the transaction block so we
			 *		abort the transaction and put us back into the
			 *		default state.
			 * ----------------
			 */
		case TBLOCK_END:
			s->blockState = TBLOCK_DEFAULT;
			AbortTransaction();
1471
			CleanupTransaction();
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
			break;

			/* ----------------
			 *		Here, we are already in an aborted transaction
			 *		state and are waiting for an "END TRANSACTION" to
			 *		come along and lo and behold, we abort again!
			 *		So we just remain in the abort state.
			 * ----------------
			 */
		case TBLOCK_ABORT:
			break;

			/* ----------------
			 *		Here we were in an aborted transaction block which
			 *		just processed the "END TRANSACTION" command but somehow
			 *		aborted again.. since we must have done the abort
1488
			 *		processing, we clean up and return to the default state.
1489 1490 1491
			 * ----------------
			 */
		case TBLOCK_ENDABORT:
1492
			CleanupTransaction();
1493 1494
			s->blockState = TBLOCK_DEFAULT;
			break;
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
	}
}

/* ----------------------------------------------------------------
 *					   transaction block support
 * ----------------------------------------------------------------
 */
/* --------------------------------
 *		BeginTransactionBlock
 * --------------------------------
 */
void
BeginTransactionBlock(void)
{
	TransactionState s = CurrentTransactionState;

1511
	/* ----------------
1512
	 *	check the current transaction state
1513 1514
	 * ----------------
	 */
1515 1516 1517 1518
	if (s->state == TRANS_DISABLED)
		return;

	if (s->blockState != TBLOCK_DEFAULT)
P
Peter Eisentraut 已提交
1519
		elog(NOTICE, "BEGIN: already a transaction in progress");
1520

1521
	/* ----------------
1522 1523
	 *	set the current transaction block state information
	 *	appropriately during begin processing
1524 1525
	 * ----------------
	 */
1526 1527
	s->blockState = TBLOCK_BEGIN;

1528
	/* ----------------
1529
	 *	do begin processing
1530 1531
	 * ----------------
	 */
1532

1533
	/* ----------------
1534
	 *	done with begin processing, set block state to inprogress
1535 1536
	 * ----------------
	 */
1537
	s->blockState = TBLOCK_INPROGRESS;
1538 1539 1540
}

/* --------------------------------
1541
 *		EndTransactionBlock
1542 1543 1544
 * --------------------------------
 */
void
1545
EndTransactionBlock(void)
1546
{
1547 1548
	TransactionState s = CurrentTransactionState;

1549
	/* ----------------
1550
	 *	check the current transaction state
1551 1552
	 * ----------------
	 */
1553 1554 1555 1556 1557 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
	if (s->state == TRANS_DISABLED)
		return;

	if (s->blockState == TBLOCK_INPROGRESS)
	{
		/* ----------------
		 *	here we are in a transaction block which should commit
		 *	when we get to the upcoming CommitTransactionCommand()
		 *	so we set the state to "END".  CommitTransactionCommand()
		 *	will recognize this and commit the transaction and return
		 *	us to the default state
		 * ----------------
		 */
		s->blockState = TBLOCK_END;
		return;
	}

	if (s->blockState == TBLOCK_ABORT)
	{
		/* ----------------
		 *	here, we are in a transaction block which aborted
		 *	and since the AbortTransaction() was already done,
		 *	we do whatever is needed and change to the special
		 *	"END ABORT" state.	The upcoming CommitTransactionCommand()
		 *	will recognise this and then put us back in the default
		 *	state.
		 * ----------------
		 */
		s->blockState = TBLOCK_ENDABORT;
		return;
	}

1585
	/* ----------------
1586 1587
	 *	here, the user issued COMMIT when not inside a transaction.
	 *	Issue a notice and go to abort state.  The upcoming call to
1588 1589
	 *	CommitTransactionCommand() will then put us back into the
	 *	default state.
1590 1591
	 * ----------------
	 */
P
Peter Eisentraut 已提交
1592
	elog(NOTICE, "COMMIT: no transaction in progress");
1593
	AbortTransaction();
1594 1595 1596 1597
	s->blockState = TBLOCK_ENDABORT;
}

/* --------------------------------
1598
 *		AbortTransactionBlock
1599 1600
 * --------------------------------
 */
1601 1602
#ifdef NOT_USED
static void
1603
AbortTransactionBlock(void)
1604
{
1605 1606
	TransactionState s = CurrentTransactionState;

1607
	/* ----------------
1608
	 *	check the current transaction state
1609 1610
	 * ----------------
	 */
1611 1612 1613 1614 1615 1616 1617 1618 1619
	if (s->state == TRANS_DISABLED)
		return;

	if (s->blockState == TBLOCK_INPROGRESS)
	{
		/* ----------------
		 *	here we were inside a transaction block something
		 *	screwed up inside the system so we enter the abort state,
		 *	do the abort processing and then return.
1620
		 *	We remain in the abort state until we see an
1621 1622 1623 1624 1625 1626 1627 1628
		 *	END TRANSACTION command.
		 * ----------------
		 */
		s->blockState = TBLOCK_ABORT;
		AbortTransaction();
		return;
	}

1629
	/* ----------------
1630 1631 1632 1633
	 *	here, the user issued ABORT when not inside a transaction.
	 *	Issue a notice and go to abort state.  The upcoming call to
	 *	CommitTransactionCommand() will then put us back into the
	 *	default state.
1634 1635
	 * ----------------
	 */
1636
	elog(NOTICE, "ROLLBACK: no transaction in progress");
1637
	AbortTransaction();
1638
	s->blockState = TBLOCK_ENDABORT;
1639
}
1640

1641
#endif
1642 1643

/* --------------------------------
1644
 *		UserAbortTransactionBlock
1645 1646 1647
 * --------------------------------
 */
void
1648
UserAbortTransactionBlock(void)
1649
{
1650 1651
	TransactionState s = CurrentTransactionState;

1652
	/* ----------------
1653
	 *	check the current transaction state
1654 1655
	 * ----------------
	 */
1656 1657 1658 1659 1660 1661 1662
	if (s->state == TRANS_DISABLED)
		return;

	/*
	 * if the transaction has already been automatically aborted with an
	 * error, and the user subsequently types 'abort', allow it.  (the
	 * behavior is the same as if they had typed 'end'.)
1663
	 */
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
	if (s->blockState == TBLOCK_ABORT)
	{
		s->blockState = TBLOCK_ENDABORT;
		return;
	}

	if (s->blockState == TBLOCK_INPROGRESS)
	{
		/* ----------------
		 *	here we were inside a transaction block and we
		 *	got an abort command from the user, so we move to
		 *	the abort state, do the abort processing and
		 *	then change to the ENDABORT state so we will end up
		 *	in the default state after the upcoming
		 *	CommitTransactionCommand().
		 * ----------------
		 */
		s->blockState = TBLOCK_ABORT;
		AbortTransaction();
		s->blockState = TBLOCK_ENDABORT;
		return;
	}

1687
	/* ----------------
1688 1689 1690 1691
	 *	here, the user issued ABORT when not inside a transaction.
	 *	Issue a notice and go to abort state.  The upcoming call to
	 *	CommitTransactionCommand() will then put us back into the
	 *	default state.
1692 1693
	 * ----------------
	 */
P
Peter Eisentraut 已提交
1694
	elog(NOTICE, "ROLLBACK: no transaction in progress");
1695
	AbortTransaction();
1696 1697 1698
	s->blockState = TBLOCK_ENDABORT;
}

1699 1700 1701 1702 1703 1704 1705 1706 1707
/* --------------------------------
 *		AbortOutOfAnyTransaction
 *
 * This routine is provided for error recovery purposes.  It aborts any
 * active transaction or transaction block, leaving the system in a known
 * idle state.
 * --------------------------------
 */
void
1708
AbortOutOfAnyTransaction(void)
1709 1710 1711 1712 1713 1714
{
	TransactionState s = CurrentTransactionState;

	/*
	 * Get out of any low-level transaction
	 */
1715
	switch (s->state)
1716
	{
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
		case TRANS_START:
		case TRANS_INPROGRESS:
		case TRANS_COMMIT:
			/* In a transaction, so clean up */
			AbortTransaction();
			CleanupTransaction();
			break;
		case TRANS_ABORT:
			/* AbortTransaction already done, still need Cleanup */
			CleanupTransaction();
			break;
		case TRANS_DEFAULT:
		case TRANS_DISABLED:
			/* Not in a transaction, do nothing */
			break;
1732
	}
B
Bruce Momjian 已提交
1733

1734 1735 1736 1737 1738 1739
	/*
	 * Now reset the high-level state
	 */
	s->blockState = TBLOCK_DEFAULT;
}

1740
bool
1741
IsTransactionBlock(void)
1742
{
1743 1744 1745
	TransactionState s = CurrentTransactionState;

	if (s->blockState == TBLOCK_INPROGRESS
1746
		|| s->blockState == TBLOCK_ABORT
1747
		|| s->blockState == TBLOCK_ENDABORT)
1748
		return true;
1749

1750
	return false;
1751
}
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763

#ifdef XLOG

void
xact_redo(XLogRecPtr lsn, XLogRecord *record)
{
	uint8	info = record->xl_info & ~XLR_INFO_MASK;

	if (info == XLOG_XACT_COMMIT)
	{
		xl_xact_commit	*xlrec = (xl_xact_commit*) XLogRecGetData(record);

V
Vadim B. Mikheev 已提交
1764
		TransactionIdCommit(record->xl_xid);
1765 1766 1767 1768
		/* MUST REMOVE FILES OF ALL DROPPED RELATIONS */
	}
	else if (info == XLOG_XACT_ABORT)
	{
V
Vadim B. Mikheev 已提交
1769
		TransactionIdAbort(record->xl_xid);
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784
	}
	else
		elog(STOP, "xact_redo: unknown op code %u", info);
}

void
xact_undo(XLogRecPtr lsn, XLogRecord *record)
{
	uint8	info = record->xl_info & ~XLR_INFO_MASK;

	if (info == XLOG_XACT_COMMIT)	/* shouldn't be called by XLOG */
		elog(STOP, "xact_undo: can't undo committed xaction");
	else if (info != XLOG_XACT_ABORT)
		elog(STOP, "xact_redo: unknown op code %u", info);
}
V
WAL  
Vadim B. Mikheev 已提交
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
 
void
xact_desc(char *buf, uint8 xl_info, char* rec)
{
	uint8	info = xl_info & ~XLR_INFO_MASK;

	if (info == XLOG_XACT_COMMIT)
	{
		xl_xact_commit	*xlrec = (xl_xact_commit*) rec;
		struct tm	    *tm = localtime(&xlrec->xtime);

		sprintf(buf + strlen(buf), "commit: %04u-%02u-%02u %02u:%02u:%02u",
			tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
			tm->tm_hour, tm->tm_min, tm->tm_sec);
	}
	else if (info == XLOG_XACT_ABORT)
	{
		xl_xact_abort	*xlrec = (xl_xact_abort*) rec;
		struct tm	    *tm = localtime(&xlrec->xtime);

		sprintf(buf + strlen(buf), "abort: %04u-%02u-%02u %02u:%02u:%02u",
			tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
			tm->tm_hour, tm->tm_min, tm->tm_sec);
	}
	else
		strcat(buf, "UNKNOWN");
}
1812 1813 1814 1815

void
XactPushRollback(void (*func) (void *), void* data)
{
V
Vadim B. Mikheev 已提交
1816
#ifdef XLOG_II
1817 1818
	if (_RollbackFunc != NULL)
		elog(STOP, "XactPushRollback: already installed");
V
Vadim B. Mikheev 已提交
1819
#endif
1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831

	_RollbackFunc = func;
	_RollbackData = data;
}

void
XactPopRollback(void)
{
	_RollbackFunc = NULL;
}

#endif