2002-01-29 21:42:38 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-04-18 14:21:17 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-21 07:38:26 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-10-25 22:45:56 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-08-21 07:38:26 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-10-25 22:45:56 +00:00
|
|
|
*
|
2000-05-15 06:41:00 +00:00
|
|
|
* Contributor(s):
|
2004-04-18 14:21:17 +00:00
|
|
|
* Doug Turner <dougt@netscape.com>
|
|
|
|
* Christopher Blizzard <blizzard@mozilla.org>
|
|
|
|
* Darin Fisher <darin@netscape.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-21 07:38:26 +00:00
|
|
|
|
2002-05-03 06:01:29 +00:00
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsISimpleEnumerator;
|
1999-10-25 22:45:56 +00:00
|
|
|
|
2001-03-24 00:22:18 +00:00
|
|
|
/**
|
|
|
|
* This is the only correct cross-platform way to specify a file.
|
|
|
|
* Strings are not such a way. If you grew up on windows or unix, you
|
2002-05-03 06:01:29 +00:00
|
|
|
* may think they are. Welcome to reality.
|
|
|
|
*
|
|
|
|
* All methods with string parameters have two forms. The preferred
|
2002-05-07 23:07:19 +00:00
|
|
|
* form operates on UCS-2 encoded characters strings. An alternate
|
2002-05-03 06:01:29 +00:00
|
|
|
* form operates on characters strings encoded in the "native" charset.
|
|
|
|
*
|
|
|
|
* A string containing characters encoded in the native charset cannot
|
|
|
|
* be safely passed to javascript via xpconnect. Therefore, the "native
|
|
|
|
* methods" are not scriptable.
|
|
|
|
*
|
2002-05-13 22:55:29 +00:00
|
|
|
* @status FROZEN
|
2001-03-24 00:22:18 +00:00
|
|
|
*/
|
1999-08-21 07:38:26 +00:00
|
|
|
[scriptable, uuid(c8c0a080-0868-11d3-915f-d9d889d48e3c)]
|
|
|
|
interface nsIFile : nsISupports
|
|
|
|
{
|
1999-08-24 21:51:32 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* Create Types
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* NORMAL_FILE_TYPE - A normal file.
|
|
|
|
* DIRECTORY_TYPE - A directory/folder.
|
1999-09-01 23:51:11 +00:00
|
|
|
*/
|
|
|
|
const unsigned long NORMAL_FILE_TYPE = 0;
|
|
|
|
const unsigned long DIRECTORY_TYPE = 1;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* append[Native]
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* This function is used for constructing a descendent of the
|
2000-05-15 06:41:00 +00:00
|
|
|
* current nsIFile.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* @param node
|
|
|
|
* A string which is intended to be a child node of the nsIFile.
|
2002-06-11 19:26:04 +00:00
|
|
|
* For the |appendNative| method, the node must be in the native
|
|
|
|
* filesystem charset.
|
1999-09-01 23:51:11 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
void append(in AString node);
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] void appendNative(in ACString node);
|
1999-10-23 04:51:35 +00:00
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* Normalize the pathName (e.g. removing .. and . components on Unix).
|
2000-01-24 21:28:28 +00:00
|
|
|
*/
|
1999-12-02 21:45:50 +00:00
|
|
|
void normalize();
|
1999-11-29 14:55:03 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
1999-10-23 04:51:35 +00:00
|
|
|
* create
|
1999-09-01 23:51:11 +00:00
|
|
|
*
|
2000-05-15 06:41:00 +00:00
|
|
|
* This function will create a new file or directory in the
|
|
|
|
* file system. Any nodes that have not been created or
|
|
|
|
* resolved, will be. If the file or directory already
|
1999-10-23 04:51:35 +00:00
|
|
|
* exists create() will return NS_ERROR_FILE_ALREADY_EXISTS.
|
2000-05-15 06:41:00 +00:00
|
|
|
*
|
1999-10-23 04:51:35 +00:00
|
|
|
* @param type
|
1999-12-02 21:45:50 +00:00
|
|
|
* This specifies the type of file system object
|
|
|
|
* to be made. The only two types at this time
|
|
|
|
* are file and directory which are defined above.
|
|
|
|
* If the type is unrecongnized, we will return an
|
|
|
|
* error (NS_ERROR_FILE_UNKNOWN_TYPE).
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
|
|
|
* @param permissions
|
2000-06-24 01:50:53 +00:00
|
|
|
* The unix style octal permissions. This may
|
1999-12-02 21:45:50 +00:00
|
|
|
* be ignored on systems that do not need to do
|
|
|
|
* permissions.
|
1999-09-01 23:51:11 +00:00
|
|
|
*/
|
1999-12-02 21:45:50 +00:00
|
|
|
void create(in unsigned long type, in unsigned long permissions);
|
1999-10-23 04:51:35 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
2002-06-11 19:26:04 +00:00
|
|
|
* Accessor to the leaf name of the file itself.
|
|
|
|
* For the |nativeLeafName| method, the nativeLeafName must
|
|
|
|
* be in the native filesystem charset.
|
1999-09-01 23:51:11 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
attribute AString leafName;
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] attribute ACString nativeLeafName;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* copyTo[Native]
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
2000-05-15 06:41:00 +00:00
|
|
|
* This will copy this file to the specified newParentDir.
|
1999-09-01 23:51:11 +00:00
|
|
|
* If a newName is specified, the file will be renamed.
|
2000-05-15 06:41:00 +00:00
|
|
|
* If 'this' is not created we will return an error
|
1999-10-23 04:51:35 +00:00
|
|
|
* (NS_ERROR_FILE_TARGET_DOES_NOT_EXIST).
|
|
|
|
*
|
2002-03-08 00:05:34 +00:00
|
|
|
* copyTo may fail if the file already exists in the destination
|
|
|
|
* directory.
|
|
|
|
*
|
1999-12-02 01:19:10 +00:00
|
|
|
* copyTo will NOT resolve aliases/shortcuts during the copy.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
|
|
|
* @param newParentDir
|
2000-05-15 06:41:00 +00:00
|
|
|
* This param is the destination directory. If the
|
2002-05-06 22:45:30 +00:00
|
|
|
* newParentDir is null, copyTo() will use the parent
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* directory of this file. If the newParentDir is not
|
2002-05-03 06:01:29 +00:00
|
|
|
* empty and is not a directory, an error will be
|
2002-06-11 19:26:04 +00:00
|
|
|
* returned (NS_ERROR_FILE_DESTINATION_NOT_DIR). For the
|
|
|
|
* |CopyToNative| method, the newName must be in the
|
|
|
|
* native filesystem charset.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
|
|
|
* @param newName
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* This param allows you to specify a new name for
|
2002-05-03 06:01:29 +00:00
|
|
|
* the file to be copied. This param may be empty, in
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* which case the current leaf name will be used.
|
1999-12-02 01:19:10 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
void copyTo(in nsIFile newParentDir, in AString newName);
|
2002-06-13 20:13:17 +00:00
|
|
|
[noscript] void CopyToNative(in nsIFile newParentDir, in ACString newName);
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-10-23 04:51:35 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* copyToFollowingLinks[Native]
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* This function is identical to copyTo with the exception that,
|
|
|
|
* as the name implies, it follows symbolic links. The XP_UNIX
|
2002-06-11 19:26:04 +00:00
|
|
|
* implementation always follow symbolic links when copying. For
|
|
|
|
* the |CopyToFollowingLinks| method, the newName must be in the
|
|
|
|
* native filesystem charset.
|
1999-10-23 04:51:35 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
void copyToFollowingLinks(in nsIFile newParentDir, in AString newName);
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] void copyToFollowingLinksNative(in nsIFile newParentDir, in ACString newName);
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* moveTo[Native]
|
1999-09-01 23:51:11 +00:00
|
|
|
*
|
2002-11-13 14:04:51 +00:00
|
|
|
* A method to move this file or directory to newParentDir.
|
|
|
|
* If a newName is specified, the file or directory will be renamed.
|
2000-05-15 06:41:00 +00:00
|
|
|
* If 'this' is not created we will return an error
|
1999-10-23 04:51:35 +00:00
|
|
|
* (NS_ERROR_FILE_TARGET_DOES_NOT_EXIST).
|
2002-11-13 14:04:51 +00:00
|
|
|
* If 'this' is a file, and the destination file already exists, moveTo
|
|
|
|
* will replace the old file.
|
2009-03-24 00:44:37 +00:00
|
|
|
* This object is updated to refer to the new file.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
1999-12-02 01:19:10 +00:00
|
|
|
* moveTo will NOT resolve aliases/shortcuts during the copy.
|
2002-11-13 14:04:51 +00:00
|
|
|
* moveTo will do the right thing and allow copies across volumes.
|
|
|
|
* moveTo will return an error (NS_ERROR_FILE_DIR_NOT_EMPTY) if 'this' is
|
|
|
|
* a directory and the destination directory is not empty.
|
|
|
|
* moveTo will return an error (NS_ERROR_FILE_ACCESS_DENIED) if 'this' is
|
|
|
|
* a directory and the destination directory is not writable.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
|
|
|
* @param newParentDir
|
2000-05-15 06:41:00 +00:00
|
|
|
* This param is the destination directory. If the
|
2002-05-03 06:01:29 +00:00
|
|
|
* newParentDir is empty, moveTo() will rename the file
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* within its current directory. If the newParentDir is
|
2002-05-03 06:01:29 +00:00
|
|
|
* not empty and does not name a directory, an error will
|
2002-06-11 19:26:04 +00:00
|
|
|
* be returned (NS_ERROR_FILE_DESTINATION_NOT_DIR). For
|
|
|
|
* the |moveToNative| method, the newName must be in the
|
|
|
|
* native filesystem charset.
|
1999-10-23 04:51:35 +00:00
|
|
|
*
|
|
|
|
* @param newName
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* This param allows you to specify a new name for
|
2002-05-03 06:01:29 +00:00
|
|
|
* the file to be moved. This param may be empty, in
|
Fixes to use atomic rename(2) if possible in nsLocalFile::MoveTo (33098, r=?),
plus a bunch of other fixes and cleanups:
- Fix comment misstatements of fact in nsIFile.idl, improve style slightly.
- Fix typo in comment in nsILocalFile.idl.
- Avoid gratuitous nsCString and nsXPIDLCString copy-constructions, which
entail malloc'ing, in nsLocalFileUnix.cpp's CopyTo and GetParent methods.
But do use nsXPIDLCString instead of raw nsMemory::Alloc/Free.
- Get rid of unnecessary mLL_II2L and mLL_L2II macros, use "prlong.h" API only.
Also use the LL_* macros consistently in case a Unix lacking long long type
support wants to use this code.
* BTW, the "Date" methods should be renamed to use "Time" instead -- after all
PRTime is the type, and traditionally "time" refers to the time-number, a
scalar independent of one's position on the surface of the earth, while
"date" refers to a struct full of locale-specific information derived from
time and some "environment" variables such as DST. Can we rename these
nsIFile methods before Mozilla 0.9 / Netscape 6?
- Use CHECK_mPath consistently and first, before any assertions relating to
arguments (which logically come after the 'this' parameter CHECK_mPath is
making assertions about).
- Use nsCOMPtr for singly-inheriting implementations of XPCOM interfaces, to
avoid scary-when-scaled 0-refcnt instances from being handled (these all
got a ref via QI or equivalent soon enough, but you never know). This also
removed some naked deletes.
- Canonize all paths copied into mPath to lack trailing slashes, so we don't
need to strip trailing slashes elsewhere, in higher-frequency methods (you
set path less often than you get it or a substring of it).
- ssize_t for strlen return values.
- Since shaver used a function pointer to consolidate creat/mkdir logic, but
didn't fold the necessary close of the new fd returned by non-failing creat
into the pointed-at function, I did that.
- AppendRelativePath forbids .. as a component (bounded by / or beginning or
end of string on either side), not just in the middle of fragment (so that
foo..bar is not an illegal relative pathname -- it should not be). BTW,
what the heck is the difference between NS_ERROR_FILE_UNRECOGNIZED_PATH and
...INVALID_PATH?
- SetLeafName was overallocating the new pathname buffer by failing to subtract
the old leafname's length.
- CopyTo was failing to return an NSRESULT_FOR_ERRNO(), it just called that
macro on a line by itself -- eek! It also contained redundant if (newFD
== nsnull) {...} cleanup code, it did a useless PR_GetFileInfo call, and it
leaked FDs on read or write error.
- Implemented CopyToFollowingLinks as a forwarded call to CopyTo, Unix does
not support "copying" a symlink via normal file i/o. Should we instead
lstat in CopyTo and if a link is the source of the copy, do readlink and
then symlink?
- Fixed the readlink method (GetTarget) to null-terminate the link string in
the out parameter (readlink does not do that for you).
- Lots of little nsnull vs. NULL vs. 0, == and != applied to boolean or null
literals, white-space, indentation, bracing, comment, and sloppy code order
(e.g., declaring an initialized variable that's not used till after early
returns) fixes. Also invert some return logic so that NS_OK is the normal,
least indented, final return.
2000-09-19 00:22:41 +00:00
|
|
|
* which case the current leaf name will be used.
|
1999-12-02 01:19:10 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
void moveTo(in nsIFile newParentDir, in AString newName);
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] void moveToNative(in nsIFile newParentDir, in ACString newName);
|
1999-10-23 04:51:35 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
|
|
|
* This will try to delete this file. The 'recursive' flag
|
|
|
|
* must be PR_TRUE to delete directories which are not empty.
|
|
|
|
*
|
|
|
|
* This will not resolve any symlinks.
|
|
|
|
*/
|
2001-07-24 18:38:25 +00:00
|
|
|
void remove(in boolean recursive);
|
1999-08-21 07:38:26 +00:00
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
|
|
|
* Attributes of nsIFile.
|
|
|
|
*/
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-12-02 21:45:50 +00:00
|
|
|
attribute unsigned long permissions;
|
|
|
|
attribute unsigned long permissionsOfLink;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
2000-05-09 19:11:14 +00:00
|
|
|
/**
|
2000-05-21 05:42:57 +00:00
|
|
|
* File Times are to be in milliseconds from
|
2000-05-15 06:41:00 +00:00
|
|
|
* midnight (00:00:00), January 1, 1970 Greenwich Mean
|
2000-05-09 19:11:14 +00:00
|
|
|
* Time (GMT).
|
|
|
|
*/
|
2001-11-26 08:05:05 +00:00
|
|
|
attribute PRInt64 lastModifiedTime;
|
|
|
|
attribute PRInt64 lastModifiedTimeOfLink;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
2000-02-04 23:06:56 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* WARNING! On the Mac, getting/setting the file size with nsIFile
|
|
|
|
* only deals with the size of the data fork. If you need to
|
|
|
|
* know the size of the combined data and resource forks use the
|
|
|
|
* GetFileSizeWithResFork() method defined on nsILocalFileMac.
|
2000-02-04 23:06:56 +00:00
|
|
|
*/
|
1999-12-02 21:45:50 +00:00
|
|
|
attribute PRInt64 fileSize;
|
|
|
|
readonly attribute PRInt64 fileSizeOfLink;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-11-29 14:55:03 +00:00
|
|
|
/**
|
1999-12-02 01:19:10 +00:00
|
|
|
* target & path
|
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* Accessor to the string path. The native version of these
|
|
|
|
* strings are not guaranteed to be a usable path to pass to
|
|
|
|
* NSPR or the C stdlib. There are problems that affect
|
|
|
|
* platforms on which a path does not fully specify a file
|
2006-11-16 09:10:09 +00:00
|
|
|
* because two volumes can have the same name (e.g., mac).
|
2002-05-03 06:01:29 +00:00
|
|
|
* This is solved by holding "private", native data in the
|
|
|
|
* nsIFile implementation. This native data is lost when
|
|
|
|
* you convert to a string.
|
1999-12-02 01:19:10 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* DO NOT PASS TO USE WITH NSPR OR STDLIB!
|
1999-12-02 01:19:10 +00:00
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* target
|
1999-12-02 01:19:10 +00:00
|
|
|
* Find out what the symlink points at. Will give error
|
|
|
|
* (NS_ERROR_FILE_INVALID_PATH) if not a symlink.
|
|
|
|
*
|
2002-05-03 06:01:29 +00:00
|
|
|
* path
|
1999-12-02 01:19:10 +00:00
|
|
|
* Find out what the nsIFile points at.
|
2002-06-11 19:26:04 +00:00
|
|
|
*
|
|
|
|
* Note that the ACString attributes are returned in the
|
|
|
|
* native filesystem charset.
|
|
|
|
*
|
1999-11-29 14:55:03 +00:00
|
|
|
*/
|
2002-05-07 23:07:19 +00:00
|
|
|
readonly attribute AString target;
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] readonly attribute ACString nativeTarget;
|
2002-05-07 23:07:19 +00:00
|
|
|
readonly attribute AString path;
|
2002-04-27 05:33:09 +00:00
|
|
|
[noscript] readonly attribute ACString nativePath;
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-12-02 21:45:50 +00:00
|
|
|
boolean exists();
|
|
|
|
boolean isWritable();
|
|
|
|
boolean isReadable();
|
|
|
|
boolean isExecutable();
|
|
|
|
boolean isHidden();
|
|
|
|
boolean isDirectory();
|
|
|
|
boolean isFile();
|
|
|
|
boolean isSymlink();
|
1999-11-29 14:55:03 +00:00
|
|
|
/**
|
|
|
|
* Not a regular file, not a directory, not a symlink.
|
|
|
|
*/
|
2000-05-15 06:41:00 +00:00
|
|
|
boolean isSpecial();
|
|
|
|
|
2002-05-03 06:01:29 +00:00
|
|
|
/**
|
2000-06-24 01:50:53 +00:00
|
|
|
* createUnique
|
|
|
|
*
|
|
|
|
* This function will create a new file or directory in the
|
|
|
|
* file system. Any nodes that have not been created or
|
|
|
|
* resolved, will be. If this file already exists, we try
|
|
|
|
* variations on the leaf name "suggestedName" until we find
|
|
|
|
* one that did not already exist.
|
|
|
|
*
|
|
|
|
* If the search for nonexistent files takes too long
|
|
|
|
* (thousands of the variants already exist), we give up and
|
|
|
|
* return NS_ERROR_FILE_TOO_BIG.
|
|
|
|
*
|
|
|
|
* @param type
|
|
|
|
* This specifies the type of file system object
|
|
|
|
* to be made. The only two types at this time
|
|
|
|
* are file and directory which are defined above.
|
|
|
|
* If the type is unrecongnized, we will return an
|
|
|
|
* error (NS_ERROR_FILE_UNKNOWN_TYPE).
|
|
|
|
*
|
|
|
|
* @param permissions
|
|
|
|
* The unix style octal permissions. This may
|
|
|
|
* be ignored on systems that do not need to do
|
|
|
|
* permissions.
|
2000-06-21 06:32:45 +00:00
|
|
|
*/
|
2001-12-07 23:06:51 +00:00
|
|
|
void createUnique(in unsigned long type, in unsigned long permissions);
|
2000-06-21 06:32:45 +00:00
|
|
|
|
1999-12-22 01:56:45 +00:00
|
|
|
/**
|
|
|
|
* clone()
|
|
|
|
*
|
|
|
|
* This function will allocate and initialize a nsIFile object to the
|
|
|
|
* exact location of the |this| nsIFile.
|
2000-05-15 06:41:00 +00:00
|
|
|
*
|
1999-12-22 01:56:45 +00:00
|
|
|
* @param file
|
|
|
|
* A nsIFile which this object will be initialize
|
|
|
|
* with.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
nsIFile clone();
|
|
|
|
|
1999-09-01 23:51:11 +00:00
|
|
|
/**
|
|
|
|
* Will determine if the inFile equals this.
|
|
|
|
*/
|
1999-12-02 21:45:50 +00:00
|
|
|
boolean equals(in nsIFile inFile);
|
2000-05-15 06:41:00 +00:00
|
|
|
|
1999-10-23 04:51:35 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* Will determine if inFile is a descendant of this file
|
|
|
|
* If |recur| is true, look in subdirectories too
|
1999-10-23 04:51:35 +00:00
|
|
|
*/
|
2000-01-28 23:53:59 +00:00
|
|
|
boolean contains(in nsIFile inFile, in boolean recur);
|
1999-12-02 21:45:50 +00:00
|
|
|
|
1999-12-03 00:39:31 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* Parent will be null when this is at the top of the volume.
|
1999-12-03 00:39:31 +00:00
|
|
|
*/
|
|
|
|
readonly attribute nsIFile parent;
|
2000-06-21 06:32:45 +00:00
|
|
|
|
1999-12-02 21:45:50 +00:00
|
|
|
/**
|
2002-05-03 06:01:29 +00:00
|
|
|
* Returns an enumeration of the elements in a directory. Each
|
|
|
|
* element in the enumeration is an nsIFile.
|
1999-12-02 21:45:50 +00:00
|
|
|
*
|
|
|
|
* @return NS_ERROR_FILE_NOT_DIRECTORY if the current nsIFile does
|
|
|
|
* not specify a directory.
|
2000-05-15 06:41:00 +00:00
|
|
|
*/
|
1999-12-03 00:39:31 +00:00
|
|
|
readonly attribute nsISimpleEnumerator directoryEntries;
|
1999-08-21 07:38:26 +00:00
|
|
|
};
|
1999-09-08 20:12:35 +00:00
|
|
|
|
|
|
|
%{C++
|
2005-04-06 03:35:24 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
|
|
|
#include "nsDirectoryServiceUtils.h"
|
2002-03-20 00:34:17 +00:00
|
|
|
#endif
|
1999-11-01 04:44:56 +00:00
|
|
|
%}
|