home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------
- opens.c -- db_VISTA system open() interface module
-
- Copyright (c) 1984-1990, Raima Corporation, All Rights Reserved
- -----------------------------------------------------------------------*/
-
- /* ********************** EDIT HISTORY *******************************
-
- SCR DATE INI DESCRIPTION
- ----- --------- --- -----------------------------------------------------
- 115 19-Jul-88 RSC Integrate VAX/VMS changes into code
- 368 28-Jul-88 RSC Integrate BSD changes into code
- 310 10-Aug-88 RSC Cleanup function prototype.
- 571 27-Jan-89 RSC Removed extraneous include dbtype.h
- 571 30-Jan-89 WLW Added required header info for Windows compile w/o dbtype.h
- 21-Aug-89 WLW Removed VMS "retry" code.
- */
-
- #include <stdio.h>
- #include <fcntl.h>
- #include "vista.h"
- #ifdef MSC
- #include <share.h>
- #include <io.h>
- #endif
- #ifdef ZOR
- #include <io.h>
- #include <share.h>
- #include <fcntl.h>
- #endif
-
-
- int INTERNAL_FIXED open_b(P1(CONST char DB_FAR *) Pi(unsigned int));
- int INTERNAL_FIXED commit_file(P1(int) Pi(DB_SHORT));
- int INTERNAL_FIXED dio_close(P1(FILE_NO));
-
- #include <string.h>
-
-
- /* ======================================================================
- Open a binary file for shared access
- */
- int INTERNAL_FIXED open_b(filenm, flags)
- CONST char DB_FAR *filenm;
- unsigned int flags;
- {
- int desc;
- #ifdef MSC
- flags |= O_BINARY;
- desc = sopen((char *)filenm, flags, SH_DENYNO, 0666);
- #endif
- #ifdef TURBO
- flags |= O_BINARY | O_DENYNONE;
- desc = open(filenm, flags, 0666);
- #endif
- #ifdef LAT
- flags |= O_RAW | O_SDN;
- desc = open(filenm, flags, 0666);
- #endif
- #ifdef ZOR
- flags |= O_BINARY;
- desc = sopen(filenm, flags, SH_DENYNO, 0666);
- #endif
- return( desc );
- }
-
-
- /* ======================================================================
- Cause a file's contents to be commited to disk
- */
- #ifdef ZOR
- int INTERNAL_FIXED commit_file(int file_num, DB_SHORT file_handle)
- #else
- int INTERNAL_FIXED commit_file(file_num, file_handle)
- int file_num; /* db_VISTA file number */
- DB_SHORT file_handle; /* OS file handle ( from open ) */
- #endif
- {
- int dupfile;
-
- /* If there is a specific way to handle it use it */
-
- /* Other wise this SHOULD always work */
- if ( (dupfile = dup(file_handle)) == -1 ) {
- /* could not get a dup handle ... close the file */
- if ( file_num >= 0 )
- dio_close(file_num);
- else
- close(file_handle);
- }
- else
- close(dupfile);
-
- /* If all else fails close the file - Last resort */
- /* dio_close(file_num); */
-
- return (0);
- }
- /* vpp -F -nUNIX -nWIN3 -nVANILLA_BSD -nWINDOWS -nVMS -nOS2 OPENS.c */
- /* vpp -F -nFAR_ALLOC -nARCHIVING -nDB_DLL -nBSD -nMEMLOCK -nIS_UNIX_REALLY -nREOPEN_FILES OPENS.c */
-