📄 dcompat.h
字号:
/*** Copyright (C) 1993/1994, OFFIS, Oldenburg University and CERIUM** ** This software and supporting documentation were** developed by ** ** Institut OFFIS** Bereich Kommunikationssysteme** Westerstr. 10-12** 26121 Oldenburg, Germany** ** Fachbereich Informatik** Abteilung Prozessinformatik** Carl von Ossietzky Universitaet Oldenburg ** Ammerlaender Heerstr. 114-118** 26111 Oldenburg, Germany** ** CERIUM** Laboratoire SIM** Faculte de Medecine** 2 Avenue du Pr. Leon Bernard** 35043 Rennes Cedex, France** ** for CEN/TC251/WG4 as a contribution to the Radiological ** Society of North America (RSNA) 1993 Digital Imaging and ** Communications in Medicine (DICOM) Demonstration.** ** THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND NEITHER OFFIS,** OLDENBURG UNIVERSITY NOR CERIUM MAKE ANY WARRANTY REGARDING ** THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR ** FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER ** DISEASES OR ITS CONFORMITY TO ANY SPECIFICATION. THE ** ENTIRE RISK AS TO QUALITY AND PERFORMANCE OF THE SOFTWARE ** IS WITH THE USER. ** ** Copyright of the software and supporting documentation** is, unless otherwise stated, jointly owned by OFFIS,** Oldenburg University and CERIUM and free access is hereby** granted as a license to use this software, copy this** software and prepare derivative works based upon this** software. However, any distribution of this software** source code or supporting documentation or derivative** works (source code and supporting documentation) must** include the three paragraphs of this copyright notice. ** *//*** ** Author:Andrew Hewett Created: 11-08-93 ** Oldenburg University** Germany**** Module: dcompat.h** ** Purpose:** This is the place to declare compatability routines** which can be missing on some systems. **** This include file is automatically included by dicom.h **** Module Prefix: none ** **** Last Update: $Author: meichel $** Update Date: $Date: 2005/12/08 16:02:19 $** Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmnet/include/dcmtk/dcmnet/dcompat.h,v $** CVS/RCS Revision: $Revision: 1.23 $** Status: $State: Exp $**** CVS/RCS Log at end of file***/#ifndef DCOMPAT_H#define DCOMPAT_H#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */#include "dcmtk/ofstd/ofbmanip.h" /* for bzero workaround */#define INCLUDE_CSTDLIB#define INCLUDE_CTIME#define INCLUDE_CSTRING#define INCLUDE_CERRNO#define INCLUDE_LIBC#define INCLUDE_UNISTD#include "dcmtk/ofstd/ofstdinc.h"#ifdef HAVE_GUSI_H/* Use the Grand Unified Sockets Interface (GUSI) on Macintosh */#include <GUSI.h> #endif#ifdef HAVE_WINDOWS_H#include <windows.h> /* this includes either winsock.h or winsock2.h */#else#ifdef HAVE_WINSOCK_H#include <winsock.h> /* include winsock.h directly i.e. on MacOS */#ifdef macintosh/*** The WinSock header on Macintosh does not declare the WORD type nor the MAKEWORD** macro need to initialize the WinSock library.*/typedef u_short WORD;#define MAKEWORD(a,b) ((WORD) (((a)&0xff)<<8) | ((b)&0xff) )#endif#endif#endifBEGIN_EXTERN_C#ifdef HAVE_SYS_TIME_H#include <sys/time.h>#endif#ifdef HAVE_SYS_TYPES_H#include <sys/types.h>#endif#ifdef HAVE_SYS_SOCKET_H#ifndef DCOMPAT_SYS_SOCKET_H_#define DCOMPAT_SYS_SOCKET_H_/* some systems don't protect sys/socket.h (e.g. DEC Ultrix) */#include <sys/socket.h>#endif#endif#ifdef HAVE_NETINET_IN_H#include <netinet/in.h>#endif#ifdef HAVE_ARPA_INET_H#include <arpa/inet.h>#endif#ifdef HAVE_NETDB_H#include <netdb.h>#endif#ifdef HAVE_SYS_WAIT_H#include <sys/wait.h>#endif#ifdef HAVE_SYS_RESOURCE_H#include <sys/resource.h>#endif#ifdef HAVE_SYS_PARAM_H#include <sys/param.h>#endif#ifdef HAVE_SYS_SELECT_H#include <sys/select.h>#endif#ifdef HAVE_SYS_FILE_H#include <sys/file.h>#endifEND_EXTERN_C#ifdef _WIN32#include <process.h>#include <io.h>#ifndef __CYGWIN__#include <sys/locking.h>#endif#endif#ifndef EINTR/* The WinSock header on Macintosh does not define an EINTR error code */#ifdef HAVE_WINSOCK_H#define EINTR WSAEINTR#endif#endif#ifdef HAVE_PROTOTYPE_FLOCK#define dcmtk_flock flock#define dcmtk_plockerr perror#endif#ifndef HAVE_PROTOTYPE_FLOCK#ifdef HAVE_FLOCKBEGIN_EXTERN_Cint flock(int fd, int operation);END_EXTERN_C#define dcmtk_flock flock#define dcmtk_plockerr perror#else/* * Simulate the flock function calls * using the facilities of fcntl(2) */#define LOCK_SH 1 /* shared lock */#define LOCK_EX 2 /* exclusive lock */#define LOCK_NB 4 /* don't block when locking */#define LOCK_UN 8 /* unlock */int dcmtk_flock(int fd, int operation);void dcmtk_plockerr(const char *s);#endif /* !HAVE_FLOCK */#endif#ifndef HAVE_BZERO#ifndef bzero#define bzero(p,len) memset((void*)(p), 0, (len));#endif#endif#ifndef HAVE_PROTOTYPE_GETHOSTNAME#ifdef HAVE_GETHOSTNAME/* gethostname is in the libraries but we have no prototype */BEGIN_EXTERN_Cint gethostname(char* name, int namelen);END_EXTERN_C#else/* define gethostname ourselves */int gethostname(char* name, int namelen);#endif#endif#ifndef HAVE_PROTOTYPE_GETHOSTBYNAME#ifdef HAVE_GETHOSTBYNAME/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cstruct hostent *gethostbyname(const char* name);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_GETSOCKOPT#ifdef HAVE_GETSOCKOPT/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint getsockopt(int s, int level, int optname, char *optval, int *optlen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_SETSOCKOPT#ifdef HAVE_SETSOCKOPT/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint setsockopt(int s, int level, int optname, const char *optval, int optlen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_LISTEN#ifdef HAVE_LISTEN/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint listen(int s, int backlog);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_SOCKET#ifdef HAVE_SOCKET/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint socket(int domain, int type, int protocol);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_CONNECT#ifdef HAVE_CONNECT/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint connect(int s, struct sockaddr *name, int namelen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_SELECT#ifdef HAVE_SELECT/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_BIND#ifdef HAVE_BIND/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint bind(int s, const struct sockaddr *name, int namelen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_ACCEPT#ifdef HAVE_ACCEPT/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint accept(int s, struct sockaddr *addr, int *addrlen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_GETSOCKNAME#ifdef HAVE_GETSOCKNAME/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint getsockname(int s, struct sockaddr *name, int *namelen);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_WAITPID#ifdef HAVE_WAITPID/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint waitpid(pid_t pid, int *statusp, int options);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_PROTOTYPE_WAIT3#ifdef HAVE_WAIT3/* it is in the libraries but we have no prototype */BEGIN_EXTERN_Cint wait3(int *statusp, int options, struct rusage *rusage);END_EXTERN_C#else/* don't know how to emulate */#endif#endif#ifndef HAVE_GETPID#ifndef getpid#ifdef _WIN32#define getpid() (_getpid())#else#define getpid() ((int) 9000)#endif#endif#endif#ifndef HAVE_ACCESS#ifndef R_OK#define R_OK 0x01#define W_OK 0x02#define X_OK 0x04#define F_OK 0x08#endifint access(const char* path, int amode);#else /* HAVE_ACCESS */#ifdef _WIN32/* windows defines access but not the constants */#ifndef R_OK#define W_OK 02 /* Write permission */#define R_OK 04 /* Read permission */#define F_OK 00 /* Existance only */#define X_OK 00 /* execute permission has no meaning under windows, treat as existance */#endif /* R_OK */#endif /* _WIN32 */#endif /* HAVE_ACCESS */#ifndef HAVE_STRERRORchar *strerror(int e);#endif#ifndef HAVE_TEMPNAMchar *tempnam(char *dir, char *pfx);#endif#ifdef _WIN32#define NULL_DEVICE_NAME "nul"#else#define NULL_DEVICE_NAME "/dev/null"#endif#endif /* DCOMPAT_H *//*** CVS Log** $Log: dcompat.h,v $** Revision 1.23 2005/12/08 16:02:19 meichel** Changed include path schema for all DCMTK header files**** Revision 1.22 2004/08/03 11:42:43 meichel** Headers libc.h and unistd.h are now included via ofstdinc.h**** Revision 1.21 2003/12/17 16:33:26 meichel** Removed unused macros**** Revision 1.20 2003/06/06 09:44:56 meichel** Added static sleep function in class OFStandard. This replaces the various** calls to sleep(), Sleep() and usleep() throughout the toolkit.**** Revision 1.19 2002/11/27 13:04:35 meichel** Adapted module dcmnet to use of new header file ofstdinc.h**** Revision 1.18 2000/11/10 16:25:01 meichel** Fixed problem with DIMSE routines which attempted to delete /dev/null** under certain circumstances, which could lead to disastrous results if** tools were run with root permissions (what they shouldn't).**** Revision 1.17 2000/02/23 15:12:24 meichel** Corrected macro for Borland C++ Builder 4 workaround.**** Revision 1.16 2000/02/01 10:24:06 meichel** Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,** workaround for bug in compiler header files.**** Revision 1.15 1999/11/12 16:51:02 meichel** Corrected file locking code that did not work correctly under Win95/98.**** Revision 1.14 1999/05/04 12:18:04 joergr** Minor changes to support Cygwin B20.1 (check __CYGWIN__ to distinguish from** MSVC which also defines _WIN32).**** Revision 1.13 1999/04/30 16:36:32 meichel** Renamed all flock calls to dcmtk_flock to avoid name clash between flock()** emulation based on fcntl() and a constructor for struct flock.**** Revision 1.12 1999/04/21 13:02:56 meichel** Now always including <windows.h> instead of <winsock.h> on Win32 platforms.** This makes sure that <winsock2.h> is used if available.**** Revision 1.11 1999/04/19 08:42:35 meichel** Added constants for access() on Win32.**** Revision 1.10 1997/09/11 16:02:15 hewett** Conditionally included more standard header files into the** the dcmnet compatibility header file to allow appropriate** declarations to be picked up. For Signus GnuWin32.**** Revision 1.9 1997/04/18 08:37:30 andreas** - Removed double include of sys/select**** Revision 1.8 1997/02/06 12:14:42 hewett** Updated preliminary Apple Macintosh support for the Metrowerks CodeWarrior** version 11 compiler and environment.**** Revision 1.7 1996/09/27 14:03:03 hewett** Added emulation of sleep() for Win32.**** Revision 1.6 1996/09/27 08:27:59 hewett** Move the defines for BEGIN_EXTERN_C/END_EXTERN_C to config/include/osconfig.h** Added support for Win32 by conditionally including <WINSOCK.h>.**** Revision 1.5 1996/09/24 16:22:36 hewett** Added preliminary support for the Macintosh environment (GUSI library).**** Revision 1.4 1996/06/20 07:31:09 hewett** Corrected compilation problem when including <sys/socket.h> on** DEC Alpha OSF/1.**** Revision 1.3 1996/05/03 10:30:41 hewett** Added some common include files.**** Revision 1.2 1996/04/25 16:05:44 hewett** Added prototypes for some network functions if not available on system.**** Revision 1.1.1.1 1996/03/26 18:38:45 hewett** Initial Release.*****/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -