1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
/*
*
* Copyright (C) 1996-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Andrew Hewett
*
* Purpose: Provide prototype of command line argument gathering routine
* for OS environments which cannot pass arguments on the command line.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:14:06 $
* CVS/RCS Revision: $Revision: 1.27 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmdata/cmdlnarg.h"
#include "dcmtk/dcmdata/dctypes.h"
/*
** prepareCmdLineArgs
**
** Should do nothing on Unix OS's.
** On other OS's (e.g. MacOS with CW6) allows command line arguments
** to be input from the standard input.
*/
#ifdef HAVE_EMPTY_ARGC_ARGV
#define INCLUDE_CSTDLIB
#define INCLUDE_CSTDIO
#define INCLUDE_CSTRING
#include "dcmtk/ofstd/ofstdinc.h"
#include "dcmtk/ofstd/ofstream.h"
void prepareCmdLineArgs(int& argc, char* argv[],
const char* progname)
{
const int bufsize = 2024;
char buf[bufsize];
char arg[1024];
argv[0] = new char[strlen(progname)+1];
strcpy(argv[0], progname);
argc = 1;
ofConsole.lockCout() << "CmdLineArgs-> ";
ofConsole.unlockCout();
cin.getline(buf, bufsize);
istringstream is(buf);
arg[0] = '\0';
while (is.good()) {
is >> arg;
if (strlen(arg) > 0) {
argv[argc] = new char[strlen(arg)+1];
strcpy(argv[argc], arg);
argc++;
}
arg[0] = '\0';
}
}
#else
#define INCLUDE_CSTDLIB
#define INCLUDE_CSTDIO
#define INCLUDE_CSTRING
#include "dcmtk/ofstd/ofstdinc.h"
#ifdef HAVE_IO_H
#include <io.h>
#endif
BEGIN_EXTERN_C
#ifdef HAVE_FCNTL_H
#include <fcntl.h> /* for O_BINARY */
#endif
END_EXTERN_C
#include "dcmtk/ofstd/ofstd.h"
#include "dcmtk/ofstd/ofstream.h"
void prepareCmdLineArgs(int& /* argc */, char** /* argv */,
const char* /* progname */)
{
#ifdef _WIN32
#ifndef DCMTK_GUI
#ifndef __CYGWIN__
/* Map stderr onto stdout (cannot redirect stderr under windows).
* Remove any buffering (windows uses a 2k buffer for stdout when not
* writing to the console. since dcmtk uses mixed stdout, stderr
* cout and cerr, this results in _very_ mixed up output).
*/
/* duplicate the stderr file descriptor be the same as stdout */
close(fileno(stderr));
int fderr = dup(fileno(stdout));
if (fderr != fileno(stderr))
{
char buf[256];
DCMDATA_ERROR("INTERNAL ERROR: cannot map stderr to stdout: "
<< OFStandard::strerror(errno, buf, sizeof(buf)));
}
#ifndef NO_IOS_BASE_ASSIGN
/* make cout refer to cerr. This does not work with all iostream implementations :-( */
cout = cerr;
#endif
/* make stdout the same as stderr */
*stdout = *stderr;
#ifdef USE_BINARY_MODE_FOR_STDOUT_ON_WINDOWS
/* use binary mode for stdout in order to be more consistent with common Unix behavior */
setmode(fileno(stdout), O_BINARY);
#endif
#ifndef __BORLANDC__ /* setvbuf on stdout/stderr does not work with Borland C++ */
/* make sure the buffering is removed */
if (setvbuf(stdout, NULL, _IONBF, 0 ) != 0 )
{
char buf[256];
DCMDATA_ERROR("INTERNAL ERROR: cannot unbuffer stdout: "
<< OFStandard::strerror(errno, buf, sizeof(buf)));
}
if (setvbuf(stderr, NULL, _IONBF, 0 ) != 0 )
{
char buf[256];
DCMDATA_ERROR("INTERNAL ERROR: cannot unbuffer stderr: "
<< OFStandard::strerror(errno, buf, sizeof(buf)));
}
#endif /* __BORLANDC__ */
#endif
#endif
#endif
/* no need to process the arguments */
}
#endif
/*
** CVS/RCS Log:
** $Log: cmdlnarg.cc,v $
** Revision 1.27 2010-10-14 13:14:06 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.26 2010-06-11 14:32:02 joergr
** On Windows systems, the binary mode for stdout is now disabled by default
** since this causes newlines in textual output to be converted to LF only.
**
** Revision 1.25 2010-06-03 13:29:43 joergr
** Fixed issues on Windows platforms introduced with last commit.
**
** Revision 1.24 2010-06-03 10:29:20 joergr
** Replaced calls to strerror() by new helper function OFStandard::strerror()
** which results in using the thread safe version of strerror() if available.
**
** Revision 1.23 2010-04-23 08:11:02 joergr
** On Windows systems, use binary mode for stdout in order to be more consistent
** with common Unix behavior, e.g. useful for command line tools like dcm2pnm.
**
** Revision 1.22 2009-11-13 14:41:54 joergr
** Fixed wrong header include (now, "oflog.h" instead of "ofconsol.h" required).
**
** Revision 1.21 2009-11-10 12:38:29 uli
** Fix compilation on windows.
**
** Revision 1.20 2009-11-04 09:58:08 uli
** Switched to logging mechanism provided by the "new" oflog module
**
** Revision 1.19 2006-08-15 15:49:54 meichel
** Updated all code in module dcmdata to correctly compile when
** all standard C++ classes remain in namespace std.
**
** Revision 1.18 2005/12/08 15:40:55 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.17 2004/01/16 13:51:38 joergr
** Removed acknowledgements with e-mail addresses from CVS log.
**
** Revision 1.16 2003/10/13 13:32:15 meichel
** Disabled setvbuf calls on stdout/stderr on Win32/Borland C++.
**
** Revision 1.15 2002/11/27 12:06:42 meichel
** Adapted module dcmdata to use of new header file ofstdinc.h
**
** Revision 1.14 2002/04/16 13:43:14 joergr
** Added configurable support for C++ ANSI standard includes (e.g. streams).
**
** Revision 1.13 2001/06/01 15:48:57 meichel
** Updated copyright header
**
** Revision 1.12 2000/04/14 15:55:02 meichel
** Dcmdata library code now consistently uses ofConsole for error output.
**
** Revision 1.11 2000/03/08 16:26:28 meichel
** Updated copyright header.
**
** Revision 1.10 2000/03/06 18:13:08 joergr
** Added missing include (reported by MSVC).
**
** Revision 1.9 2000/03/03 14:05:30 meichel
** Implemented library support for redirecting error messages into memory
** instead of printing them to stdout/stderr for GUI applications.
**
** Revision 1.8 2000/02/23 15:11:45 meichel
** Corrected macro for Borland C++ Builder 4 workaround.
**
** Revision 1.7 2000/02/01 10:12:04 meichel
** Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,
** workaround for bug in compiler header files.
**
** Revision 1.6 1999/05/04 12:20:20 joergr
** Minor changes to support Cygwin B20.1 (check __CYGWIN__ to distinguish from
** MSVC which also defines _WIN32).
**
** Revision 1.5 1999/04/21 15:45:10 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.4 1999/03/31 09:25:14 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.3 1999/03/17 11:09:21 meichel
** Added code to prepareCmdLineArgs() to redirect stderr, cout,
** cerr to stdout on Windows and make output unbuffered.
** This allows to redirect the output of DCMTK tools to file on Windows.
**
** Revision 1.2 1997/01/13 15:39:23 hewett
** Now includes cmdlnarg.h
**
** Revision 1.1 1996/09/24 16:18:41 hewett
** Moved from dcmdata/apps and dcmnet/apps to be part of the dcmdata library.
**
** Revision 1.2 1996/09/03 11:39:00 hewett
** Added copyright information.
**
** Revision 1.1.1.1 1996/03/26 18:38:44 hewett
** Initial Release.
**
** Revision 1.1.1.1 1996/03/25 15:17:00 hewett
** dcmnet DICOM network libraries. Adapted from CEN network libraries
** for use with the DICOM C++ dcmdata toolkit.
**
** Revision 1.1 1996/03/12 15:08:06 hewett
** Main program argc, argv handling for environments which do not make
** argc,argv available in main().
**
*/
|