From 4e091b7bcfacbb570258f0422be4a86a1afd6e3f Mon Sep 17 00:00:00 2001 From: "mcmullen%netscape.com" Date: Tue, 8 Dec 1998 22:43:57 +0000 Subject: [PATCH] First Checked In. --- base/src/nsFileStream.cpp | 128 ++++++++++++++++++++++++++++++++++++++ xpcom/io/nsFileStream.cpp | 128 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 256 insertions(+) create mode 100644 base/src/nsFileStream.cpp create mode 100644 xpcom/io/nsFileStream.cpp diff --git a/base/src/nsFileStream.cpp b/base/src/nsFileStream.cpp new file mode 100644 index 000000000000..6a35185d4e72 --- /dev/null +++ b/base/src/nsFileStream.cpp @@ -0,0 +1,128 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * The contents of this file are subject to the Netscape Public License + * Version 1.0 (the "NPL"); you may not use this file except in + * compliance with the NPL. You may obtain a copy of the NPL at + * http://www.mozilla.org/NPL/ + * + * Software distributed under the NPL is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + * for the specific language governing rights and limitations under the + * NPL. + * + * The Initial Developer of this code under the NPL is Netscape + * Communications Corporation. Portions created by Netscape are + * Copyright (C) 1998 Netscape Communications Corporation. All Rights + * Reserved. + */ + +// First checked in on 98/12/08 by John R. McMullen. +// Since nsFileStream.h is entirely templates, common code (such as open()) +// does not actually depend on the charT, can be placed here. + +#include "nsFileStream.h" + +#ifdef XP_MAC +#include +#endif + +//---------------------------------------------------------------------------------------- +PRFileDesc* nsFileStreamHelpers::open( + const nsFilePath& inFile, + ios_base::openmode mode, + PRIntn accessMode) +//---------------------------------------------------------------------------------------- +{ + PRFileDesc* descriptor = 0; + const ios_base::openmode valid_modes[]= + { + ios_base::out, + ios_base::out | ios_base::app, + ios_base::out | ios_base::trunc, + ios_base::in, + ios_base::in | ios_base::out, + ios_base::in | ios_base::out | ios_base::trunc, +// ios_base::out | ios_base::binary, +// ios_base::out | ios_base::app | ios_base::binary, +// ios_base::out | ios_base::trunc | ios_base::binary, +// ios_base::in | ios_base::binary, +// ios_base::in | ios_base::out | ios_base::binary, +// ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary, + 0 + }; + + const int nspr_modes[]={ + PR_WRONLY | PR_CREATE_FILE, + PR_WRONLY | PR_CREATE_FILE | PR_APPEND, + PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, + PR_RDONLY, + PR_RDONLY | PR_APPEND, + PR_RDWR | PR_CREATE_FILE, + PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE, +// "wb", +// "ab", +// "wb", +// "rb", +// "r+b", +// "w+b", + 0 }; + int ind=0; + while (valid_modes[ind] && valid_modes[ind] != (mode&~ios_base::ate)) + ++ind; + if (!nspr_modes[ind]) + return 0; + +#ifdef XP_MAC + // Use the file spec to open the file, because one path can be common to + // several files on the Macintosh (you can have several volumes with the + // same name, see). + descriptor = 0; + if (inFile.GetNativeSpec().Error() != noErr) + return 0; + OSErr err = noErr; +#if DEBUG + const OSType kCreator = 'CWIE'; +#else + const OSType kCreator = 'MOSS'; +#endif + nsNativeFileSpec nativeSpec = inFile.GetNativeSpec(); + FSSpec* spec = (FSSpec*)nativeSpec; + if (nspr_modes[ind] & PR_CREATE_FILE) + err = FSpCreate(spec, kCreator, 'TEXT', 0); + if (err == dupFNErr) + err = noErr; + if (err != noErr) + return 0; + + SInt8 perm; + if (nspr_modes[ind] & PR_RDWR) + perm = fsRdWrPerm; + else if (nspr_modes[ind] & PR_WRONLY) + perm = fsWrPerm; + else + perm = fsRdPerm; + + short refnum; + err = FSpOpenDF(spec, perm, &refnum); + + if (err == noErr && (nspr_modes[ind] & PR_TRUNCATE)) + err = SetEOF(refnum, 0); + if (err == noErr && (nspr_modes[ind] & PR_APPEND)) + err = SetFPos(refnum, fsFromLEOF, 0); + if (err != noErr) + return 0; + + if ((descriptor = PR_ImportFile(refnum)) == 0) + return 0; +#else + // Platforms other than Macintosh... + if ((descriptor = PR_Open(inFile, nspr_modes[ind], accessMode)) != 0) +#endif + if (mode&ios_base::ate && PR_Seek(descriptor, 0, PR_SEEK_END) >= 0) + { + PR_Close(descriptor); + descriptor = 0; + return 0; + } + return descriptor; +} // nsFileStreamHelpers::open diff --git a/xpcom/io/nsFileStream.cpp b/xpcom/io/nsFileStream.cpp new file mode 100644 index 000000000000..6a35185d4e72 --- /dev/null +++ b/xpcom/io/nsFileStream.cpp @@ -0,0 +1,128 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * The contents of this file are subject to the Netscape Public License + * Version 1.0 (the "NPL"); you may not use this file except in + * compliance with the NPL. You may obtain a copy of the NPL at + * http://www.mozilla.org/NPL/ + * + * Software distributed under the NPL is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + * for the specific language governing rights and limitations under the + * NPL. + * + * The Initial Developer of this code under the NPL is Netscape + * Communications Corporation. Portions created by Netscape are + * Copyright (C) 1998 Netscape Communications Corporation. All Rights + * Reserved. + */ + +// First checked in on 98/12/08 by John R. McMullen. +// Since nsFileStream.h is entirely templates, common code (such as open()) +// does not actually depend on the charT, can be placed here. + +#include "nsFileStream.h" + +#ifdef XP_MAC +#include +#endif + +//---------------------------------------------------------------------------------------- +PRFileDesc* nsFileStreamHelpers::open( + const nsFilePath& inFile, + ios_base::openmode mode, + PRIntn accessMode) +//---------------------------------------------------------------------------------------- +{ + PRFileDesc* descriptor = 0; + const ios_base::openmode valid_modes[]= + { + ios_base::out, + ios_base::out | ios_base::app, + ios_base::out | ios_base::trunc, + ios_base::in, + ios_base::in | ios_base::out, + ios_base::in | ios_base::out | ios_base::trunc, +// ios_base::out | ios_base::binary, +// ios_base::out | ios_base::app | ios_base::binary, +// ios_base::out | ios_base::trunc | ios_base::binary, +// ios_base::in | ios_base::binary, +// ios_base::in | ios_base::out | ios_base::binary, +// ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary, + 0 + }; + + const int nspr_modes[]={ + PR_WRONLY | PR_CREATE_FILE, + PR_WRONLY | PR_CREATE_FILE | PR_APPEND, + PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, + PR_RDONLY, + PR_RDONLY | PR_APPEND, + PR_RDWR | PR_CREATE_FILE, + PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE, +// "wb", +// "ab", +// "wb", +// "rb", +// "r+b", +// "w+b", + 0 }; + int ind=0; + while (valid_modes[ind] && valid_modes[ind] != (mode&~ios_base::ate)) + ++ind; + if (!nspr_modes[ind]) + return 0; + +#ifdef XP_MAC + // Use the file spec to open the file, because one path can be common to + // several files on the Macintosh (you can have several volumes with the + // same name, see). + descriptor = 0; + if (inFile.GetNativeSpec().Error() != noErr) + return 0; + OSErr err = noErr; +#if DEBUG + const OSType kCreator = 'CWIE'; +#else + const OSType kCreator = 'MOSS'; +#endif + nsNativeFileSpec nativeSpec = inFile.GetNativeSpec(); + FSSpec* spec = (FSSpec*)nativeSpec; + if (nspr_modes[ind] & PR_CREATE_FILE) + err = FSpCreate(spec, kCreator, 'TEXT', 0); + if (err == dupFNErr) + err = noErr; + if (err != noErr) + return 0; + + SInt8 perm; + if (nspr_modes[ind] & PR_RDWR) + perm = fsRdWrPerm; + else if (nspr_modes[ind] & PR_WRONLY) + perm = fsWrPerm; + else + perm = fsRdPerm; + + short refnum; + err = FSpOpenDF(spec, perm, &refnum); + + if (err == noErr && (nspr_modes[ind] & PR_TRUNCATE)) + err = SetEOF(refnum, 0); + if (err == noErr && (nspr_modes[ind] & PR_APPEND)) + err = SetFPos(refnum, fsFromLEOF, 0); + if (err != noErr) + return 0; + + if ((descriptor = PR_ImportFile(refnum)) == 0) + return 0; +#else + // Platforms other than Macintosh... + if ((descriptor = PR_Open(inFile, nspr_modes[ind], accessMode)) != 0) +#endif + if (mode&ios_base::ate && PR_Seek(descriptor, 0, PR_SEEK_END) >= 0) + { + PR_Close(descriptor); + descriptor = 0; + return 0; + } + return descriptor; +} // nsFileStreamHelpers::open