home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------
- trlog.c -- Transaction logging function stubs
-
- Copyright (c) 1984-1990, Raima Corporation, All Rights Reserved
- -----------------------------------------------------------------------*/
-
- /* ********************** EDIT HISTORY *******************************
-
- SCR DATE INI DESCRIPTION
- ----- --------- --- -----------------------------------------------------
- 310 10-Aug-88 RSC Cleanup function prototype.
- 16-Aug-88 RTK Added function prototype.
- 532 06-Jan-89 RSC Fixed to compile correctly for NO_TRANS
- 571 27-Jan-89 RSC Removed include dbtype, added defn of trlog_flag
- */
-
- #include <stdio.h>
- #include "vista.h"
-
- #ifndef NO_TRANS
-
-
- /* Transaction logging functions:
-
- This module is intended to provide the hooks for implementing
- "after image" transaction logging which allows the re-creation
- of a (damaged) database from the last backup up to the time the
- database problem occurred.
-
- Transaction logging is initiated by setting the external variable
- "trlog_flag" to 1 (through the call to d_tron). Once initiated,
- function d_trmark is called by d_trend in order to mark the
- beginning of a transaction update which will follow as a sequence
- of calls to d_trlog, one for each page being written to the database.
- Function d_trbound (called after all database pages have been
- successfully written to the database) is intended to delimit the
- end of a transaction on the logging device.
-
- The transaction logging device is normally a cartridge or nine
- track tape unit. These functions must ensure that shared
- access to the logging device be protected against simultaneous use.
-
- The information which must minimally be stored is as follows:
-
- Transaction mark:
-
- - an arbitrary mark code
- - transaction id
- - time/date stamp
-
- Transaction information (one for each changed page):
-
- - transaction id
- - time/date stamp
- - file number
- - page number
- - page contents
- - page size
-
- Transaction boundary:
-
- - an arbitrary bound code
- - transaction id
- - time stamp
- */
-
- extern int trlog_flag;
-
- /* ======================================================================
- Mark the start of transaction
- */
- int EXTERNAL_FIXED d_trmark()
- {
- /*
- this should first secure exclusive access to
- the logging device and then mark the start of the
- transaction.
- */
- return(0);
- }
-
- /* ======================================================================
- Bound the end of a transaction
- */
- int EXTERNAL_FIXED d_trbound()
- {
- /*
- This should first bound the end of the transaction
- and then release the logging device from exclusive access.
- */
- return(0);
- }
-
- /* ======================================================================
- Log a changed db page
- */
- /*ARGSUSED*/
- int EXTERNAL_FIXED d_trlog(fno, pno, page, psz)
- int fno; /* file number */
- int pno; /* page number */
- CONST char DB_FAR *page; /* page contents */
- int psz; /* page size */
- {
- #ifdef MSC
- /* These references eliminate compile-time warnings */
- fno;
- pno;
- page;
- psz;
- #endif
- return(0);
- }
-
- /* ======================================================================
- Turn on tr logging
- */
- int EXTERNAL_FIXED d_tron()
- {
- trlog_flag = 1;
- return(0);
- }
-
- /* ======================================================================
- Turn off tr logging
- */
- int EXTERNAL_FIXED d_troff()
- {
- trlog_flag = 0;
- return(0);
- }
-
- #endif /* NO_TRANS */
- /* vpp -F -nUNIX -nWIN3 -nVANILLA_BSD -nWINDOWS -nVMS -nOS2 TRLOG.c */
- /* vpp -F -nFAR_ALLOC -nARCHIVING -nDB_DLL -nBSD -nMEMLOCK -nIS_UNIX_REALLY -nREOPEN_FILES TRLOG.c */
-