/*-------------------------------------------------------------------------
 *
 * enbl.c--
 *	  POSTGRES module enable and disable support code.
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  $Header: /usr/local/cvsroot/pgsql/src/backend/utils/init/enbl.c,v 1.2 1997/09/07 04:53:42 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */
#include "c.h"
#include "utils/module.h"		/* where the declarations go */

/*
 * BypassEnable --
 *		False iff enable/disable processing is required given on and "*countP."
 *
 * Note:
 *		As a side-effect, *countP is modified.	It should be 0 initially.
 *
 * Exceptions:
 *		BadState if called with pointer to value 0 and false.
 *		BadArg if "countP" is invalid pointer.
 *		BadArg if on is invalid.
 */
bool
BypassEnable(int *enableCountInOutP, bool on)
{
	AssertArg(PointerIsValid(enableCountInOutP));
	AssertArg(BoolIsValid(on));

	if (on)
	{
		*enableCountInOutP += 1;
		return ((bool) (*enableCountInOutP >= 2));
	}

	AssertState(*enableCountInOutP >= 1);

	*enableCountInOutP -= 1;

	return ((bool) (*enableCountInOutP >= 1));
}
