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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
/****************************************************************************
* fileinputoutput.cpp
*
* This module implements the classes handling file input and output.
*
* from Persistence of Vision(tm) Ray Tracer version 3.6.
* Copyright 1991-2003 Persistence of Vision Team
* Copyright 2003-2004 Persistence of Vision Raytracer Pty. Ltd.
*---------------------------------------------------------------------------
* NOTICE: This source code file is provided so that users may experiment
* with enhancements to POV-Ray and to port the software to platforms other
* than those supported by the POV-Ray developers. There are strict rules
* regarding how you are permitted to use this file. These rules are contained
* in the distribution and derivative versions licenses which should have been
* provided with this file.
*
* These licences may be found online, linked from the end-user license
* agreement that is located at http://www.povray.org/povlegal.html
*---------------------------------------------------------------------------
* This program is based on the popular DKB raytracer version 2.12.
* DKBTrace was originally written by David K. Buck.
* DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
*---------------------------------------------------------------------------
* $File: //depot/povray/3.6-release/source/base/fileinputoutput.cpp $
* $Revision: #2 $
* $Change: 2939 $
* $DateTime: 2004/07/04 13:43:26 $
* $Author: root $
* $Log$
*****************************************************************************/
#include <cstdlib>
#include <cstdarg>
#include "configbase.h"
#include "fileinputoutput.h"
#include "stringutilities.h"
#include "platformbase.h"
#include "pointer.h"
BEGIN_POV_BASE_NAMESPACE
#ifndef POV_IS1
#define POV_IS1 ""
#endif
#ifndef POV_IS2
#define POV_IS2 ""
#endif
#ifndef POV_IS3
#define POV_IS3 ""
#endif
#ifndef POV_IS4
#define POV_IS4 ""
#endif
POV_File_Extensions gPOV_File_Extensions[POV_File_Unknown_Count] =
{
{{ "", "", "", "" }}, // POV_File_Unknown
{{ ".tga", ".TGA", "", "" }}, // POV_File_Image_Targa
{{ ".png", ".PNG", "", "" }}, // POV_File_Image_PNG
{{ ".ppm", ".PPM", "", "" }}, // POV_File_Image_PPM
{{ ".pgm", ".PGM", "", "" }}, // POV_File_Image_PGM
{{ ".gif", ".GIF", "", "" }}, // POV_File_Image_GIF
{{ ".iff", ".IFF", "", "" }}, // POV_File_Image_IFF
{{ ".jpg", ".JPG", ".jpeg", ".JPEG" }}, // POV_File_Image_JPEG
{{ ".tif", ".TIF", ".tiff", ".TIFF" }}, // POV_File_Image_TIFF
{{ POV_IS1, POV_IS2, POV_IS3, POV_IS4 }}, // POV_File_Image_System
{{ ".pov", ".POV", "", "" }}, // POV_File_Text_POV
{{ ".inc", ".INC", "", "" }}, // POV_File_Text_INC
{{ ".ini", ".INI", "", "" }}, // POV_File_Text_INI
{{ ".csv", ".CSV", "", "" }}, // POV_File_Text_CSV
{{ ".txt", ".TXT", "", "" }}, // POV_File_Text_Stream
{{ "", "", "", "" }}, // POV_File_Text_User
{{ ".df3", ".DF3", "", "" }}, // POV_File_Data_DF3
{{ ".rca", ".RCA", "", "" }}, // POV_File_Data_RCA
{{ ".log", ".LOG", "", "" }}, // POV_File_Data_LOG
{{ ".ttf", ".TTF", "", "" }} // POV_File_Font_TTF
};
IOBase::IOBase(unsigned int dir, unsigned int type)
{
filetype = type;
direction = dir;
fail = true;
f = NULL;
}
IOBase::~IOBase()
{
close();
}
bool IOBase::open(const char *Name, unsigned int Flags /* = 0 */)
{
char mode[8];
close();
if((Flags & append) == 0)
{
switch(direction)
{
case input:
strcpy(mode, "r");
break;
case output:
strcpy(mode, "w");
break;
case io:
strcpy(mode, "w+");
break;
default:
return false;
}
}
else
{
// we cannot use append mode here, since "a" mode is totally incompatible with any
// output file format that requires in-place updates(i.e. writing to any location
// other than the end of the file). BMP files are in this category. In theory, "r+"
// can do anything "a" can do(with appropriate use of seek()) so append mode should
// not be needed.
strcpy(mode, "r+");
}
strcat(mode, "b");
f = NULL;
if(pov_stricmp(Name, "stdin") == 0)
{
if(direction != input ||(Flags & append) != 0)
return false;
f = stdin;
}
else if(pov_stricmp(Name, "stdout") == 0)
{
if(direction != output ||(Flags & append) != 0)
return false;
f = stdout;
}
else
{
if((f = fopen(Name, mode)) == NULL)
{
if((Flags & append) == 0)
return false;
// to maintain traditional POV +c(continue) mode compatibility, if
// the open for append of an existing file fails, we allow a new file
// to be created.
mode [0] = 'w';
if((f = fopen(Name, mode)) == NULL)
return false;
}
}
fail = false;
if((Flags & append) != 0)
{
if(!seekg(0, seek_end))
{
close();
return false;
}
}
return true;
}
bool IOBase::close(void)
{
if(f != NULL)
{
fclose(f);
f = NULL;
}
fail = true;
return true;
}
IOBase& IOBase::flush(void)
{
if(f != NULL)
fflush(f);
return *this;
}
IOBase& IOBase::read(void *buffer, unsigned long count)
{
if(!fail && count > 0)
fail = fread(buffer, count, 1, f) != 1;
return *this;
}
IOBase& IOBase::write(void *buffer, unsigned long count)
{
if(!fail && count > 0)
fail = fwrite(buffer, count, 1, f) != 1;
return *this;
}
// Strictly speaking, this should -not- be called seekg, since 'seekg'(an iostreams
// term) applies only to an input stream, and therefore the use of this name here
// implies that only the input stream will be affected on streams opened for I/O
//(which is not the case with fseek, since fseek moves the pointer for output too).
// However, the macintosh code seems to need it to be called seekg, so it is ...
IOBase& IOBase::seekg(unsigned long pos, unsigned int whence /* = seek_set */)
{
if(!fail)
fail = fseek(f, pos, whence) != 0;
return *this;
}
IStream::IStream(const unsigned int stype) : IOBase(input, stype)
{
}
IStream::~IStream()
{
}
int IStream::Read_Short(void)
{
short result;
read((char *) &result, sizeof(short));
return result;
}
int IStream::Read_Int(void)
{
int result;
read((char *) &result, sizeof(int));
return result;
}
long IStream::Read_Long(void)
{
long result;
read((char *) &result, sizeof(long));
return result;
}
IStream& IStream::UnRead_Byte(int c)
{
if(!fail)
fail = ungetc(c, f) != c;
return *this;
}
IStream& IStream::getline(char *s, unsigned long buflen)
{
int chr = 0;
if(feof(f) != 0)
fail = true;
if(!fail && buflen > 0)
{
while(buflen > 1)
{
chr = fgetc(f);
if(chr == EOF)
break;
else if(chr == 10)
{
chr = fgetc(f);
if(chr != 13)
ungetc(chr, f);
break;
}
else if(chr == 13)
{
chr = fgetc(f);
if(chr != 10)
ungetc(chr, f);
break;
}
*s = chr;
s++;
buflen--;
}
*s = 0;
}
return *this;
}
OStream::OStream(const unsigned int stype) : IOBase(output, stype)
{
}
OStream::~OStream()
{
}
void OStream::printf(const char *format, ...)
{
va_list marker;
char buffer[1024];
va_start(marker, format);
vsnprintf(buffer, 1023, format, marker);
va_end(marker);
*this << buffer;
}
IStream *New_IStream(const char *sname, const unsigned int stype)
{
Pointer<IStream> istreamptr(POV_PLATFORM_BASE.CreateIStream(stype));
if(istreamptr == NULL)
return NULL;
if(istreamptr->open(sname) == 0)
return NULL;
return istreamptr.release();
}
OStream *New_OStream(const char *sname, const unsigned int stype, const bool sappend)
{
Pointer<OStream> ostreamptr(POV_PLATFORM_BASE.CreateOStream(stype));
unsigned int Flags = IOBase::none;
if(ostreamptr == NULL)
return NULL;
if(sappend)
Flags |= IOBase::append;
if(ostreamptr->open(sname, Flags) == 0)
return NULL;
return ostreamptr.release();
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
int Has_Extension(const char *name)
{
if (name!=NULL)
{
const char *p=strrchr(name, '.');
if (p!=NULL)
{
if ((strlen(name)-(p-name))<=4)
{
return (true);
}
}
}
return (false);
}
void Split_Path(char *s, char *p, char *f)
{
char *l;
strcpy(p,s);
if ((l=strrchr(p,FILENAME_SEPARATOR))==NULL)
{
if ((l=strrchr(p,DRIVE_SEPARATOR))==NULL)
{
strcpy(f,s);
p[0]='\0';
return;
}
}
l++;
strcpy(f,l);
*l='\0';
}
bool File_Exist(const char *name)
{
FILE *file = fopen(name, "r");
if(file != NULL)
fclose(file);
else
return false;
return true;
}
END_POV_BASE_NAMESPACE
|