1999-12-04 04:13:44 +03: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
|
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Doug Turner <dougt@netscape.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _nsLocalFileWIN_H_
|
|
|
|
#define _nsLocalFileWIN_H_
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsIFactory.h"
|
|
|
|
|
|
|
|
#include "windows.h"
|
|
|
|
|
|
|
|
// For older version (<6.0) of the VC Compiler
|
|
|
|
#if (_MSC_VER == 1100)
|
2003-03-07 09:07:56 +03:00
|
|
|
#include <objbase.h>
|
1999-12-04 04:13:44 +03:00
|
|
|
DEFINE_OLEGUID(IID_IPersistFile, 0x0000010BL, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "shlobj.h"
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2002-02-15 03:14:20 +03:00
|
|
|
class nsLocalFile : public nsILocalFile
|
1999-12-04 04:13:44 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR(NS_LOCAL_FILE_CID)
|
|
|
|
|
|
|
|
nsLocalFile();
|
|
|
|
|
2000-01-25 00:28:28 +03:00
|
|
|
static NS_METHOD nsLocalFileConstructor(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr);
|
1999-12-04 04:13:44 +03:00
|
|
|
|
|
|
|
// nsISupports interface
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIFile interface
|
|
|
|
NS_DECL_NSIFILE
|
|
|
|
|
|
|
|
// nsILocalFile interface
|
|
|
|
NS_DECL_NSILOCALFILE
|
|
|
|
|
2002-04-27 09:33:09 +04:00
|
|
|
public:
|
|
|
|
static void GlobalInit();
|
|
|
|
static void GlobalShutdown();
|
|
|
|
|
1999-12-04 04:13:44 +03:00
|
|
|
private:
|
2003-07-19 02:14:16 +04:00
|
|
|
nsLocalFile(const nsLocalFile& other);
|
2004-01-15 09:14:18 +03:00
|
|
|
~nsLocalFile() {}
|
1999-12-04 04:13:44 +03:00
|
|
|
|
|
|
|
// this is the flag which indicates if I can used cached information about the file
|
2000-07-13 03:31:31 +04:00
|
|
|
PRPackedBool mDirty;
|
|
|
|
PRPackedBool mLastResolution;
|
|
|
|
|
|
|
|
PRPackedBool mFollowSymlinks;
|
|
|
|
|
1999-12-04 04:13:44 +03:00
|
|
|
// this string will alway be in native format!
|
|
|
|
nsCString mWorkingPath;
|
|
|
|
|
|
|
|
// this will be the resolve path which will *NEVER* be return to the user
|
|
|
|
nsCString mResolvedPath;
|
|
|
|
|
2002-04-27 09:33:09 +04:00
|
|
|
PRFileInfo64 mFileInfo64;
|
|
|
|
|
|
|
|
static PRBool mFSCharsetIsUTF8;
|
|
|
|
|
2003-08-25 22:28:10 +04:00
|
|
|
void MakeDirty() { mDirty = PR_TRUE; }
|
1999-12-04 04:13:44 +03:00
|
|
|
nsresult ResolveAndStat(PRBool resolveTerminal);
|
|
|
|
nsresult ResolvePath(const char* workingPath, PRBool resolveTerminal, char** resolvedPath);
|
1999-12-08 02:31:25 +03:00
|
|
|
|
2002-04-27 09:33:09 +04:00
|
|
|
nsresult CopyMove(nsIFile *newParentDir, const nsACString &newName, PRBool followSymlinks, PRBool move);
|
|
|
|
nsresult CopySingleFile(nsIFile *source, nsIFile* dest, const nsACString &newName, PRBool followSymlinks, PRBool move);
|
1999-12-04 04:13:44 +03:00
|
|
|
|
2001-11-26 11:05:05 +03:00
|
|
|
nsresult SetModDate(PRInt64 aLastModifiedTime, PRBool resolveTerminal);
|
1999-12-04 04:13:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|