1999-12-08 07:56:17 +00:00
|
|
|
|
/* -*- 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.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/NPL/
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
|
* released March 31, 1998.
|
|
|
|
|
*
|
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
2000-01-28 01:50:05 +00:00
|
|
|
|
* Corporation. Portions created by Netscape are
|
1999-12-08 07:56:17 +00:00
|
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
|
* Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s):
|
2000-01-28 01:50:05 +00:00
|
|
|
|
* Steve Dagley <sdagley@netscape.com>
|
|
|
|
|
* John R. McMullen
|
1999-12-08 07:56:17 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2000-06-03 09:46:12 +00:00
|
|
|
|
#include "nsMemory.h"
|
2000-11-14 15:58:54 +00:00
|
|
|
|
#include "nsXPIDLString.h"
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
|
|
|
|
#include "nsLocalFileMac.h"
|
|
|
|
|
|
|
|
|
|
#include "nsISimpleEnumerator.h"
|
|
|
|
|
#include "nsIComponentManager.h"
|
2000-11-14 15:58:54 +00:00
|
|
|
|
#include "nsIInternetConfigService.h"
|
|
|
|
|
#include "nsIMIMEInfo.h"
|
1999-12-08 07:56:17 +00:00
|
|
|
|
#include "prtypes.h"
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#include "prerror.h"
|
|
|
|
|
#include "pprio.h" // Include this rather than prio.h so we get def of PR_ImportFile
|
|
|
|
|
#include "prmem.h"
|
2000-07-17 15:03:05 +00:00
|
|
|
|
#include "plbase64.h"
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
|
|
|
|
#include "FullPath.h"
|
|
|
|
|
#include "FileCopy.h"
|
|
|
|
|
#include "MoreFilesExtras.h"
|
2000-04-03 01:54:22 +00:00
|
|
|
|
#include "DirectoryCopy.h"
|
1999-12-08 07:56:17 +00:00
|
|
|
|
#include <Errors.h>
|
|
|
|
|
#include <Script.h>
|
|
|
|
|
#include <Processes.h>
|
2000-02-23 23:09:02 +00:00
|
|
|
|
#include <StringCompare.h>
|
|
|
|
|
|
|
|
|
|
#include <AppleEvents.h>
|
|
|
|
|
#include <AEDataModel.h>
|
2001-01-30 05:03:38 +00:00
|
|
|
|
#include <AERegistry.h>
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-04-19 22:13:51 +00:00
|
|
|
|
#include <Math64.h>
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#include <Aliases.h>
|
2000-02-23 23:09:02 +00:00
|
|
|
|
#include <Folders.h>
|
2000-04-03 01:54:22 +00:00
|
|
|
|
#include "macDirectoryCopy.h"
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
2000-06-20 23:10:06 +00:00
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Stupid @#$% header looks like its got extern mojo but it doesn't really
|
|
|
|
|
extern "C"
|
|
|
|
|
{
|
|
|
|
|
#include <FSp_fopen.h>
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 15:58:54 +00:00
|
|
|
|
#pragma mark [Constants]
|
|
|
|
|
|
|
|
|
|
const OSType kDefaultCreator = 'MOSS';
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#pragma mark [static util funcs]
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
static inline void ClearFSSpec(FSSpec& aSpec)
|
|
|
|
|
{
|
|
|
|
|
aSpec.vRefNum = 0;
|
|
|
|
|
aSpec.parID = 0;
|
|
|
|
|
aSpec.name[0] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
// Simple func to map Mac OS errors into nsresults
|
|
|
|
|
static nsresult MacErrorMapper(OSErr inErr)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult outErr;
|
|
|
|
|
|
|
|
|
|
switch (inErr)
|
|
|
|
|
{
|
|
|
|
|
case noErr:
|
|
|
|
|
outErr = NS_OK;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case fnfErr:
|
|
|
|
|
outErr = NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case dupFNErr:
|
|
|
|
|
outErr = NS_ERROR_FILE_ALREADY_EXISTS;
|
|
|
|
|
break;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
case dskFulErr:
|
|
|
|
|
outErr = NS_ERROR_FILE_DISK_FULL;
|
|
|
|
|
break;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
case fLckdErr:
|
|
|
|
|
outErr = NS_ERROR_FILE_IS_LOCKED;
|
|
|
|
|
break;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
// Can't find good map for some
|
2000-01-28 01:50:05 +00:00
|
|
|
|
case bdNamErr:
|
|
|
|
|
outErr = NS_ERROR_FAILURE;
|
|
|
|
|
break;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
default:
|
|
|
|
|
outErr = NS_ERROR_FAILURE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return outErr;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
IsEqualFSSpec
|
|
|
|
|
|
|
|
|
|
Compare two canonical FSSpec records.
|
|
|
|
|
|
|
|
|
|
Entry: file1 = pointer to first FSSpec record.
|
|
|
|
|
file2 = pointer to second FSSpec record.
|
|
|
|
|
|
|
|
|
|
Exit: function result = true if the FSSpec records are equal.
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
static PRBool IsEqualFSSpec(const FSSpec& file1, const FSSpec& file2)
|
2000-02-23 23:09:02 +00:00
|
|
|
|
{
|
|
|
|
|
return
|
2000-03-23 23:33:23 +00:00
|
|
|
|
file1.vRefNum == file2.vRefNum &&
|
|
|
|
|
file1.parID == file2.parID &&
|
|
|
|
|
EqualString(file1.name, file2.name, false, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
GetParentFolderSpec
|
|
|
|
|
|
|
|
|
|
Given an FSSpec to a (possibly non-existent) file, get an FSSpec for its
|
|
|
|
|
parent directory.
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
static OSErr GetParentFolderSpec(const FSSpec& fileSpec, FSSpec& parentDirSpec)
|
|
|
|
|
{
|
|
|
|
|
CInfoPBRec pBlock = {0};
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
parentDirSpec.name[0] = 0;
|
|
|
|
|
|
|
|
|
|
pBlock.dirInfo.ioVRefNum = fileSpec.vRefNum;
|
|
|
|
|
pBlock.dirInfo.ioDrDirID = fileSpec.parID;
|
|
|
|
|
pBlock.dirInfo.ioNamePtr = (StringPtr)parentDirSpec.name;
|
|
|
|
|
pBlock.dirInfo.ioFDirIndex = -1; //get info on parID
|
|
|
|
|
err = PBGetCatInfoSync(&pBlock);
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
|
|
|
|
|
parentDirSpec.vRefNum = fileSpec.vRefNum;
|
|
|
|
|
parentDirSpec.parID = pBlock.dirInfo.ioDrParID;
|
|
|
|
|
|
|
|
|
|
return err;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
VolHasDesktopDB
|
|
|
|
|
|
|
|
|
|
Check to see if a volume supports the new desktop database.
|
|
|
|
|
|
|
|
|
|
Entry: vRefNum = vol ref num of volumn
|
|
|
|
|
|
|
|
|
|
Exit: function result = error code.
|
|
|
|
|
*hasDesktop = true if volume has the new desktop database.
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
static OSErr VolHasDesktopDB (short vRefNum, Boolean *hasDesktop)
|
|
|
|
|
{
|
|
|
|
|
HParamBlockRec pb;
|
|
|
|
|
GetVolParmsInfoBuffer info;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
pb.ioParam.ioCompletion = nil;
|
|
|
|
|
pb.ioParam.ioNamePtr = nil;
|
|
|
|
|
pb.ioParam.ioVRefNum = vRefNum;
|
|
|
|
|
pb.ioParam.ioBuffer = (Ptr)&info;
|
|
|
|
|
pb.ioParam.ioReqCount = sizeof(info);
|
|
|
|
|
err = PBHGetVolParmsSync(&pb);
|
|
|
|
|
*hasDesktop = err == noErr && (info.vMAttrib & (1L << bHasDesktopMgr)) != 0;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
GetLastModDateTime
|
|
|
|
|
|
|
|
|
|
Get the last mod date and time of a file.
|
|
|
|
|
|
|
|
|
|
Entry: fSpec = pointer to file spec.
|
|
|
|
|
|
|
|
|
|
Exit: function result = error code.
|
|
|
|
|
*lastModDateTime = last mod date and time.
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
static OSErr GetLastModDateTime(const FSSpec *fSpec, unsigned long *lastModDateTime)
|
|
|
|
|
{
|
|
|
|
|
CInfoPBRec pBlock;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
pBlock.hFileInfo.ioNamePtr = (StringPtr)fSpec->name;
|
|
|
|
|
pBlock.hFileInfo.ioVRefNum = fSpec->vRefNum;
|
|
|
|
|
pBlock.hFileInfo.ioFDirIndex = 0;
|
|
|
|
|
pBlock.hFileInfo.ioDirID = fSpec->parID;
|
|
|
|
|
err = PBGetCatInfoSync(&pBlock);
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
*lastModDateTime = pBlock.hFileInfo.ioFlMdDat;
|
|
|
|
|
return noErr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
FindAppOnVolume
|
|
|
|
|
|
|
|
|
|
Find an application on a volume.
|
|
|
|
|
|
|
|
|
|
Entry: sig = application signature.
|
|
|
|
|
vRefNum = vol ref num
|
|
|
|
|
|
|
|
|
|
Exit: function result = error code
|
|
|
|
|
= afpItemNotFound if app not found on vol.
|
|
|
|
|
*file = file spec for application on volume.
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
static OSErr FindAppOnVolume (OSType sig, short vRefNum, FSSpec *file)
|
|
|
|
|
{
|
|
|
|
|
DTPBRec pb;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
short ioDTRefNum, i;
|
|
|
|
|
FInfo fInfo;
|
|
|
|
|
FSSpec candidate;
|
|
|
|
|
unsigned long lastModDateTime, maxLastModDateTime;
|
|
|
|
|
|
|
|
|
|
memset(&pb, 0, sizeof(DTPBRec));
|
|
|
|
|
pb.ioCompletion = nil;
|
|
|
|
|
pb.ioVRefNum = vRefNum;
|
|
|
|
|
pb.ioNamePtr = nil;
|
|
|
|
|
err = PBDTGetPath(&pb);
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
ioDTRefNum = pb.ioDTRefNum;
|
|
|
|
|
|
|
|
|
|
memset(&pb, 0, sizeof(DTPBRec));
|
|
|
|
|
pb.ioCompletion = nil;
|
|
|
|
|
pb.ioIndex = 0;
|
|
|
|
|
pb.ioFileCreator = sig;
|
|
|
|
|
pb.ioNamePtr = file->name;
|
|
|
|
|
pb.ioDTRefNum = ioDTRefNum;
|
|
|
|
|
err = PBDTGetAPPLSync(&pb);
|
|
|
|
|
|
|
|
|
|
if (err == fnfErr || err == paramErr) return afpItemNotFound;
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
|
|
|
|
|
file->vRefNum = vRefNum;
|
|
|
|
|
file->parID = pb.ioAPPLParID;
|
|
|
|
|
|
|
|
|
|
err = FSpGetFInfo(file, &fInfo);
|
|
|
|
|
if (err == noErr) return noErr;
|
|
|
|
|
|
|
|
|
|
i = 1;
|
|
|
|
|
maxLastModDateTime = 0;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
memset(&pb, 0, sizeof(DTPBRec));
|
|
|
|
|
pb.ioCompletion = nil;
|
|
|
|
|
pb.ioIndex = i;
|
|
|
|
|
pb.ioFileCreator = sig;
|
|
|
|
|
pb.ioNamePtr = candidate.name;
|
|
|
|
|
pb.ioDTRefNum = ioDTRefNum;
|
|
|
|
|
err = PBDTGetAPPLSync(&pb);
|
|
|
|
|
if (err != noErr) break;
|
|
|
|
|
candidate.vRefNum = vRefNum;
|
|
|
|
|
candidate.parID = pb.ioAPPLParID;
|
|
|
|
|
err = GetLastModDateTime(file, &lastModDateTime);
|
|
|
|
|
if (err == noErr) {
|
|
|
|
|
if (lastModDateTime > maxLastModDateTime) {
|
|
|
|
|
maxLastModDateTime = lastModDateTime;
|
|
|
|
|
*file = candidate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return maxLastModDateTime > 0 ? noErr : afpItemNotFound;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
|
GetIndVolume
|
|
|
|
|
|
|
|
|
|
Get a volume reference number by volume index.
|
|
|
|
|
|
|
|
|
|
Entry: index = volume index
|
|
|
|
|
|
|
|
|
|
Exit: function result = error code.
|
|
|
|
|
*vRefNum = vol ref num of indexed volume.
|
|
|
|
|
----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
static OSErr GetIndVolume(short index, short *vRefNum)
|
|
|
|
|
{
|
2000-06-20 23:10:06 +00:00
|
|
|
|
HParamBlockRec pb;
|
|
|
|
|
Str63 volumeName;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
pb.volumeParam.ioCompletion = nil;
|
2000-06-20 23:10:06 +00:00
|
|
|
|
pb.volumeParam.ioNamePtr = volumeName;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
pb.volumeParam.ioVolIndex = index;
|
|
|
|
|
|
2000-06-20 23:10:06 +00:00
|
|
|
|
err = PBHGetVInfoSync(&pb);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
*vRefNum = pb.volumeParam.ioVRefNum;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Private NSPR functions
|
|
|
|
|
static unsigned long gJanuaryFirst1970Seconds = 0;
|
|
|
|
|
/*
|
|
|
|
|
* The geographic location and time zone information of a Mac
|
|
|
|
|
* are stored in extended parameter RAM. The ReadLocation
|
|
|
|
|
* produdure uses the geographic location record, MachineLocation,
|
|
|
|
|
* to read the geographic location and time zone information in
|
|
|
|
|
* extended parameter RAM.
|
|
|
|
|
*
|
|
|
|
|
* Because serial port and SLIP conflict with ReadXPram calls,
|
|
|
|
|
* we cache the call here.
|
|
|
|
|
*
|
|
|
|
|
* Caveat: this caching will give the wrong result if a session
|
|
|
|
|
* extend across the DST changeover time.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void MyReadLocation(MachineLocation *loc)
|
|
|
|
|
{
|
|
|
|
|
static MachineLocation storedLoc;
|
|
|
|
|
static Boolean didReadLocation = false;
|
|
|
|
|
|
|
|
|
|
if (!didReadLocation) {
|
|
|
|
|
ReadLocation(&storedLoc);
|
|
|
|
|
didReadLocation = true;
|
|
|
|
|
}
|
|
|
|
|
*loc = storedLoc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static long GMTDelta(void)
|
|
|
|
|
{
|
|
|
|
|
MachineLocation loc;
|
|
|
|
|
long gmtDelta;
|
|
|
|
|
|
|
|
|
|
MyReadLocation(&loc);
|
|
|
|
|
gmtDelta = loc.u.gmtDelta & 0x00ffffff;
|
|
|
|
|
if (gmtDelta & 0x00800000) { /* test sign extend bit */
|
|
|
|
|
gmtDelta |= 0xff000000;
|
|
|
|
|
}
|
|
|
|
|
return gmtDelta;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void MacintoshInitializeTime(void)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* The NSPR epoch is midnight, Jan. 1, 1970 GMT.
|
|
|
|
|
*
|
|
|
|
|
* At midnight Jan. 1, 1970 GMT, the local time was
|
|
|
|
|
* midnight Jan. 1, 1970 + GMTDelta().
|
|
|
|
|
*
|
|
|
|
|
* Midnight Jan. 1, 1970 is 86400 * (365 * (1970 - 1904) + 17)
|
|
|
|
|
* = 2082844800 seconds since the Mac epoch.
|
|
|
|
|
* (There were 17 leap years from 1904 to 1970.)
|
|
|
|
|
*
|
|
|
|
|
* So the NSPR epoch is 2082844800 + GMTDelta() seconds since
|
|
|
|
|
* the Mac epoch. Whew! :-)
|
|
|
|
|
*/
|
|
|
|
|
gJanuaryFirst1970Seconds = 2082844800 + GMTDelta();
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-10 00:51:06 +00:00
|
|
|
|
static nsresult ConvertMacTimeToMilliseconds( PRInt64* aLastModificationDate, PRUint32 timestamp )
|
2000-02-23 23:09:02 +00:00
|
|
|
|
{
|
|
|
|
|
if ( gJanuaryFirst1970Seconds == 0)
|
|
|
|
|
MacintoshInitializeTime();
|
|
|
|
|
timestamp -= gJanuaryFirst1970Seconds;
|
2000-05-09 19:11:14 +00:00
|
|
|
|
PRTime usecPerSec, dateInMicroSeconds;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
LL_I2L(dateInMicroSeconds, timestamp);
|
2000-06-10 00:51:06 +00:00
|
|
|
|
LL_I2L(usecPerSec, PR_MSEC_PER_SEC);
|
2000-05-09 19:11:14 +00:00
|
|
|
|
LL_MUL(*aLastModificationDate, usecPerSec, dateInMicroSeconds);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2000-05-09 19:11:14 +00:00
|
|
|
|
static nsresult ConvertMillisecondsToMacTime(PRInt64 aTime, PRUint32 *aOutMacTime)
|
2000-03-27 22:05:54 +00:00
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG( aOutMacTime );
|
|
|
|
|
|
2000-05-09 19:11:14 +00:00
|
|
|
|
PRTime usecPerSec, dateInSeconds;
|
2000-03-27 22:05:54 +00:00
|
|
|
|
dateInSeconds = LL_ZERO;
|
|
|
|
|
|
2000-06-10 00:51:06 +00:00
|
|
|
|
LL_I2L(usecPerSec, PR_MSEC_PER_SEC);
|
2000-05-09 19:11:14 +00:00
|
|
|
|
LL_DIV(dateInSeconds, aTime, usecPerSec); // dateInSeconds = aTime/1,000
|
2000-03-27 22:05:54 +00:00
|
|
|
|
LL_L2UI(*aOutMacTime, dateInSeconds);
|
2000-05-09 19:11:14 +00:00
|
|
|
|
*aOutMacTime += 2082844800; // date + Mac epoch
|
2000-06-10 00:51:06 +00:00
|
|
|
|
|
2000-03-27 22:05:54 +00:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
static void myPLstrcpy(Str255 dst, const char* src)
|
|
|
|
|
{
|
|
|
|
|
int srcLength = strlen(src);
|
|
|
|
|
NS_ASSERTION(srcLength <= 255, "Oops, Str255 can't hold >255 chars");
|
|
|
|
|
if (srcLength > 255)
|
|
|
|
|
srcLength = 255;
|
|
|
|
|
dst[0] = srcLength;
|
|
|
|
|
memcpy(&dst[1], src, srcLength);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void myPLstrncpy(Str255 dst, const char* src, int inMax)
|
|
|
|
|
{
|
|
|
|
|
int srcLength = strlen(src);
|
|
|
|
|
if (srcLength > inMax)
|
|
|
|
|
srcLength = inMax;
|
|
|
|
|
dst[0] = srcLength;
|
|
|
|
|
memcpy(&dst[1], src, srcLength);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Aaargh!!!! Gotta roll my own equivalents of PR_OpenDir, PR_ReadDir and PR_CloseDir
|
|
|
|
|
// I can't use the NSPR versions as they expect a unix path and I can't easily adapt
|
|
|
|
|
// the directory iterator fucntion from MoreFIles as it wants to iterate things itself
|
|
|
|
|
// and use a callback function to operate on the iterated entries
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
short ioVRefNum;
|
|
|
|
|
long ioDirID;
|
|
|
|
|
short ioFDirIndex;
|
|
|
|
|
char *currentEntryName;
|
|
|
|
|
} MyPRDir;
|
|
|
|
|
|
|
|
|
|
static MyPRDir * My_OpenDir(FSSpec *fileSpec)
|
|
|
|
|
{
|
|
|
|
|
MyPRDir *dir = NULL;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
OSErr err;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
long theDirID;
|
|
|
|
|
Boolean isDirectory;
|
|
|
|
|
|
|
|
|
|
err = ::FSpGetDirectoryID(fileSpec, &theDirID, &isDirectory);
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
{
|
|
|
|
|
if (isDirectory)
|
|
|
|
|
{
|
|
|
|
|
/* This is a directory, store away the pertinent information.
|
|
|
|
|
** We post increment. I.e. index is always the nth. item we
|
|
|
|
|
** should get on the next call
|
|
|
|
|
*/
|
|
|
|
|
dir = PR_NEW(MyPRDir);
|
|
|
|
|
if (dir)
|
|
|
|
|
{
|
|
|
|
|
dir->ioVRefNum = fileSpec->vRefNum;
|
|
|
|
|
dir->ioDirID = theDirID;
|
|
|
|
|
dir->currentEntryName = NULL;
|
|
|
|
|
dir->ioFDirIndex = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char * My_ReadDir(MyPRDir *mdDir, PRIntn flags)
|
|
|
|
|
{
|
|
|
|
|
OSErr err;
|
|
|
|
|
CInfoPBRec pb;
|
|
|
|
|
char *returnedCStr;
|
|
|
|
|
Str255 pascalName = "\p";
|
|
|
|
|
PRBool foundEntry;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
// Release the last name read
|
|
|
|
|
if (mdDir->currentEntryName)
|
|
|
|
|
{
|
|
|
|
|
PR_DELETE(mdDir->currentEntryName);
|
|
|
|
|
mdDir->currentEntryName = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We<57>ve got all the info we need, just get info about this guy.
|
|
|
|
|
pb.hFileInfo.ioNamePtr = pascalName;
|
|
|
|
|
pb.hFileInfo.ioVRefNum = mdDir->ioVRefNum;
|
|
|
|
|
pb.hFileInfo.ioFDirIndex = mdDir->ioFDirIndex;
|
|
|
|
|
pb.hFileInfo.ioDirID = mdDir->ioDirID;
|
|
|
|
|
err = ::PBGetCatInfoSync(&pb);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
goto ErrorExit;
|
|
|
|
|
|
|
|
|
|
// Convert the Pascal string to a C string (actual allocation occurs in CStrFromPStr)
|
|
|
|
|
unsigned long len = pascalName[0];
|
|
|
|
|
returnedCStr = (char *)PR_MALLOC(len + 1);
|
|
|
|
|
if (returnedCStr)
|
|
|
|
|
{
|
|
|
|
|
::BlockMoveData(&pascalName[1], returnedCStr, len);
|
|
|
|
|
returnedCStr[len] = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mdDir->currentEntryName = returnedCStr;
|
|
|
|
|
mdDir->ioFDirIndex++;
|
|
|
|
|
|
|
|
|
|
// If it is not a hidden file and the flags did not specify skipping, we are done.
|
|
|
|
|
if ((flags & PR_SKIP_HIDDEN) && (pb.hFileInfo.ioFlFndrInfo.fdFlags & fInvisible))
|
|
|
|
|
foundEntry = PR_FALSE;
|
|
|
|
|
else
|
|
|
|
|
foundEntry = PR_TRUE;
|
|
|
|
|
|
|
|
|
|
} while (!foundEntry);
|
|
|
|
|
|
|
|
|
|
return (mdDir->currentEntryName);
|
|
|
|
|
|
|
|
|
|
ErrorExit:
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NULL;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void My_CloseDir(MyPRDir *mdDir)
|
|
|
|
|
{
|
2000-01-31 22:41:05 +00:00
|
|
|
|
if (!mdDir)
|
|
|
|
|
return; // Not much we can do with a null mdDir
|
|
|
|
|
|
|
|
|
|
// If we'd allocated an entry name then delete it
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (mdDir->currentEntryName)
|
|
|
|
|
PR_DELETE(mdDir->currentEntryName);
|
2000-01-31 22:41:05 +00:00
|
|
|
|
|
|
|
|
|
// delete the directory info struct as well
|
|
|
|
|
PR_DELETE(mdDir);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The R**co FSSpec resolver -
|
|
|
|
|
// it slices, it dices, it juliannes fries and it even creates FSSpecs out of whatever you feed it
|
|
|
|
|
// This function will take a path and a starting FSSpec and generate a FSSpec to represent
|
|
|
|
|
// the target of the two. If the intial FSSpec is null the path alone will be resolved
|
|
|
|
|
static OSErr ResolvePathAndSpec(const char * filePath, FSSpec *inSpec, PRBool createDirs, FSSpec *outSpec)
|
|
|
|
|
{
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
size_t inLength = strlen(filePath);
|
|
|
|
|
Boolean isRelative = (inSpec && (strchr(filePath, ':') == 0 || *filePath == ':'));
|
2000-07-24 20:05:54 +00:00
|
|
|
|
FSSpec tempSpec;
|
|
|
|
|
Str255 ppath;
|
|
|
|
|
Boolean isDirectory;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
if (isRelative && inSpec)
|
|
|
|
|
{
|
|
|
|
|
outSpec->vRefNum = inSpec->vRefNum;
|
|
|
|
|
outSpec->parID = inSpec->parID;
|
2000-04-26 01:50:24 +00:00
|
|
|
|
|
|
|
|
|
if (inSpec->name[0] != 0)
|
|
|
|
|
{
|
|
|
|
|
long theDirID;
|
|
|
|
|
|
|
|
|
|
err = FSpGetDirectoryID(inSpec, &theDirID, &isDirectory);
|
|
|
|
|
|
|
|
|
|
if (err == noErr && isDirectory)
|
|
|
|
|
outSpec->parID = theDirID;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
outSpec->vRefNum = 0;
|
|
|
|
|
outSpec->parID = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try making an FSSpec from the path
|
|
|
|
|
if (inLength < 255)
|
|
|
|
|
{
|
2000-07-24 20:05:54 +00:00
|
|
|
|
// Use tempSpec as dest because if FSMakeFSSpec returns dirNFErr, it
|
|
|
|
|
// will reset the dest spec and we'll lose what we determined above.
|
|
|
|
|
|
|
|
|
|
myPLstrcpy(ppath, filePath);
|
|
|
|
|
err = ::FSMakeFSSpec(outSpec->vRefNum, outSpec->parID, ppath, &tempSpec);
|
|
|
|
|
if (err == noErr || err == fnfErr)
|
|
|
|
|
*outSpec = tempSpec;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
else if (!isRelative)
|
|
|
|
|
{
|
|
|
|
|
err = ::FSpLocationFromFullPath(inLength, filePath, outSpec);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ // If the path is relative and >255 characters we need to manually walk the
|
|
|
|
|
// path appending each node to the initial FSSpec so to reach that code we
|
|
|
|
|
// set the err to bdNamErr and fall into the code below
|
|
|
|
|
err = bdNamErr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we successfully created a spec then leave
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
// We get here when the directory hierarchy needs to be created or we're resolving
|
|
|
|
|
// a relative path >255 characters long
|
|
|
|
|
if (err == dirNFErr || err == bdNamErr)
|
|
|
|
|
{
|
|
|
|
|
const char* path = filePath;
|
2000-07-24 20:05:54 +00:00
|
|
|
|
|
|
|
|
|
if (!isRelative) // If path is relative, we still need vRefNum & parID.
|
|
|
|
|
{
|
|
|
|
|
outSpec->vRefNum = 0;
|
|
|
|
|
outSpec->parID = 0;
|
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
// Locate the colon that terminates the node.
|
|
|
|
|
// But if we've a partial path (starting with a colon), find the second one.
|
|
|
|
|
const char* nextColon = strchr(path + (*path == ':'), ':');
|
|
|
|
|
// Well, if there are no more colons, point to the end of the string.
|
|
|
|
|
if (!nextColon)
|
|
|
|
|
nextColon = path + strlen(path);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Make a pascal string out of this node. Include initial
|
|
|
|
|
// and final colon, if any!
|
|
|
|
|
myPLstrncpy(ppath, path, nextColon - path + 1);
|
|
|
|
|
|
|
|
|
|
// Use this string as a relative path using the directory created
|
|
|
|
|
// on the previous round (or directory 0,0 on the first round).
|
|
|
|
|
err = ::FSMakeFSSpec(outSpec->vRefNum, outSpec->parID, ppath, outSpec);
|
|
|
|
|
|
|
|
|
|
// If this was the leaf node, then we are done.
|
|
|
|
|
if (!*nextColon)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// Since there's more to go, we have to get the directory ID, which becomes
|
|
|
|
|
// the parID for the next round.
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
{
|
|
|
|
|
// The directory (or perhaps a file) exists. Find its dirID.
|
|
|
|
|
long dirID;
|
|
|
|
|
err = ::FSpGetDirectoryID(outSpec, &dirID, &isDirectory);
|
|
|
|
|
if (!isDirectory)
|
|
|
|
|
err = dupFNErr; // oops! a file exists with that name.
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
break; // bail if we've got an error
|
|
|
|
|
outSpec->parID = dirID;
|
|
|
|
|
}
|
|
|
|
|
else if ((err == fnfErr) && createDirs)
|
|
|
|
|
{
|
|
|
|
|
// If we got "file not found" and we're allowed to create directories
|
|
|
|
|
// then we need to create aone
|
|
|
|
|
err = ::FSpDirCreate(outSpec, smCurrentScript, &outSpec->parID);
|
|
|
|
|
// For some reason, this usually returns fnfErr, even though it works.
|
|
|
|
|
if (err == fnfErr)
|
|
|
|
|
err = noErr;
|
|
|
|
|
}
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
break;
|
|
|
|
|
path = nextColon; // next round
|
|
|
|
|
} while (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
#pragma mark [nsDirEnumerator]
|
1999-12-08 07:56:17 +00:00
|
|
|
|
class nsDirEnumerator : public nsISimpleEnumerator
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
public:
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsDirEnumerator() : mDir(nsnull)
|
|
|
|
|
{
|
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult Init(nsILocalFile* parent)
|
|
|
|
|
{
|
|
|
|
|
FSSpec fileSpec;
|
|
|
|
|
fileSpec.vRefNum = 0;
|
|
|
|
|
fileSpec.parID = 0;
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> localFileMac = do_QueryInterface(parent);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (localFileMac) {
|
2000-01-28 01:50:05 +00:00
|
|
|
|
localFileMac->GetResolvedFSSpec(&fileSpec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// See if we managed to get a FSSpec
|
|
|
|
|
if (!fileSpec.vRefNum && !fileSpec.parID)
|
|
|
|
|
{
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mDir = My_OpenDir(&fileSpec);
|
|
|
|
|
if (mDir == nsnull) // not a directory?
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
mParent = parent;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHOD HasMoreElements(PRBool *result)
|
|
|
|
|
{
|
2000-01-31 23:06:04 +00:00
|
|
|
|
nsresult rv = NS_OK;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (mNext == nsnull && mDir)
|
|
|
|
|
{
|
|
|
|
|
char* name = My_ReadDir(mDir, PR_SKIP_BOTH);
|
|
|
|
|
if (name == nsnull)
|
|
|
|
|
{
|
|
|
|
|
// end of dir entries
|
2000-01-24 21:28:28 +00:00
|
|
|
|
My_CloseDir(mDir);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
mDir = nsnull;
|
|
|
|
|
*result = PR_FALSE;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
// Make a new nsILocalFile for the new element
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsCOMPtr<nsILocalFile> file;
|
2000-07-12 23:31:31 +00:00
|
|
|
|
rv = NS_NewLocalFile("dummy:path", PR_TRUE, getter_AddRefs(file));
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
// Init with the FSSpec for the current dir
|
|
|
|
|
FSSpec tempSpec;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
tempSpec.vRefNum = mDir->ioVRefNum;
|
|
|
|
|
tempSpec.parID = mDir->ioDirID;
|
|
|
|
|
tempSpec.name[0] = 0;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsCOMPtr<nsILocalFileMac> localFileMac = do_QueryInterface(file);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (localFileMac) {
|
|
|
|
|
localFileMac->InitWithFSSpec(&tempSpec);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
// Now set the leaf name of the new nsILocalFile to the new element
|
2000-01-28 01:50:05 +00:00
|
|
|
|
rv = file->SetLeafName(name);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
mNext = do_QueryInterface(file);
|
|
|
|
|
}
|
|
|
|
|
*result = mNext != nsnull;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHOD GetNext(nsISupports **result)
|
|
|
|
|
{
|
2000-01-31 23:06:04 +00:00
|
|
|
|
nsresult rv = NS_OK;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
PRBool hasMore;
|
|
|
|
|
rv = HasMoreElements(&hasMore);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
*result = mNext; // might return nsnull
|
|
|
|
|
NS_IF_ADDREF(*result);
|
|
|
|
|
|
|
|
|
|
mNext = null_nsCOMPtr();
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ~nsDirEnumerator()
|
|
|
|
|
{
|
|
|
|
|
if (mDir)
|
|
|
|
|
{
|
|
|
|
|
My_CloseDir(mDir);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
MyPRDir* mDir;
|
|
|
|
|
nsCOMPtr<nsILocalFile> mParent;
|
|
|
|
|
nsCOMPtr<nsILocalFile> mNext;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(nsDirEnumerator, NS_GET_IID(nsISimpleEnumerator));
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#pragma mark -
|
2000-11-14 15:58:54 +00:00
|
|
|
|
|
|
|
|
|
OSType nsLocalFile::mgCurrentProcessSignature = 0;
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#pragma mark [CTOR/DTOR]
|
1999-12-08 07:56:17 +00:00
|
|
|
|
nsLocalFile::nsLocalFile()
|
2000-02-23 23:09:02 +00:00
|
|
|
|
: mInitType(eNotInitialized)
|
|
|
|
|
, mLastResolveFlag(PR_FALSE)
|
|
|
|
|
, mHaveFileInfo(PR_FALSE)
|
2000-07-12 23:31:31 +00:00
|
|
|
|
, mFollowSymlinks(PR_FALSE)
|
2001-01-31 01:35:16 +00:00
|
|
|
|
, mType('TEXT')
|
2000-11-14 15:58:54 +00:00
|
|
|
|
, mCreator(kDefaultCreator)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_INIT_REFCNT();
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
MakeDirty();
|
|
|
|
|
ClearFSSpec(mSpec);
|
2000-11-14 15:58:54 +00:00
|
|
|
|
|
|
|
|
|
DetermineCurrentProcessCreator();
|
|
|
|
|
if (mgCurrentProcessSignature != 0)
|
|
|
|
|
mCreator = mgCurrentProcessSignature;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nsLocalFile::~nsLocalFile()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#pragma mark -
|
|
|
|
|
#pragma mark [nsISupports interface implementation]
|
2000-03-05 21:26:01 +00:00
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS3(nsLocalFile, nsILocalFileMac, nsILocalFile, nsIFile)
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_METHOD
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsLocalFile::nsLocalFileConstructor(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG_POINTER(aInstancePtr);
|
|
|
|
|
NS_ENSURE_NO_AGGREGATION(outer);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsLocalFile* inst = new nsLocalFile();
|
|
|
|
|
if (inst == NULL)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
|
|
nsresult rv = inst->QueryInterface(aIID, aInstancePtr);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
{
|
|
|
|
|
delete inst;
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This function resets any cached information about the file.
|
|
|
|
|
void
|
|
|
|
|
nsLocalFile::MakeDirty()
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
mStatDirty = PR_TRUE;
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
ClearFSSpec(mResolvedSpec);
|
|
|
|
|
ClearFSSpec(mTargetSpec);
|
2000-02-01 23:42:28 +00:00
|
|
|
|
|
|
|
|
|
mResolvedWasAlias = false;
|
|
|
|
|
mResolvedWasFolder = false;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
mHaveFileInfo = PR_FALSE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-07-12 23:31:31 +00:00
|
|
|
|
/* attribute PRBool followLinks; */
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetFollowLinks(PRBool *aFollowLinks)
|
|
|
|
|
{
|
|
|
|
|
*aFollowLinks = mFollowSymlinks;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetFollowLinks(PRBool aFollowLinks)
|
|
|
|
|
{
|
|
|
|
|
MakeDirty();
|
|
|
|
|
mFollowSymlinks = aFollowLinks;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::ResolveAndStat(PRBool resolveTerminal)
|
|
|
|
|
{
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
char *filePath;
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (!mStatDirty && resolveTerminal == mLastResolveFlag)
|
|
|
|
|
{
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mLastResolveFlag = resolveTerminal;
|
|
|
|
|
|
|
|
|
|
// See if we have been initialized with a spec
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
|
|
|
|
{
|
2000-06-03 09:46:12 +00:00
|
|
|
|
filePath = (char *)nsMemory::Clone(mWorkingPath, strlen(mWorkingPath)+1);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
err = ResolvePathAndSpec(filePath, nsnull, PR_FALSE, &mResolvedSpec);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(filePath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
{
|
|
|
|
|
if (strlen(mAppendedPath))
|
|
|
|
|
{ // We've got an FSSpec and an appended path so pass 'em both to ResolvePathAndSpec
|
2000-06-03 09:46:12 +00:00
|
|
|
|
filePath = (char *)nsMemory::Clone(mAppendedPath, strlen(mAppendedPath)+1);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
err = ResolvePathAndSpec(filePath, &mSpec, PR_FALSE, &mResolvedSpec);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(filePath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = ::FSMakeFSSpec(mSpec.vRefNum, mSpec.parID, mSpec.name, &mResolvedSpec);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (resolveTerminal && err == noErr)
|
|
|
|
|
{
|
|
|
|
|
// Resolve the alias to the original file.
|
2000-01-24 21:28:28 +00:00
|
|
|
|
FSSpec spec = mResolvedSpec;
|
2000-02-01 23:42:28 +00:00
|
|
|
|
err = ::ResolveAliasFile(&spec, TRUE, &mResolvedWasFolder, &mResolvedWasAlias);
|
2000-12-12 20:14:03 +00:00
|
|
|
|
if (err == noErr || err == fnfErr) {// fnfErr means target spec is valid but doesn't exist
|
|
|
|
|
mTargetSpec = spec;
|
|
|
|
|
err = noErr;
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err == noErr)
|
|
|
|
|
{
|
2000-03-23 23:33:23 +00:00
|
|
|
|
mStatDirty = PR_FALSE;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (MacErrorMapper(err));
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_IMETHODIMP
|
1999-12-22 01:56:45 +00:00
|
|
|
|
nsLocalFile::Clone(nsIFile **file)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(file);
|
|
|
|
|
*file = nsnull;
|
|
|
|
|
|
|
|
|
|
// Create the new nsLocalFile
|
|
|
|
|
nsCOMPtr<nsILocalFile> localFile = new nsLocalFile();
|
|
|
|
|
if (localFile == NULL)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
// See if it's a nsLocalFileMac (shouldn't be possible for it not to be)
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsCOMPtr<nsILocalFileMac> localFileMac = do_QueryInterface(localFile);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (localFileMac == NULL)
|
|
|
|
|
return NS_ERROR_NO_INTERFACE;
|
|
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
|
|
// Now we figure out how we were initialized in order to determine how to
|
|
|
|
|
// initialize the clone
|
|
|
|
|
nsLocalFileMacInitType initializedAs;
|
|
|
|
|
localFileMac->GetInitType(&initializedAs);
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
|
|
|
|
// The simple case
|
|
|
|
|
char *path;
|
|
|
|
|
GetPath(&path);
|
|
|
|
|
rv = localFile->InitWithPath(path);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(path);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
// Slightly more complex as we need to set the FSSpec and any appended
|
|
|
|
|
// path info
|
2000-04-24 03:24:49 +00:00
|
|
|
|
// `? Should we just set this to the resolved spec ?????
|
2000-01-28 01:50:05 +00:00
|
|
|
|
localFileMac->InitWithFSSpec(&mSpec);
|
|
|
|
|
// Now set any appended path info
|
|
|
|
|
char *appendedPath;
|
|
|
|
|
GetAppendedPath(&appendedPath);
|
|
|
|
|
rv = localFileMac->SetAppendedPath(appendedPath);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(appendedPath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
NS_NOTREACHED("we really shouldn't get here");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
*file = localFile;
|
|
|
|
|
NS_ADDREF(*file);
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::InitWithPath(const char *filePath)
|
|
|
|
|
{
|
2000-09-09 15:26:52 +00:00
|
|
|
|
// The incoming path must be a FULL path
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
MakeDirty();
|
|
|
|
|
NS_ENSURE_ARG(filePath);
|
|
|
|
|
|
2000-09-09 15:26:52 +00:00
|
|
|
|
// If it starts with a colon, it's invalid
|
|
|
|
|
if (*filePath == ':')
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
|
|
|
|
|
if (strchr(filePath, ':'))
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
// Just save the specified file path since we can't actually do anything
|
|
|
|
|
// about turniung it into an FSSpec until the Create() method is called
|
2000-04-01 00:39:02 +00:00
|
|
|
|
mWorkingPath.Assign(filePath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
mInitType = eInitWithPath;
|
2000-09-09 15:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// If there is no colon, it may be a volume (since we strip trailing colons)
|
|
|
|
|
Str255 volName;
|
|
|
|
|
FSSpec volSpec;
|
|
|
|
|
|
|
|
|
|
myPLstrcpy(volName, filePath);
|
|
|
|
|
volName[++volName[0]] = ':';
|
|
|
|
|
if (::FSMakeFSSpec(0, 0, volName, &volSpec) == noErr)
|
|
|
|
|
return InitWithFSSpec(&volSpec);
|
|
|
|
|
else
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-22 01:56:45 +00:00
|
|
|
|
NS_IMETHODIMP
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsLocalFile::OpenNSPRFileDesc(PRInt32 flags, PRInt32 mode, PRFileDesc **_retval)
|
1999-12-22 01:56:45 +00:00
|
|
|
|
{
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Macintosh doesn't really have mode bits, just drop them
|
|
|
|
|
#pragma unused (mode)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
|
2000-02-03 21:06:35 +00:00
|
|
|
|
FSSpec spec;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
OSErr err = noErr;
|
2000-02-03 21:06:35 +00:00
|
|
|
|
|
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if ((rv == NS_ERROR_FILE_NOT_FOUND) && (flags & PR_CREATE_FILE))
|
|
|
|
|
spec = mResolvedSpec;
|
|
|
|
|
else
|
|
|
|
|
spec = mTargetSpec;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Resolve the alias to the original file.
|
2000-01-28 01:50:05 +00:00
|
|
|
|
Boolean targetIsFolder;
|
|
|
|
|
Boolean wasAliased;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
err = ::ResolveAliasFile(&spec, TRUE, &targetIsFolder, &wasAliased);
|
2000-01-27 23:18:06 +00:00
|
|
|
|
|
|
|
|
|
// If we're going to create a file it's ok if it doesn't exist
|
|
|
|
|
if (err == fnfErr && (flags & PR_CREATE_FILE))
|
|
|
|
|
err = noErr;
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
if (flags & PR_CREATE_FILE)
|
2000-11-14 15:58:54 +00:00
|
|
|
|
{
|
2001-02-07 00:46:58 +00:00
|
|
|
|
SetOSTypeAndCreatorFromExtension();
|
2000-04-24 03:24:49 +00:00
|
|
|
|
err = ::FSpCreate(&spec, mCreator, mType, 0);
|
2000-11-14 15:58:54 +00:00
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
/* If opening with the PR_EXCL flag the existence of the file prior to opening is an error */
|
|
|
|
|
if ((flags & PR_EXCL) && (err == dupFNErr))
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
if (err == dupFNErr)
|
|
|
|
|
err = noErr;
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
SInt8 perm;
|
|
|
|
|
if (flags & PR_RDWR)
|
|
|
|
|
perm = fsRdWrPerm;
|
|
|
|
|
else if (flags & PR_WRONLY)
|
|
|
|
|
perm = fsWrPerm;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
else
|
2000-01-24 21:28:28 +00:00
|
|
|
|
perm = fsRdPerm;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
short refnum;
|
|
|
|
|
err = ::FSpOpenDF(&spec, perm, &refnum);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err == noErr && (flags & PR_TRUNCATE))
|
|
|
|
|
err = ::SetEOF(refnum, 0);
|
|
|
|
|
if (err == noErr && (flags & PR_APPEND))
|
|
|
|
|
err = ::SetFPos(refnum, fsFromLEOF, 0);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if ((*_retval = PR_ImportFile(refnum)) == 0)
|
|
|
|
|
return NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_FILES,(PR_GetError() & 0xFFFF));
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::OpenANSIFileDesc(const char *mode, FILE * *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND)
|
|
|
|
|
return rv;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Resolve the alias to the original file.
|
2000-02-01 23:42:28 +00:00
|
|
|
|
FSSpec spec = mTargetSpec;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
Boolean targetIsFolder;
|
|
|
|
|
Boolean wasAliased;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
OSErr err = ::ResolveAliasFile(&spec, TRUE, &targetIsFolder, &wasAliased);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
*_retval = FSp_fopen(&spec, mode);
|
|
|
|
|
|
|
|
|
|
if (*_retval)
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Create(PRUint32 type, PRUint32 attributes)
|
|
|
|
|
{
|
|
|
|
|
OSErr err;
|
|
|
|
|
char *filePath;
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (type != NORMAL_FILE_TYPE && type != DIRECTORY_TYPE)
|
|
|
|
|
return NS_ERROR_FILE_UNKNOWN_TYPE;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
|
|
|
|
{
|
2000-06-03 09:46:12 +00:00
|
|
|
|
filePath = (char *)nsMemory::Clone(mWorkingPath, strlen(mWorkingPath)+1);
|
2000-04-26 01:50:24 +00:00
|
|
|
|
err = ResolvePathAndSpec(filePath, nsnull, PR_TRUE, &mResolvedSpec);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(filePath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
{
|
|
|
|
|
if (strlen(mAppendedPath))
|
|
|
|
|
{ // We've got an FSSpec and an appended path so pass 'em both to ResolvePathAndSpec
|
2000-06-03 09:46:12 +00:00
|
|
|
|
filePath = (char *)nsMemory::Clone(mAppendedPath, strlen(mAppendedPath)+1);
|
2000-04-26 01:50:24 +00:00
|
|
|
|
err = ResolvePathAndSpec(filePath, &mSpec, PR_TRUE, &mResolvedSpec);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(filePath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = ::FSMakeFSSpec(mSpec.vRefNum, mSpec.parID, mSpec.name, &mResolvedSpec);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr && err != fnfErr)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
return (MacErrorMapper(err));
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
case NORMAL_FILE_TYPE:
|
2001-02-07 00:46:58 +00:00
|
|
|
|
SetOSTypeAndCreatorFromExtension();
|
2000-09-06 21:13:10 +00:00
|
|
|
|
err = ::FSpCreate(&mResolvedSpec, mCreator, mType, smCurrentScript);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return (MacErrorMapper(err));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DIRECTORY_TYPE:
|
|
|
|
|
err = ::FSpDirCreate(&mResolvedSpec, smCurrentScript, &mResolvedSpec.parID);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
// For some reason, this usually returns fnfErr, even though it works.
|
|
|
|
|
if (err == fnfErr)
|
|
|
|
|
err = noErr;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return (MacErrorMapper(err));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// For now just fall out of the switch into the default return NS_ERROR_FILE_UNKNOWN_TYPE
|
|
|
|
|
break;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_FILE_UNKNOWN_TYPE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
2000-05-05 05:47:32 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_IMETHODIMP
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsLocalFile::Append(const char *node)
|
2000-05-05 05:47:32 +00:00
|
|
|
|
{
|
|
|
|
|
if (!node || (strstr(node, ":") != nsnull))
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
|
|
|
|
|
return AppendRelativePath(node);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::AppendRelativePath(const char *node)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if ( (node == nsnull) )
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
|
|
|
|
|
MakeDirty();
|
|
|
|
|
|
|
|
|
|
// Yee Hah! We only get a single node at a time so just append it
|
|
|
|
|
// to either the mWorkingPath or mAppendedPath, after adding the ':'
|
|
|
|
|
// directory delimeter, depending on how we were initialized
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
2000-02-23 23:09:02 +00:00
|
|
|
|
if ( (mWorkingPath.Last())!=':' )
|
|
|
|
|
mWorkingPath.Append(":");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
mWorkingPath.Append(node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
mAppendedPath.Append(":");
|
|
|
|
|
mAppendedPath.Append(node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetLeafName(char * *aLeafName)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG_POINTER(aLeafName);
|
|
|
|
|
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
|
|
|
|
const char* temp = mWorkingPath.GetBuffer();
|
|
|
|
|
if (temp == nsnull)
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
|
|
|
|
|
const char* leaf = strrchr(temp, ':');
|
|
|
|
|
|
|
|
|
|
// if the working path is just a node without any directory delimeters.
|
|
|
|
|
if (leaf == nsnull)
|
|
|
|
|
leaf = temp;
|
|
|
|
|
else
|
|
|
|
|
leaf++;
|
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
|
*aLeafName = (char*) nsMemory::Clone(leaf, strlen(leaf)+1);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
// See if we've had a path appended
|
|
|
|
|
if (mAppendedPath.Length())
|
|
|
|
|
{
|
|
|
|
|
const char* temp = mAppendedPath.GetBuffer();
|
|
|
|
|
if (temp == nsnull)
|
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
|
|
|
|
|
|
|
|
const char* leaf = strrchr(temp, ':');
|
|
|
|
|
|
|
|
|
|
// if the working path is just a node without any directory delimeters.
|
|
|
|
|
if (leaf == nsnull)
|
|
|
|
|
leaf = temp;
|
|
|
|
|
else
|
|
|
|
|
leaf++;
|
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
|
*aLeafName = (char*) nsMemory::Clone(leaf, strlen(leaf)+1);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// We don't have an appended path so grab the leaf name from the FSSpec
|
2000-03-23 23:33:23 +00:00
|
|
|
|
// Convert the Pascal string to a C string
|
|
|
|
|
PRInt32 len = mSpec.name[0];
|
2000-06-03 09:46:12 +00:00
|
|
|
|
char* leafName = (char *)nsMemory::Alloc(len + 1);
|
2000-03-23 23:33:23 +00:00
|
|
|
|
if (!leafName) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
::BlockMoveData(&mSpec.name[1], leafName, len);
|
|
|
|
|
leafName[len] = '\0';
|
|
|
|
|
*aLeafName = leafName;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetLeafName(const char * aLeafName)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG_POINTER(aLeafName);
|
2000-04-20 22:49:18 +00:00
|
|
|
|
|
|
|
|
|
MakeDirty();
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
2000-01-24 21:28:28 +00:00
|
|
|
|
PRInt32 offset = mWorkingPath.RFindChar(':');
|
|
|
|
|
if (offset)
|
|
|
|
|
{
|
|
|
|
|
mWorkingPath.Truncate(offset + 1);
|
|
|
|
|
}
|
|
|
|
|
mWorkingPath.Append(aLeafName);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
// See if we've had a path appended
|
|
|
|
|
if (mAppendedPath.Length())
|
|
|
|
|
{ // Lop off the end of the appended path and replace it with the new leaf name
|
2000-01-24 21:28:28 +00:00
|
|
|
|
PRInt32 offset = mAppendedPath.RFindChar(':');
|
2000-07-07 21:54:08 +00:00
|
|
|
|
if (offset || ((!offset) && (1 < mAppendedPath.Length())))
|
2000-01-24 21:28:28 +00:00
|
|
|
|
{
|
|
|
|
|
mAppendedPath.Truncate(offset + 1);
|
|
|
|
|
}
|
|
|
|
|
mAppendedPath.Append(aLeafName);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// We don't have an appended path so directly modify the FSSpec
|
|
|
|
|
myPLstrcpy(mSpec.name, aLeafName);
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetPath(char **_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
|
|
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
2000-06-03 09:46:12 +00:00
|
|
|
|
*_retval = (char*) nsMemory::Clone(mWorkingPath, strlen(mWorkingPath)+1);
|
2000-02-01 23:42:28 +00:00
|
|
|
|
if (!*_retval)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
{ // Now would be a good time to call the code that makes an FSSpec into a path
|
|
|
|
|
short fullPathLen;
|
|
|
|
|
Handle fullPathHandle;
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
(void)::FSpGetFullPath(&mResolvedSpec, &fullPathLen, &fullPathHandle);
|
2000-02-01 23:42:28 +00:00
|
|
|
|
if (!fullPathHandle)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
|
char* fullPath = (char *)nsMemory::Alloc(fullPathLen + 1);
|
2000-02-01 23:42:28 +00:00
|
|
|
|
if (!fullPath)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
::HLock(fullPathHandle);
|
|
|
|
|
nsCRT::memcpy(fullPath, *fullPathHandle, fullPathLen);
|
|
|
|
|
fullPath[fullPathLen] = '\0';
|
|
|
|
|
|
|
|
|
|
*_retval = fullPath;
|
|
|
|
|
::DisposeHandle(fullPathHandle);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-02-01 23:42:28 +00:00
|
|
|
|
|
|
|
|
|
// For cross platform reasons we need to make sure that even if we have a path to a
|
|
|
|
|
// directory we don't return the trailing colon. This used to break the component
|
|
|
|
|
// manager (Bugzilla bug #26102)
|
|
|
|
|
PRUint32 lastChar = strlen(*_retval) - 1;
|
|
|
|
|
if ((*_retval)[lastChar] == ':')
|
|
|
|
|
(*_retval)[lastChar] = '\0';
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-03 01:54:22 +00:00
|
|
|
|
nsresult nsLocalFile::MoveCopy( nsIFile* newParentDir, const char* newName, PRBool isCopy )
|
|
|
|
|
{
|
2001-01-17 20:23:06 +00:00
|
|
|
|
nsresult rv = ResolveAndStat( PR_TRUE );
|
2000-04-03 01:54:22 +00:00
|
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
|
return rv;
|
2001-01-17 20:23:06 +00:00
|
|
|
|
|
|
|
|
|
OSErr macErr;
|
|
|
|
|
FSSpec srcSpec = mResolvedSpec;
|
|
|
|
|
Str255 newPascalName;
|
|
|
|
|
|
|
|
|
|
// If newParentDir == nsnull, it's a simple rename
|
|
|
|
|
if ( !newParentDir )
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG( newName );
|
|
|
|
|
myPLstrncpy( newPascalName, newName, 255 );
|
|
|
|
|
macErr = ::FSpRename( &srcSpec, newPascalName );
|
|
|
|
|
return MacErrorMapper( macErr );
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-03 01:54:22 +00:00
|
|
|
|
nsCOMPtr<nsILocalFileMac> destDir( do_QueryInterface( newParentDir ));
|
2001-01-17 20:23:06 +00:00
|
|
|
|
FSSpec destSpec;
|
2000-04-03 01:54:22 +00:00
|
|
|
|
|
|
|
|
|
PRBool isDirectory;
|
|
|
|
|
rv = newParentDir->IsDirectory( &isDirectory );
|
|
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
|
return rv;
|
|
|
|
|
rv = destDir->GetResolvedFSSpec( &destSpec );
|
|
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
if ( newName )
|
|
|
|
|
myPLstrncpy( newPascalName, newName, 255);
|
2000-07-24 20:05:54 +00:00
|
|
|
|
else
|
|
|
|
|
memcpy(newPascalName, srcSpec.name, srcSpec.name[0] + 1);
|
2000-04-03 01:54:22 +00:00
|
|
|
|
if ( isCopy )
|
|
|
|
|
{
|
|
|
|
|
if ( mResolvedWasFolder )
|
|
|
|
|
macErr = MacFSpDirectoryCopyRename( &srcSpec, &destSpec, newPascalName, NULL, 0, true, NULL );
|
|
|
|
|
else
|
|
|
|
|
macErr = ::FSpFileCopy( &srcSpec, &destSpec, newPascalName, NULL, 0, true );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
macErr= ::FSpMoveRenameCompat(&srcSpec, &destSpec, newPascalName);
|
|
|
|
|
if ( macErr == diffVolErr)
|
|
|
|
|
{
|
|
|
|
|
// On a different Volume so go for Copy and then delete
|
|
|
|
|
rv = CopyTo( newParentDir, newName );
|
|
|
|
|
if ( NS_FAILED ( rv ) )
|
|
|
|
|
return rv;
|
|
|
|
|
return Delete( PR_TRUE );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return MacErrorMapper( macErr );
|
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::CopyTo(nsIFile *newParentDir, const char *newName)
|
|
|
|
|
{
|
2000-04-03 01:54:22 +00:00
|
|
|
|
return MoveCopy( newParentDir, newName, PR_TRUE );
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::CopyToFollowingLinks(nsIFile *newParentDir, const char *newName)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::MoveTo(nsIFile *newParentDir, const char *newName)
|
|
|
|
|
{
|
2000-04-03 01:54:22 +00:00
|
|
|
|
return MoveCopy( newParentDir, newName, PR_FALSE );
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-02-17 15:35:54 +00:00
|
|
|
|
nsLocalFile::Spawn(const char **args, PRUint32 count)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-06-08 00:31:06 +00:00
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
LaunchParamBlockRec launchPB;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
PRBool isFile;
|
|
|
|
|
nsresult rv = IsFile(&isFile);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-06-08 00:31:06 +00:00
|
|
|
|
launchPB.launchAppSpec = &mTargetSpec;
|
|
|
|
|
launchPB.launchAppParameters = NULL;
|
|
|
|
|
launchPB.launchBlockID = extendedBlock;
|
|
|
|
|
launchPB.launchEPBLength = extendedBlockLen;
|
|
|
|
|
launchPB.launchFileFlags = NULL;
|
|
|
|
|
launchPB.launchControlFlags = launchContinue + launchNoFileFlags + launchUseMinimum;
|
|
|
|
|
launchPB.launchControlFlags += launchDontSwitch;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-06-08 00:31:06 +00:00
|
|
|
|
err = LaunchApplication(&launchPB);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Load(PRLibrary * *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
PRBool isFile;
|
|
|
|
|
nsresult rv = IsFile(&isFile);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
if (! isFile)
|
|
|
|
|
return NS_ERROR_FILE_IS_DIRECTORY;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
// Use the new PR_LoadLibraryWithFlags which allows us to use a FSSpec
|
2000-01-28 01:50:05 +00:00
|
|
|
|
PRLibSpec libSpec;
|
|
|
|
|
libSpec.type = PR_LibSpec_MacIndexedFragment;
|
2000-02-01 23:42:28 +00:00
|
|
|
|
libSpec.value.mac_indexed_fragment.fsspec = &mTargetSpec;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
libSpec.value.mac_indexed_fragment.index = 0;
|
|
|
|
|
*_retval = PR_LoadLibraryWithFlags(libSpec, 0);
|
|
|
|
|
|
|
|
|
|
if (*_retval)
|
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Delete(PRBool recursive)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
MakeDirty();
|
|
|
|
|
|
|
|
|
|
PRBool isDir;
|
|
|
|
|
nsresult rv = IsDirectory(&isDir);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
const char *filePath = mResolvedPath.GetBuffer();
|
2000-04-03 01:54:22 +00:00
|
|
|
|
OSErr macerror;
|
|
|
|
|
if (isDir && recursive)
|
|
|
|
|
macerror = ::DeleteDirectory( mResolvedSpec.vRefNum, mResolvedSpec.parID, mResolvedSpec.name );
|
2000-01-28 01:50:05 +00:00
|
|
|
|
else
|
2000-04-03 01:54:22 +00:00
|
|
|
|
macerror = ::HDelete( mResolvedSpec.vRefNum, mResolvedSpec.parID, mResolvedSpec.name );
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-04-03 01:54:22 +00:00
|
|
|
|
return MacErrorMapper( macerror );
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetLastModificationDate(PRInt64 *aLastModificationDate)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(aLastModificationDate);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat( PR_TRUE );
|
|
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
CInfoPBRec pb;
|
|
|
|
|
PRUint32 timestamp;
|
|
|
|
|
if (GetTargetSpecCatInfo(pb) == noErr)
|
|
|
|
|
timestamp = ((DirInfo*)&pb)->ioDrMdDat; // The mod date is in the same spot for files and dirs.
|
|
|
|
|
else
|
|
|
|
|
timestamp = 0;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-05-09 19:38:20 +00:00
|
|
|
|
return ConvertMacTimeToMilliseconds( aLastModificationDate, timestamp );
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetLastModificationDate(PRInt64 aLastModificationDate)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
MakeDirty();
|
2000-03-27 22:05:54 +00:00
|
|
|
|
nsresult rv = ResolveAndStat( PR_TRUE );
|
|
|
|
|
if ( NS_FAILED(rv) )
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
CInfoPBRec pb;
|
|
|
|
|
PRUint32 macTime = 0;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
PRBool bIsDir = PR_FALSE;
|
|
|
|
|
|
2000-05-09 19:38:20 +00:00
|
|
|
|
ConvertMillisecondsToMacTime(aLastModificationDate, &macTime);
|
2000-03-27 22:05:54 +00:00
|
|
|
|
rv = IsDirectory(&bIsDir);
|
|
|
|
|
if ( NS_FAILED(rv) )
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
err = GetTargetSpecCatInfo(pb);
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
{
|
|
|
|
|
if (bIsDir)
|
|
|
|
|
{
|
|
|
|
|
pb.dirInfo.ioDrMdDat = macTime;
|
|
|
|
|
pb.dirInfo.ioDrParID = mTargetSpec.parID;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pb.hFileInfo.ioFlMdDat = macTime;
|
|
|
|
|
pb.hFileInfo.ioDirID = mTargetSpec.parID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = ::PBSetCatInfoSync(&pb);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MacErrorMapper(err);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetLastModificationDateOfLink(PRInt64 *aLastModificationDate)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(aLastModificationDate);
|
|
|
|
|
|
|
|
|
|
aLastModificationDate->hi = 0;
|
|
|
|
|
aLastModificationDate->lo = 0;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ASSERTION(0, "Not implemented");
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetLastModificationDateOfLink(PRInt64 aLastModificationDate)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
MakeDirty();
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ASSERTION(0, "Not implemented");
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetFileSize(PRInt64 *aFileSize)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(aFileSize);
|
|
|
|
|
|
|
|
|
|
aFileSize->hi = 0;
|
|
|
|
|
aFileSize->lo = 0;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
2000-02-04 05:26:00 +00:00
|
|
|
|
long dataSize = 0;
|
|
|
|
|
long resSize = 0;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-02-01 23:42:28 +00:00
|
|
|
|
OSErr err = FSpGetFileSize(&mTargetSpec, &dataSize, &resSize);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
if (err != noErr && !mResolvedWasFolder)
|
2000-01-24 21:28:28 +00:00
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
// For now we've only got 32 bits of file size info
|
2000-02-04 05:26:00 +00:00
|
|
|
|
PRInt64 dataInt64 = LL_Zero();
|
|
|
|
|
PRInt64 resInt64 = LL_Zero();
|
|
|
|
|
|
|
|
|
|
// WARNING!!!!!!
|
|
|
|
|
//
|
|
|
|
|
// For now we do NOT add the data and resource fork sizes as there are several
|
|
|
|
|
// assumptions in the code (notably in form submit) that only the data fork is
|
|
|
|
|
// used.
|
|
|
|
|
// LL_I2L(resInt64, resSize);
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
LL_I2L(dataInt64, dataSize);
|
2000-02-04 05:26:00 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
LL_ADD((*aFileSize), dataInt64, resInt64);
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetFileSize(PRInt64 aFileSize)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
PRBool exists;
|
|
|
|
|
|
|
|
|
|
Exists(&exists);
|
|
|
|
|
if (exists)
|
|
|
|
|
{
|
|
|
|
|
short refNum;
|
|
|
|
|
OSErr err;
|
|
|
|
|
PRInt32 aNewLength;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
LL_L2I(aNewLength, aFileSize);
|
|
|
|
|
|
|
|
|
|
// Need to open the file to set the size
|
2000-02-01 23:42:28 +00:00
|
|
|
|
if (::FSpOpenDF(&mTargetSpec, fsWrPerm, &refNum) != noErr)
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_FILE_ACCESS_DENIED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
err = ::SetEOF(refNum, aNewLength);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Close the file unless we got an error that it was already closed
|
|
|
|
|
if (err != fnOpnErr)
|
2000-01-28 01:50:05 +00:00
|
|
|
|
(void)::FSClose(refNum);
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetFileSizeOfLink(PRInt64 *aFileSize)
|
|
|
|
|
{
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ENSURE_ARG(aFileSize);
|
|
|
|
|
|
|
|
|
|
aFileSize->hi = 0;
|
|
|
|
|
aFileSize->lo = 0;
|
|
|
|
|
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
|
|
|
|
long dataSize = 0;
|
|
|
|
|
long resSize = 0;
|
|
|
|
|
|
|
|
|
|
OSErr err = FSpGetFileSize(&mResolvedSpec, &dataSize, &resSize);
|
|
|
|
|
|
|
|
|
|
if (err != noErr && !mResolvedWasFolder)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
// For now we've only got 32 bits of file size info
|
|
|
|
|
PRInt64 dataInt64 = LL_Zero();
|
|
|
|
|
PRInt64 resInt64 = LL_Zero();
|
|
|
|
|
|
|
|
|
|
// WARNING!!!!!!
|
|
|
|
|
//
|
|
|
|
|
// For now we do NOT add the data and resource fork sizes as there are several
|
|
|
|
|
// assumptions in the code (notably in form submit) that only the data fork is
|
|
|
|
|
// used.
|
|
|
|
|
// LL_I2L(resInt64, resSize);
|
|
|
|
|
|
|
|
|
|
LL_I2L(dataInt64, dataSize);
|
|
|
|
|
|
|
|
|
|
LL_ADD((*aFileSize), dataInt64, resInt64);
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetDiskSpaceAvailable(PRInt64 *aDiskSpaceAvailable)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(aDiskSpaceAvailable);
|
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
PRInt64 space64Bits;
|
|
|
|
|
|
|
|
|
|
LL_I2L(space64Bits , LONG_MAX);
|
|
|
|
|
|
|
|
|
|
XVolumeParam pb;
|
|
|
|
|
pb.ioCompletion = nsnull;
|
|
|
|
|
pb.ioVolIndex = 0;
|
|
|
|
|
pb.ioNamePtr = nsnull;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
pb.ioVRefNum = mResolvedSpec.vRefNum;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
// we should check if this call is available
|
1999-12-08 07:56:17 +00:00
|
|
|
|
OSErr err = ::PBXGetVolInfoSync(&pb);
|
|
|
|
|
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
{
|
2000-04-19 22:13:51 +00:00
|
|
|
|
const UnsignedWide& freeBytes = UInt64ToUnsignedWide(pb.ioVFreeBytes);
|
|
|
|
|
space64Bits.lo = freeBytes.lo;
|
|
|
|
|
space64Bits.hi = freeBytes.hi;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*aDiskSpaceAvailable = space64Bits;
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetParent(nsIFile * *aParent)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
2000-03-09 00:35:11 +00:00
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
switch (mInitType)
|
|
|
|
|
{
|
|
|
|
|
case eInitWithPath:
|
|
|
|
|
{ // The simple case when we have a full path to something
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsCString parentPath = mWorkingPath;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
PRInt32 offset = parentPath.RFindChar(':');
|
|
|
|
|
if (offset == -1)
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
parentPath.Truncate(offset);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
nsCOMPtr<nsILocalFile> localFile;
|
2000-07-12 23:31:31 +00:00
|
|
|
|
rv = NS_NewLocalFile(parentPath.GetBuffer(), mFollowSymlinks, getter_AddRefs(localFile));
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (NS_SUCCEEDED(rv) && localFile)
|
|
|
|
|
{
|
2000-03-09 00:35:11 +00:00
|
|
|
|
rv = localFile->QueryInterface(NS_GET_IID(nsIFile), (void**)aParent);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case eInitWithFSSpec:
|
|
|
|
|
{
|
2000-04-26 01:50:24 +00:00
|
|
|
|
// Now set any appended path info
|
|
|
|
|
char* appendedPath;
|
|
|
|
|
GetAppendedPath(&appendedPath);
|
|
|
|
|
|
2000-08-03 22:13:34 +00:00
|
|
|
|
if (appendedPath == nsnull || appendedPath[0] == '\0'|| (appendedPath[0] == ':' && appendedPath[1] == '\0' ))
|
2000-04-26 01:50:24 +00:00
|
|
|
|
{
|
|
|
|
|
rv = ResolveAndStat(PR_TRUE);
|
2000-04-20 22:49:18 +00:00
|
|
|
|
|
2000-04-26 01:50:24 +00:00
|
|
|
|
//if the file does not exist, does not mean that the parent does not.
|
|
|
|
|
if (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND)
|
|
|
|
|
return rv;
|
2000-03-09 00:35:11 +00:00
|
|
|
|
|
2000-04-26 01:50:24 +00:00
|
|
|
|
FSSpec parentFolderSpec;
|
|
|
|
|
CInfoPBRec pBlock = {0};
|
2000-03-09 00:35:11 +00:00
|
|
|
|
|
2000-04-26 01:50:24 +00:00
|
|
|
|
parentFolderSpec.name[0] = 0;
|
|
|
|
|
|
|
|
|
|
pBlock.dirInfo.ioVRefNum = mResolvedSpec.vRefNum;
|
|
|
|
|
pBlock.dirInfo.ioDrDirID = mResolvedSpec.parID;
|
|
|
|
|
pBlock.dirInfo.ioNamePtr = (StringPtr)parentFolderSpec.name;
|
|
|
|
|
pBlock.dirInfo.ioFDirIndex = -1; //get info on parID
|
|
|
|
|
OSErr err = PBGetCatInfoSync(&pBlock);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
{
|
|
|
|
|
rv = MacErrorMapper(err);
|
|
|
|
|
goto bail;
|
|
|
|
|
}
|
|
|
|
|
parentFolderSpec.vRefNum = mResolvedSpec.vRefNum;
|
|
|
|
|
parentFolderSpec.parID = pBlock.dirInfo.ioDrParID;
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFile> file;
|
2000-07-12 23:31:31 +00:00
|
|
|
|
rv = NS_NewLocalFile("dummy:path", mFollowSymlinks, getter_AddRefs(file));
|
2000-04-26 01:50:24 +00:00
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
goto bail;
|
|
|
|
|
|
|
|
|
|
// Init with the FSSpec for the current dir
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> localFileMac = do_QueryInterface(file, &rv);
|
|
|
|
|
if (localFileMac)
|
|
|
|
|
{
|
|
|
|
|
localFileMac->InitWithFSSpec(&parentFolderSpec);
|
|
|
|
|
rv = localFileMac->QueryInterface(NS_GET_IID(nsIFile), (void**)aParent);
|
|
|
|
|
}
|
2000-03-09 00:35:11 +00:00
|
|
|
|
}
|
2000-04-26 01:50:24 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int len = strlen(appendedPath);
|
|
|
|
|
if (appendedPath[len] == ':')
|
|
|
|
|
appendedPath[len] = '\0';
|
|
|
|
|
|
|
|
|
|
char * doomedChar = strrchr(appendedPath, ':');
|
|
|
|
|
doomedChar[0] = '\0';
|
|
|
|
|
|
|
|
|
|
// Create the new nsLocalFile
|
|
|
|
|
nsCOMPtr<nsILocalFile> localFile = new nsLocalFile();
|
|
|
|
|
if (localFile == NULL)
|
|
|
|
|
{
|
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
goto bail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// See if it's a nsLocalFileMac (shouldn't be possible for it not to be)
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> localFileMac = do_QueryInterface(localFile);
|
|
|
|
|
if (localFileMac == NULL)
|
|
|
|
|
{
|
|
|
|
|
rv = NS_ERROR_NO_INTERFACE;
|
|
|
|
|
goto bail;
|
|
|
|
|
}
|
|
|
|
|
localFileMac->InitWithFSSpec(&mSpec);
|
|
|
|
|
localFileMac->SetAppendedPath(appendedPath);
|
|
|
|
|
localFileMac->QueryInterface(NS_GET_IID(nsIFile), (void**)aParent);
|
|
|
|
|
}
|
|
|
|
|
bail:
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(appendedPath);
|
2000-04-26 01:50:24 +00:00
|
|
|
|
break;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// !!!!! Danger Will Robinson !!!!!
|
|
|
|
|
// we really shouldn't get here
|
2000-03-09 00:35:11 +00:00
|
|
|
|
NS_NOTREACHED("Unknown nsLocalFileMac init type");
|
|
|
|
|
rv = NS_ERROR_FAILURE;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-03-09 00:35:11 +00:00
|
|
|
|
return rv;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-03-09 00:35:11 +00:00
|
|
|
|
|
1999-12-08 07:56:17 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Exists(PRBool *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
*_retval = PR_FALSE; // Assume failure
|
2000-04-25 02:39:42 +00:00
|
|
|
|
MakeDirty();
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if ( rv == NS_ERROR_FILE_NOT_FOUND )
|
|
|
|
|
return NS_OK;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-10-19 20:41:55 +00:00
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
|
// Only use mTargetSpec if mResolvedWasAlias is TRUE
|
|
|
|
|
FSSpec spec = mResolvedWasAlias ? mTargetSpec : mResolvedSpec;
|
|
|
|
|
FSSpec temp;
|
|
|
|
|
if (::FSMakeFSSpec(spec.vRefNum, spec.parID, spec.name, &temp) == noErr)
|
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsLocalFile::IsWritable(PRBool *outIsWritable)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ENSURE_ARG(outIsWritable);
|
|
|
|
|
*outIsWritable = PR_TRUE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
CInfoPBRec fileInfo;
|
|
|
|
|
OSErr err = GetTargetSpecCatInfo(fileInfo);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
// bit 0 in ioFlAttrib is the lock bit (apparently)
|
|
|
|
|
*outIsWritable = !(fileInfo.hFileInfo.ioFlAttrib & 0x01);
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::IsReadable(PRBool *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(_retval);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
// is it ever not readable on Mac?
|
2000-01-28 01:50:05 +00:00
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsLocalFile::IsExecutable(PRBool *outIsExecutable)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ENSURE_ARG(outIsExecutable);
|
|
|
|
|
*outIsExecutable = PR_FALSE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
OSType fileType, fileCreator;
|
|
|
|
|
rv = GetFileTypeAndCreator(&fileType, &fileCreator);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
*outIsExecutable = (fileType == 'APPL' || fileType == 'appe' || fileType == 'FNDR');
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-03-23 23:33:23 +00:00
|
|
|
|
nsLocalFile::IsDirectory(PRBool *outIsDir)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-03-23 23:33:23 +00:00
|
|
|
|
NS_ENSURE_ARG(outIsDir);
|
|
|
|
|
*outIsDir = PR_FALSE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
CInfoPBRec fileInfo;
|
|
|
|
|
OSErr err = GetTargetSpecCatInfo(fileInfo);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
*outIsDir = (fileInfo.hFileInfo.ioFlAttrib & ioDirMask) != 0;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-03-23 23:33:23 +00:00
|
|
|
|
nsLocalFile::IsFile(PRBool *outIsFile)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-03-23 23:33:23 +00:00
|
|
|
|
NS_ENSURE_ARG(outIsFile);
|
|
|
|
|
*outIsFile = PR_FALSE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
CInfoPBRec fileInfo;
|
|
|
|
|
OSErr err = GetTargetSpecCatInfo(fileInfo);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
*outIsFile = (fileInfo.hFileInfo.ioFlAttrib & ioDirMask) == 0;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::IsHidden(PRBool *_retval)
|
|
|
|
|
{
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
*_retval = PR_FALSE;
|
|
|
|
|
|
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
return TestFinderFlag(kIsInvisible, _retval);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_IMETHODIMP
|
1999-12-08 07:56:17 +00:00
|
|
|
|
nsLocalFile::IsSymlink(PRBool *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
*_retval = PR_FALSE;
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
return TestFinderFlag(kIsAlias, _retval, PR_FALSE);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Equals(nsIFile *inFile, PRBool *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(inFile);
|
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
*_retval = PR_FALSE;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
char* inFilePath;
|
|
|
|
|
inFile->GetPath(&inFilePath);
|
|
|
|
|
|
|
|
|
|
char* filePath;
|
|
|
|
|
GetPath(&filePath);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
if (strcmp(inFilePath, filePath) == 0)
|
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
|
nsMemory::Free(inFilePath);
|
|
|
|
|
nsMemory::Free(filePath);
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-03-23 23:33:23 +00:00
|
|
|
|
nsLocalFile::Contains(nsIFile *inFile, PRBool recur, PRBool *outContains)
|
1999-12-08 07:56:17 +00:00
|
|
|
|
{
|
2000-03-23 23:33:23 +00:00
|
|
|
|
/* Note here that we make no attempt to deal with the problem
|
|
|
|
|
of folder aliases. Doing a 'Contains' test and dealing with
|
|
|
|
|
folder aliases is Hard. Think about it.
|
|
|
|
|
*/
|
|
|
|
|
*outContains = PR_FALSE;
|
|
|
|
|
|
|
|
|
|
PRBool isDir;
|
|
|
|
|
nsresult rv = IsDirectory(&isDir); // need to cache this
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
if (!isDir) return NS_OK; // must be a dir to contain someone
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> macFile(do_QueryInterface(inFile));
|
|
|
|
|
if (!macFile) return NS_OK; // trying to compare non-local with local file
|
|
|
|
|
|
|
|
|
|
FSSpec mySpec = mResolvedSpec;
|
|
|
|
|
FSSpec compareSpec;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
rv = macFile->GetResolvedFSSpec(&compareSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
// if they are on different volumes, bail
|
|
|
|
|
if (mResolvedSpec.vRefNum != compareSpec.vRefNum)
|
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
|
|
// if recur == true, test every parent, otherwise just test the first one
|
|
|
|
|
// (yes, recur does not get set in this loop)
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
do
|
2000-01-28 01:50:05 +00:00
|
|
|
|
{
|
2000-03-23 23:33:23 +00:00
|
|
|
|
FSSpec parentFolderSpec;
|
|
|
|
|
err = GetParentFolderSpec(compareSpec, parentFolderSpec);
|
|
|
|
|
if (err != noErr) break; // we reached the top
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
if (IsEqualFSSpec(parentFolderSpec, mySpec))
|
|
|
|
|
{
|
|
|
|
|
*outContains = PR_TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compareSpec = parentFolderSpec;
|
|
|
|
|
} while (recur);
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetTarget(char **_retval)
|
2000-01-28 01:50:05 +00:00
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(_retval);
|
|
|
|
|
*_retval = nsnull;
|
|
|
|
|
|
|
|
|
|
PRBool symLink;
|
|
|
|
|
|
|
|
|
|
nsresult rv = IsSymlink(&symLink);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
if (!symLink)
|
|
|
|
|
{
|
|
|
|
|
return NS_ERROR_FILE_INVALID_PATH;
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
|
*_retval = (char*) nsMemory::Clone( mResolvedPath, strlen(mResolvedPath)+1 );
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetDirectoryEntries(nsISimpleEnumerator * *entries)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
|
|
*entries = nsnull;
|
|
|
|
|
|
|
|
|
|
PRBool isDir;
|
|
|
|
|
rv = IsDirectory(&isDir);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
if (!isDir)
|
|
|
|
|
return NS_ERROR_FILE_NOT_DIRECTORY;
|
|
|
|
|
|
|
|
|
|
nsDirEnumerator* dirEnum = new nsDirEnumerator();
|
|
|
|
|
if (dirEnum == nsnull)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
NS_ADDREF(dirEnum);
|
|
|
|
|
rv = dirEnum->Init(this);
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
|
{
|
|
|
|
|
NS_RELEASE(dirEnum);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*entries = dirEnum;
|
|
|
|
|
return NS_OK;
|
1999-12-08 07:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-12 08:05:13 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetURL(char * *aURL)
|
|
|
|
|
{
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::SetURL(const char * aURL)
|
|
|
|
|
{
|
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-17 15:03:05 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetPersistentDescriptor(char * *aPersistentDescriptor)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aPersistentDescriptor);
|
|
|
|
|
*aPersistentDescriptor = nsnull;
|
|
|
|
|
|
|
|
|
|
nsresult rv = ResolveAndStat( PR_TRUE );
|
|
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
AliasHandle aliasH;
|
|
|
|
|
OSErr err = ::NewAlias(nil, &mTargetSpec, &aliasH);
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
PRUint32 bytes = ::GetHandleSize((Handle) aliasH);
|
|
|
|
|
HLock((Handle) aliasH);
|
|
|
|
|
char* buf = PL_Base64Encode((const char*)*aliasH, bytes, nsnull); // Passing nsnull for dest makes NULL-term string
|
|
|
|
|
::DisposeHandle((Handle) aliasH);
|
|
|
|
|
NS_ENSURE_TRUE(buf, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
|
|
*aPersistentDescriptor = buf;
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetPersistentDescriptor(const char * aPersistentDescriptor)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(aPersistentDescriptor);
|
|
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
|
|
PRUint32 dataSize = nsCRT::strlen(aPersistentDescriptor);
|
|
|
|
|
char* decodedData = PL_Base64Decode((const char*)aPersistentDescriptor, dataSize, nsnull);
|
|
|
|
|
// Cast to an alias record and resolve.
|
|
|
|
|
AliasHandle aliasH = nsnull;
|
|
|
|
|
if (::PtrToHand(decodedData, &(Handle)aliasH, (dataSize * 3) / 4) != noErr)
|
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
PR_Free(decodedData);
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
|
|
Boolean changed;
|
|
|
|
|
FSSpec resolvedSpec;
|
|
|
|
|
OSErr err;
|
2000-09-09 15:26:52 +00:00
|
|
|
|
err = ::ResolveAlias(nsnull, aliasH, &resolvedSpec, &changed);
|
|
|
|
|
if (err == fnfErr) // resolvedSpec is valid in this case
|
|
|
|
|
err = noErr;
|
2000-07-17 15:03:05 +00:00
|
|
|
|
rv = MacErrorMapper(err);
|
|
|
|
|
DisposeHandle((Handle) aliasH);
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
|
|
return InitWithFSSpec(&resolvedSpec);
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
#pragma mark -
|
|
|
|
|
|
|
|
|
|
// a stack-based, exception safe class for an AEDesc
|
|
|
|
|
|
|
|
|
|
#pragma mark
|
|
|
|
|
class StAEDesc: public AEDesc
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StAEDesc()
|
|
|
|
|
{
|
|
|
|
|
descriptorType = typeNull;
|
|
|
|
|
dataHandle = nil;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~StAEDesc()
|
|
|
|
|
{
|
|
|
|
|
::AEDisposeDesc(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
|
{
|
|
|
|
|
::AEDisposeDesc(this);
|
|
|
|
|
descriptorType = typeNull;
|
|
|
|
|
dataHandle = nil;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// disallow copies and assigns
|
|
|
|
|
StAEDesc(const StAEDesc& rhs); // copy constructor
|
|
|
|
|
StAEDesc& operator= (const StAEDesc&rhs); // throws OSErrs
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
#pragma mark [Utility methods]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OSErr nsLocalFile::GetTargetSpecCatInfo(CInfoPBRec& outInfo)
|
|
|
|
|
{
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
if (!mHaveFileInfo)
|
|
|
|
|
{
|
|
|
|
|
mTargetFileInfoRec.hFileInfo.ioCompletion = nsnull;
|
|
|
|
|
mTargetFileInfoRec.hFileInfo.ioFDirIndex = 0; // use dirID and name
|
|
|
|
|
mTargetFileInfoRec.hFileInfo.ioVRefNum = mTargetSpec.vRefNum;
|
|
|
|
|
mTargetFileInfoRec.hFileInfo.ioDirID = mTargetSpec.parID;
|
|
|
|
|
mTargetFileInfoRec.hFileInfo.ioNamePtr = mTargetSpec.name;
|
|
|
|
|
|
|
|
|
|
err = PBGetCatInfoSync(&mTargetFileInfoRec);
|
|
|
|
|
mHaveFileInfo = (err == noErr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
outInfo = mTargetFileInfoRec;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsLocalFile::TestFinderFlag(PRUint16 flagMask, PRBool *outFlagSet, PRBool testTargetSpec /* = PR_TRUE */)
|
|
|
|
|
{
|
|
|
|
|
CInfoPBRec fileInfo;
|
|
|
|
|
|
|
|
|
|
// we assume here that ResolveAndStat has already been called
|
|
|
|
|
|
|
|
|
|
*outFlagSet = PR_FALSE;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
if (testTargetSpec)
|
|
|
|
|
{
|
|
|
|
|
err = GetTargetSpecCatInfo(fileInfo);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// we don't cache this CInfoPBRec, so do it manually
|
|
|
|
|
|
|
|
|
|
fileInfo.hFileInfo.ioCompletion = nsnull;
|
|
|
|
|
fileInfo.hFileInfo.ioFDirIndex = 0; // use dirID and name
|
|
|
|
|
fileInfo.hFileInfo.ioVRefNum = mResolvedSpec.vRefNum;
|
|
|
|
|
fileInfo.hFileInfo.ioDirID = mResolvedSpec.parID;
|
|
|
|
|
fileInfo.hFileInfo.ioNamePtr = mResolvedSpec.name;
|
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
err = PBGetCatInfoSync(&fileInfo);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
*outFlagSet = (fileInfo.hFileInfo.ioFlFndrInfo.fdFlags & flagMask) != 0;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsLocalFile::FindRunningAppBySignature (OSType aAppSig, FSSpec& outSpec, ProcessSerialNumber& outPsn)
|
|
|
|
|
{
|
|
|
|
|
ProcessInfoRec info;
|
|
|
|
|
FSSpec tempFSSpec;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
outPsn.highLongOfPSN = 0;
|
|
|
|
|
outPsn.lowLongOfPSN = kNoProcess;
|
|
|
|
|
|
|
|
|
|
while (PR_TRUE)
|
|
|
|
|
{
|
|
|
|
|
err = ::GetNextProcess(&outPsn);
|
|
|
|
|
if (err == procNotFound) break;
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
info.processInfoLength = sizeof(ProcessInfoRec);
|
|
|
|
|
info.processName = nil;
|
|
|
|
|
info.processAppSpec = &tempFSSpec;
|
|
|
|
|
err = ::GetProcessInformation(&outPsn, &info);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
if (info.processSignature == aAppSig)
|
|
|
|
|
{
|
|
|
|
|
outSpec = tempFSSpec;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND; // really process not found
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsLocalFile::FindRunningAppByFSSpec(const FSSpec& appSpec, ProcessSerialNumber& outPsn)
|
|
|
|
|
{
|
|
|
|
|
ProcessInfoRec info;
|
|
|
|
|
FSSpec tempFSSpec;
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
|
|
|
|
|
outPsn.highLongOfPSN = 0;
|
|
|
|
|
outPsn.lowLongOfPSN = kNoProcess;
|
|
|
|
|
|
|
|
|
|
while (PR_TRUE)
|
|
|
|
|
{
|
|
|
|
|
err = ::GetNextProcess(&outPsn);
|
|
|
|
|
if (err == procNotFound) break;
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
info.processInfoLength = sizeof(ProcessInfoRec);
|
|
|
|
|
info.processName = nil;
|
|
|
|
|
info.processAppSpec = &tempFSSpec;
|
|
|
|
|
err = ::GetProcessInformation(&outPsn, &info);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
2000-03-23 23:33:23 +00:00
|
|
|
|
if (IsEqualFSSpec(appSpec, *info.processAppSpec))
|
2000-02-23 23:09:02 +00:00
|
|
|
|
{
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND; // really process not found
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsLocalFile::FindAppOnLocalVolumes(OSType sig, FSSpec &outSpec)
|
|
|
|
|
{
|
|
|
|
|
OSErr err;
|
|
|
|
|
|
|
|
|
|
// get the system volume
|
|
|
|
|
long systemFolderDirID;
|
|
|
|
|
short sysVRefNum;
|
|
|
|
|
err = FindFolder(kOnSystemDisk, kSystemFolderType, false, &sysVRefNum, &systemFolderDirID);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
short vRefNum = sysVRefNum;
|
|
|
|
|
short index = 0;
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
if (index == 0 || vRefNum != sysVRefNum)
|
|
|
|
|
{
|
|
|
|
|
// should we avoid AppleShare volumes?
|
|
|
|
|
|
|
|
|
|
Boolean hasDesktopDB;
|
|
|
|
|
err = VolHasDesktopDB(vRefNum, &hasDesktopDB);
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
if (hasDesktopDB)
|
|
|
|
|
{
|
|
|
|
|
err = FindAppOnVolume(sig, vRefNum, &outSpec);
|
|
|
|
|
if (err != afpItemNotFound) return err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
index++;
|
|
|
|
|
err = GetIndVolume(index, &vRefNum);
|
|
|
|
|
if (err == nsvErr) return fnfErr;
|
|
|
|
|
if (err != noErr) return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 05:03:38 +00:00
|
|
|
|
#define aeSelectionKeyword 'fsel'
|
|
|
|
|
#define kAEOpenSelection 'sope'
|
|
|
|
|
#define kAERevealSelection 'srev'
|
|
|
|
|
#define kFinderType 'FNDR'
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::Launch()
|
|
|
|
|
{
|
|
|
|
|
AppleEvent aeEvent = {0, nil};
|
|
|
|
|
AppleEvent aeReply = {0, nil};
|
|
|
|
|
StAEDesc aeDirDesc, listElem, myAddressDesc, fileList;
|
|
|
|
|
FSSpec dirSpec, appSpec;
|
|
|
|
|
AliasHandle DirAlias, FileAlias;
|
|
|
|
|
OSErr errorResult = noErr;
|
|
|
|
|
ProcessSerialNumber process;
|
|
|
|
|
|
|
|
|
|
// for launching a file, we'll use mTargetSpec (which is both a resolved spec and a resolved alias)
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
|
|
|
|
nsresult rv = FindRunningAppBySignature ('MACS', appSpec, process);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
errorResult = AECreateDesc(typeProcessSerialNumber, (Ptr)&process, sizeof(process), &myAddressDesc);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
/* Create the FinderEvent */
|
|
|
|
|
errorResult = AECreateAppleEvent(kFinderType, kAEOpenSelection, &myAddressDesc, kAutoGenerateReturnID, kAnyTransactionID,
|
|
|
|
|
&aeEvent);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = FSMakeFSSpec(mTargetSpec.vRefNum, mTargetSpec.parID, nil, &dirSpec);
|
|
|
|
|
NewAlias(nil, &dirSpec, &DirAlias);
|
|
|
|
|
/* Create alias for file */
|
|
|
|
|
NewAlias(nil, &mTargetSpec, &FileAlias);
|
|
|
|
|
|
|
|
|
|
/* Create the file list */
|
|
|
|
|
errorResult = AECreateList(nil, 0, false, &fileList);
|
|
|
|
|
/* create the folder descriptor */
|
|
|
|
|
HLock((Handle)DirAlias);
|
|
|
|
|
errorResult = AECreateDesc(typeAlias, (Ptr)*DirAlias, GetHandleSize((Handle)DirAlias), &aeDirDesc);
|
|
|
|
|
HUnlock((Handle)DirAlias);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = AEPutParamDesc(&aeEvent, keyDirectObject, &aeDirDesc);
|
|
|
|
|
if ( errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
/* create the file descriptor and add to aliasList */
|
|
|
|
|
HLock((Handle)FileAlias);
|
|
|
|
|
errorResult = AECreateDesc(typeAlias, (Ptr)*FileAlias, GetHandleSize((Handle)FileAlias), &listElem);
|
|
|
|
|
HLock((Handle)FileAlias);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = AEPutDesc(&fileList, 0, &listElem);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
/* Add the file alias list to the event */
|
|
|
|
|
errorResult = AEPutParamDesc(&aeEvent, aeSelectionKeyword, &fileList);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
AESend(&aeEvent, &aeReply, kAEWaitReply + kAENeverInteract
|
|
|
|
|
+ kAECanSwitchLayer, kAEHighPriority, kAEDefaultTimeout, nil, nil);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::Reveal()
|
|
|
|
|
{
|
|
|
|
|
AppleEvent aeEvent = {0, nil};
|
|
|
|
|
AppleEvent aeReply = {0, nil};
|
|
|
|
|
StAEDesc aeDirDesc, listElem, myAddressDesc, fileList;
|
|
|
|
|
OSErr errorResult = noErr;
|
|
|
|
|
ProcessSerialNumber process;
|
|
|
|
|
FSSpec appSpec;
|
|
|
|
|
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
|
|
|
|
// for reveal, we'll use mResolvedSpec (which is a resolved spec and possibly an alias)
|
|
|
|
|
nsresult rv = FindRunningAppBySignature ('MACS', appSpec, process);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
errorResult = AECreateDesc(typeProcessSerialNumber, (Ptr)&process, sizeof(process), &myAddressDesc);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
/* Create the FinderEvent */
|
|
|
|
|
errorResult = AECreateAppleEvent(kFinderType, kAERevealSelection, &myAddressDesc, kAutoGenerateReturnID, kAnyTransactionID,
|
|
|
|
|
&aeEvent);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
/* Create the file list */
|
|
|
|
|
errorResult = AECreateList(nil, 0, false, &fileList);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = AEPutPtr(&fileList, 0, typeFSS, &mResolvedSpec, sizeof(FSSpec));
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = AEPutParamDesc(&aeEvent,keySelection, &fileList);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
{
|
|
|
|
|
errorResult = AESend(&aeEvent, &aeReply, kAENoReply, kAENormalPriority, kAEDefaultTimeout, nil, nil);
|
|
|
|
|
if (errorResult == noErr)
|
|
|
|
|
SetFrontProcess(&process);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult nsLocalFile::MyLaunchAppWithDoc(const FSSpec& appSpec, const FSSpec* aDocToLoad, PRBool aLaunchInBackground)
|
|
|
|
|
{
|
|
|
|
|
ProcessSerialNumber thePSN = {0};
|
|
|
|
|
StAEDesc target;
|
|
|
|
|
StAEDesc docDesc;
|
|
|
|
|
StAEDesc launchDesc;
|
|
|
|
|
StAEDesc docList;
|
|
|
|
|
AppleEvent theEvent = {0, nil};
|
|
|
|
|
AppleEvent theReply = {0, nil};
|
|
|
|
|
OSErr err = noErr;
|
|
|
|
|
Boolean autoParamValue = false;
|
|
|
|
|
Boolean running = false;
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
|
|
rv = FindRunningAppByFSSpec(appSpec, thePSN);
|
|
|
|
|
running = NS_SUCCEEDED(rv);
|
|
|
|
|
|
|
|
|
|
err = AECreateDesc(typeProcessSerialNumber, &thePSN, sizeof(thePSN), &target);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
err = AECreateAppleEvent(kCoreEventClass, aDocToLoad ? kAEOpenDocuments : kAEOpenApplication, &target,
|
|
|
|
|
kAutoGenerateReturnID, kAnyTransactionID, &theEvent);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
if (aDocToLoad)
|
|
|
|
|
{
|
|
|
|
|
err = AECreateList(nil, 0, false, &docList);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
2000-09-06 21:13:10 +00:00
|
|
|
|
err = AECreateDesc(typeFSS, aDocToLoad, sizeof(FSSpec), &docDesc);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
err = AEPutDesc(&docList, 0, &docDesc);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
err = AEPutParamDesc(&theEvent, keyDirectObject, &docList);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (running)
|
|
|
|
|
{
|
|
|
|
|
err = AESend(&theEvent, &theReply, kAENoReply, kAENormalPriority, kNoTimeOut, nil, nil);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
if (!aLaunchInBackground)
|
|
|
|
|
{
|
|
|
|
|
err = ::SetFrontProcess(&thePSN);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LaunchParamBlockRec launchThis = {0};
|
|
|
|
|
PRUint16 launchControlFlags = (launchContinue | launchNoFileFlags);
|
|
|
|
|
if (aLaunchInBackground)
|
|
|
|
|
launchControlFlags |= launchDontSwitch;
|
|
|
|
|
|
|
|
|
|
err = AECoerceDesc(&theEvent, typeAppParameters, &launchDesc);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
launchThis.launchAppSpec = (FSSpecPtr)&appSpec;
|
2000-06-20 23:10:06 +00:00
|
|
|
|
#if TARGET_CARBON && ACCESSOR_CALLS_ARE_FUNCTIONS
|
|
|
|
|
::AEGetDescData(&launchDesc, &launchThis.launchAppParameters, sizeof(launchThis.launchAppParameters));
|
|
|
|
|
#else
|
|
|
|
|
// no need to lock this handle.
|
2000-09-06 21:13:10 +00:00
|
|
|
|
launchThis.launchAppParameters = (AppParametersPtr) *(launchDesc.dataHandle);
|
2000-06-20 23:10:06 +00:00
|
|
|
|
#endif
|
2000-02-23 23:09:02 +00:00
|
|
|
|
launchThis.launchBlockID = extendedBlock;
|
|
|
|
|
launchThis.launchEPBLength = extendedBlockLen;
|
|
|
|
|
launchThis.launchFileFlags = 0;
|
|
|
|
|
launchThis.launchControlFlags = launchControlFlags;
|
|
|
|
|
err = ::LaunchApplication(&launchThis);
|
|
|
|
|
if (err != noErr) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
|
|
// let's be nice and wait until it's running
|
|
|
|
|
const PRUint32 kMaxTimeToWait = 60; // wait 1 sec max
|
|
|
|
|
PRUint32 endTicks = ::TickCount() + kMaxTimeToWait;
|
|
|
|
|
|
|
|
|
|
PRBool foundApp = PR_FALSE;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
EventRecord theEvent;
|
|
|
|
|
(void)WaitNextEvent(nullEvent, &theEvent, 1, NULL);
|
|
|
|
|
|
|
|
|
|
ProcessSerialNumber psn;
|
|
|
|
|
foundApp = NS_SUCCEEDED(FindRunningAppByFSSpec(appSpec, psn));
|
|
|
|
|
|
|
|
|
|
} while (!foundApp && (::TickCount() <= endTicks));
|
|
|
|
|
|
|
|
|
|
NS_ASSERTION(foundApp, "Failed to find app after launching it");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (theEvent.dataHandle != nil) AEDisposeDesc(&theEvent);
|
|
|
|
|
if (theReply.dataHandle != nil) AEDisposeDesc(&theReply);
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#pragma mark -
|
|
|
|
|
#pragma mark [Methods that won't be implemented on Mac]
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::Normalize()
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetPermissions(PRUint32 *aPermissions)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetPermissionsOfLink(PRUint32 *aPermissionsOfLink)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetPermissions(PRUint32 aPermissions)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::SetPermissionsOfLink(PRUint32 aPermissions)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::IsSpecial(PRBool *_retval)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
#pragma mark [nsILocalFileMac]
|
|
|
|
|
// Implementation of Mac specific finctions from nsILocalFileMac
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetInitType(nsLocalFileMacInitType *type)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(type);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
*type = mInitType;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::InitWithFSSpec(const FSSpec *fileSpec)
|
|
|
|
|
{
|
|
|
|
|
MakeDirty();
|
2000-06-08 00:31:06 +00:00
|
|
|
|
mSpec = *fileSpec;
|
|
|
|
|
mResolvedSpec = *fileSpec;
|
|
|
|
|
mTargetSpec = *fileSpec;
|
|
|
|
|
mAppendedPath = "";
|
|
|
|
|
mInitType = eInitWithFSSpec;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::InitFindingAppByCreatorCode(OSType aAppCreator)
|
|
|
|
|
{
|
|
|
|
|
// is the app running?
|
|
|
|
|
FSSpec appSpec;
|
|
|
|
|
ProcessSerialNumber psn;
|
|
|
|
|
|
|
|
|
|
nsresult rv = FindRunningAppBySignature(aAppCreator, appSpec, psn);
|
|
|
|
|
if (rv == NS_ERROR_FILE_NOT_FOUND)
|
|
|
|
|
{
|
|
|
|
|
// we have to look on disk
|
|
|
|
|
rv = FindAppOnLocalVolumes(aAppCreator, appSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
}
|
|
|
|
|
else if (NS_FAILED(rv))
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
|
|
// init with the spec here
|
|
|
|
|
return InitWithFSSpec(&appSpec);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetFSSpec(FSSpec *fileSpec)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(fileSpec);
|
|
|
|
|
*fileSpec = mSpec;
|
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetResolvedFSSpec(FSSpec *fileSpec)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(fileSpec);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
2000-12-12 20:14:03 +00:00
|
|
|
|
if (rv == NS_ERROR_FILE_NOT_FOUND)
|
|
|
|
|
rv = NS_OK;
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
*fileSpec = mResolvedSpec;
|
|
|
|
|
return rv;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-01 23:42:28 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetTargetFSSpec(FSSpec *fileSpec)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(fileSpec);
|
2000-02-23 23:09:02 +00:00
|
|
|
|
nsresult rv = ResolveAndStat(PR_TRUE);
|
2000-12-12 20:14:03 +00:00
|
|
|
|
if (rv == NS_ERROR_FILE_NOT_FOUND)
|
|
|
|
|
rv = NS_OK;
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
*fileSpec = mTargetSpec;
|
|
|
|
|
return rv;
|
2000-02-01 23:42:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::SetAppendedPath(const char *aPath)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
MakeDirty();
|
|
|
|
|
|
2000-04-01 00:39:02 +00:00
|
|
|
|
mAppendedPath.Assign(aPath);
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetAppendedPath(char **_retval)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
2000-06-03 09:46:12 +00:00
|
|
|
|
*_retval = (char*) nsMemory::Clone(mAppendedPath, strlen(mAppendedPath)+1);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::GetFileTypeAndCreator(OSType *type, OSType *creator)
|
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
NS_ENSURE_ARG(type);
|
|
|
|
|
NS_ENSURE_ARG(creator);
|
|
|
|
|
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
FInfo info;
|
2000-02-01 23:42:28 +00:00
|
|
|
|
OSErr err = ::FSpGetFInfo(&mTargetSpec, &info);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr)
|
2000-04-24 03:24:49 +00:00
|
|
|
|
{
|
|
|
|
|
*type = mType;
|
|
|
|
|
*creator = mCreator;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
2000-04-24 03:24:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*type = info.fdType;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
*creator = info.fdCreator;
|
2000-01-28 01:50:05 +00:00
|
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::SetFileTypeAndCreator(OSType type, OSType creator)
|
|
|
|
|
{
|
2000-04-24 03:24:49 +00:00
|
|
|
|
mType = type;
|
|
|
|
|
mCreator = creator;
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
FInfo info;
|
2000-02-01 23:42:28 +00:00
|
|
|
|
OSErr err = ::FSpGetFInfo(&mTargetSpec, &info);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr)
|
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
2000-11-14 15:58:54 +00:00
|
|
|
|
|
|
|
|
|
if (creator == CURRENT_PROCESS_CREATOR)
|
|
|
|
|
creator = (mgCurrentProcessSignature != 0) ? mgCurrentProcessSignature : kDefaultCreator;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
// See if the user specified a type or creator before changing from what was read
|
|
|
|
|
if (type)
|
|
|
|
|
info.fdType = type;
|
|
|
|
|
if (creator)
|
|
|
|
|
info.fdCreator = creator;
|
|
|
|
|
|
2000-02-01 23:42:28 +00:00
|
|
|
|
err = ::FSpSetFInfo(&mTargetSpec, &info);
|
2000-01-24 21:28:28 +00:00
|
|
|
|
if (err != noErr)
|
|
|
|
|
return NS_ERROR_FILE_ACCESS_DENIED;
|
|
|
|
|
|
2000-01-28 01:50:05 +00:00
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-11-14 15:58:54 +00:00
|
|
|
|
NS_IMETHODIMP nsLocalFile::SetFileTypeFromSuffix(const char *suffix)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(suffix);
|
2001-02-07 00:46:58 +00:00
|
|
|
|
return SetOSTypeAndCreatorFromExtension(suffix);
|
2000-11-14 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsLocalFile::SetFileTypeFromMIMEType(const char *mimetype)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(mimetype);
|
|
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
NS_WITH_SERVICE(nsIInternetConfigService, icService, NS_INTERNETCONFIGSERVICE_CONTRACTID, &rv);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
nsCOMPtr<nsIMIMEInfo> mimeInfo;
|
|
|
|
|
rv = icService->FillInMIMEInfo(mimetype, nsnull, getter_AddRefs(mimeInfo));
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
PRUint32 osType;
|
|
|
|
|
rv = mimeInfo->GetMacType(&osType);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
mType = osType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-04 07:17:36 +00:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::GetFileSizeWithResFork(PRInt64 *aFileSize)
|
|
|
|
|
{
|
|
|
|
|
NS_ENSURE_ARG(aFileSize);
|
|
|
|
|
|
|
|
|
|
aFileSize->hi = 0;
|
|
|
|
|
aFileSize->lo = 0;
|
|
|
|
|
|
|
|
|
|
ResolveAndStat(PR_TRUE);
|
|
|
|
|
|
|
|
|
|
long dataSize = 0;
|
|
|
|
|
long resSize = 0;
|
|
|
|
|
|
|
|
|
|
OSErr err = FSpGetFileSize(&mTargetSpec, &dataSize, &resSize);
|
|
|
|
|
|
|
|
|
|
if (err != noErr)
|
|
|
|
|
return MacErrorMapper(err);
|
|
|
|
|
|
|
|
|
|
// For now we've only got 32 bits of file size info
|
|
|
|
|
PRInt64 dataInt64 = LL_Zero();
|
|
|
|
|
PRInt64 resInt64 = LL_Zero();
|
|
|
|
|
|
|
|
|
|
// Combine the size of the resource and data forks
|
|
|
|
|
LL_I2L(resInt64, resSize);
|
|
|
|
|
LL_I2L(dataInt64, dataSize);
|
|
|
|
|
LL_ADD((*aFileSize), dataInt64, resInt64);
|
|
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
// this nsLocalFile points to the app. We want to launch it, optionally with the document.
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::LaunchAppWithDoc(nsILocalFile* aDocToLoad, PRBool aLaunchInBackground)
|
|
|
|
|
{
|
|
|
|
|
// are we launchable?
|
|
|
|
|
PRBool isExecutable;
|
|
|
|
|
nsresult rv = IsExecutable(&isExecutable);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
if (!isExecutable) return NS_ERROR_FILE_EXECUTION_FAILED;
|
|
|
|
|
|
|
|
|
|
FSSpec docSpec;
|
|
|
|
|
FSSpecPtr docSpecPtr = nsnull;
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> macDoc = do_QueryInterface(aDocToLoad);
|
|
|
|
|
if (macDoc)
|
|
|
|
|
{
|
|
|
|
|
rv = macDoc->GetTargetFSSpec(&docSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
docSpecPtr = &docSpec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FSSpec appSpec;
|
|
|
|
|
rv = GetResolvedFSSpec(&appSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
rv = MyLaunchAppWithDoc(appSpec, docSpecPtr, aLaunchInBackground);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
nsLocalFile::OpenDocWithApp(nsILocalFile* aAppToOpenWith, PRBool aLaunchInBackground)
|
|
|
|
|
{
|
|
|
|
|
// if aAppToOpenWith is nil, we have to find the app from the creator code
|
|
|
|
|
// of the document
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
|
|
FSSpec appSpec;
|
|
|
|
|
|
|
|
|
|
if (aAppToOpenWith)
|
|
|
|
|
{
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> appFileMac = do_QueryInterface(aAppToOpenWith, &rv);
|
|
|
|
|
if (!appFileMac) return rv;
|
|
|
|
|
|
|
|
|
|
rv = appFileMac->GetTargetFSSpec(&appSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
// is it launchable?
|
|
|
|
|
PRBool isExecutable;
|
|
|
|
|
rv = aAppToOpenWith->IsExecutable(&isExecutable);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
if (!isExecutable) return NS_ERROR_FILE_EXECUTION_FAILED;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// look for one
|
|
|
|
|
OSType fileType, fileCreator;
|
|
|
|
|
rv = GetFileTypeAndCreator(&fileType, &fileCreator);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
// just make one on the stack
|
|
|
|
|
nsLocalFile localAppFile;
|
|
|
|
|
rv = localAppFile.InitFindingAppByCreatorCode(fileCreator);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
rv = localAppFile.GetTargetFSSpec(&appSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FSSpec docSpec;
|
|
|
|
|
rv = GetResolvedFSSpec(&docSpec);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
rv = MyLaunchAppWithDoc(appSpec, &docSpec, aLaunchInBackground);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 00:46:58 +00:00
|
|
|
|
nsresult nsLocalFile::SetOSTypeAndCreatorFromExtension(const char* extension)
|
2000-11-14 15:58:54 +00:00
|
|
|
|
{
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
|
|
nsXPIDLCString localExtBuf;
|
2001-02-07 00:46:58 +00:00
|
|
|
|
const char *extPtr;
|
2000-11-14 15:58:54 +00:00
|
|
|
|
|
|
|
|
|
if (!extension)
|
|
|
|
|
{
|
|
|
|
|
rv = GetLeafName(getter_Copies(localExtBuf));
|
|
|
|
|
extPtr = strrchr(localExtBuf, '.');
|
|
|
|
|
if (!extPtr)
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
++extPtr;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-02-07 00:46:58 +00:00
|
|
|
|
extPtr = extension;
|
2000-11-14 15:58:54 +00:00
|
|
|
|
if (*extPtr == '.')
|
|
|
|
|
++extPtr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_WITH_SERVICE(nsIInternetConfigService, icService, NS_INTERNETCONFIGSERVICE_CONTRACTID, &rv);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
nsCOMPtr<nsIMIMEInfo> mimeInfo;
|
|
|
|
|
rv = icService->GetMIMEInfoFromExtension(extPtr, getter_AddRefs(mimeInfo));
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
{
|
|
|
|
|
PRUint32 osType;
|
|
|
|
|
rv = mimeInfo->GetMacType(&osType);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
mType = osType;
|
2001-02-07 00:46:58 +00:00
|
|
|
|
PRBool skip;
|
|
|
|
|
rv = ExtensionIsOnExceptionList(extPtr, &skip);
|
|
|
|
|
if (NS_SUCCEEDED(rv) && !skip)
|
|
|
|
|
{
|
|
|
|
|
rv = mimeInfo->GetMacCreator(&osType);
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
|
mCreator = osType;
|
|
|
|
|
}
|
2000-11-14 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 00:46:58 +00:00
|
|
|
|
nsresult nsLocalFile::ExtensionIsOnExceptionList(const char *extension, PRBool *onList)
|
|
|
|
|
{
|
|
|
|
|
// Probably want to make a global list somewhere in the future
|
|
|
|
|
// for now, just check for "html" and "htm"
|
|
|
|
|
|
|
|
|
|
*onList = PR_FALSE;
|
|
|
|
|
|
|
|
|
|
if (!nsCRT::strcasecmp(extension, "html") ||
|
|
|
|
|
!nsCRT::strcasecmp(extension, "htm"))
|
|
|
|
|
*onList = PR_TRUE;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-11-14 15:58:54 +00:00
|
|
|
|
nsresult nsLocalFile::DetermineCurrentProcessCreator()
|
|
|
|
|
{
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
|
|
if (mgCurrentProcessSignature == 0)
|
|
|
|
|
{
|
|
|
|
|
OSErr err;
|
|
|
|
|
ProcessSerialNumber psn;
|
|
|
|
|
ProcessInfoRec info;
|
|
|
|
|
|
|
|
|
|
psn.highLongOfPSN = 0;
|
|
|
|
|
psn.lowLongOfPSN = kCurrentProcess;
|
|
|
|
|
|
|
|
|
|
info.processInfoLength = sizeof(ProcessInfoRec);
|
|
|
|
|
info.processName = nil;
|
|
|
|
|
info.processAppSpec = nil;
|
|
|
|
|
err = ::GetProcessInformation(&psn, &info);
|
|
|
|
|
if (err == noErr)
|
|
|
|
|
mgCurrentProcessSignature = info.processSignature;
|
|
|
|
|
// Try again next time if error
|
|
|
|
|
else
|
|
|
|
|
rv = MacErrorMapper(err);
|
|
|
|
|
}
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
2000-02-23 23:09:02 +00:00
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
|
2000-01-24 21:28:28 +00:00
|
|
|
|
// Handy dandy utility create routine for something or the other
|
2000-01-28 23:35:55 +00:00
|
|
|
|
nsresult
|
2000-07-12 23:31:31 +00:00
|
|
|
|
NS_NewLocalFile(const char* path, PRBool followLinks, nsILocalFile* *result)
|
2000-01-24 21:28:28 +00:00
|
|
|
|
{
|
2000-01-28 01:50:05 +00:00
|
|
|
|
nsLocalFile* file = new nsLocalFile();
|
|
|
|
|
if (file == nsnull)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
NS_ADDREF(file);
|
|
|
|
|
|
2000-07-12 23:31:31 +00:00
|
|
|
|
file->SetFollowLinks(followLinks);
|
|
|
|
|
|
2000-07-17 15:03:05 +00:00
|
|
|
|
if (path) {
|
|
|
|
|
nsresult rv = file->InitWithPath(path);
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
|
NS_RELEASE(file);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
2000-01-28 01:50:05 +00:00
|
|
|
|
}
|
|
|
|
|
*result = file;
|
|
|
|
|
return NS_OK;
|
2000-01-24 21:28:28 +00:00
|
|
|
|
}
|
1999-12-08 07:56:17 +00:00
|
|
|
|
|
2000-04-25 04:09:18 +00:00
|
|
|
|
nsresult
|
2000-07-12 23:31:31 +00:00
|
|
|
|
NS_NewLocalFileWithFSSpec(FSSpec* inSpec, PRBool followLinks, nsILocalFileMac* *result)
|
2000-04-25 04:09:18 +00:00
|
|
|
|
{
|
|
|
|
|
nsLocalFile* file = new nsLocalFile();
|
|
|
|
|
if (file == nsnull)
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
NS_ADDREF(file);
|
|
|
|
|
|
2000-07-12 23:31:31 +00:00
|
|
|
|
file->SetFollowLinks(followLinks);
|
|
|
|
|
|
2000-04-25 04:09:18 +00:00
|
|
|
|
nsresult rv = file->InitWithFSSpec(inSpec);
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
|
NS_RELEASE(file);
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
*result = file;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|