1999-05-27 17:59:00 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* 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/
|
1999-05-27 17:59:00 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-05-27 17:59:00 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-05-27 17:59:00 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-05-27 17:59:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FILESPECIMPL_H_
|
|
|
|
#define _FILESPECIMPL_H_
|
|
|
|
|
|
|
|
#include "nsIFileSpec.h"
|
|
|
|
#include "nsFileSpec.h"
|
|
|
|
|
|
|
|
//========================================================================================
|
|
|
|
class NS_COM nsFileSpecImpl
|
|
|
|
//========================================================================================
|
|
|
|
: public nsIFileSpec
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
1999-05-28 22:09:32 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
1999-05-27 17:59:00 +00:00
|
|
|
|
1999-08-22 11:25:50 +00:00
|
|
|
NS_DECL_NSIFILESPEC
|
1999-05-27 17:59:00 +00:00
|
|
|
|
1999-05-29 01:26:53 +00:00
|
|
|
//----------------------
|
|
|
|
// COM Cruft
|
|
|
|
//----------------------
|
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
static NS_METHOD Create(nsISupports* outer, const nsIID& aIID, void* *aIFileSpec);
|
1999-05-29 01:26:53 +00:00
|
|
|
|
1999-05-27 17:59:00 +00:00
|
|
|
//----------------------
|
|
|
|
// Implementation
|
|
|
|
//----------------------
|
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
nsFileSpecImpl();
|
|
|
|
nsFileSpecImpl(const nsFileSpec& inSpec);
|
|
|
|
virtual ~nsFileSpecImpl();
|
|
|
|
static nsresult MakeInterface(const nsFileSpec& inSpec, nsIFileSpec** outSpec);
|
1999-05-29 01:26:53 +00:00
|
|
|
|
1999-05-27 17:59:00 +00:00
|
|
|
//----------------------
|
|
|
|
// Data
|
|
|
|
//----------------------
|
1999-08-25 05:26:25 +00:00
|
|
|
|
|
|
|
nsFileSpec mFileSpec;
|
|
|
|
nsIInputStream* mInputStream;
|
|
|
|
nsIOutputStream* mOutputStream;
|
1999-05-27 17:59:00 +00:00
|
|
|
|
|
|
|
}; // class nsFileSpecImpl
|
|
|
|
|
1999-06-14 22:05:41 +00:00
|
|
|
//========================================================================================
|
|
|
|
class nsDirectoryIteratorImpl
|
|
|
|
//========================================================================================
|
|
|
|
: public nsIDirectoryIterator
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsDirectoryIteratorImpl();
|
|
|
|
virtual ~nsDirectoryIteratorImpl();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
1999-07-27 23:33:54 +00:00
|
|
|
NS_IMETHOD Init(nsIFileSpec *parent, PRBool resolveSymlink);
|
1999-06-14 22:05:41 +00:00
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
NS_IMETHOD Exists(PRBool *_retval);
|
1999-06-14 22:05:41 +00:00
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
NS_IMETHOD Next();
|
1999-06-14 22:05:41 +00:00
|
|
|
|
|
|
|
NS_IMETHOD GetCurrentSpec(nsIFileSpec * *aCurrentSpec);
|
|
|
|
|
|
|
|
//----------------------
|
|
|
|
// COM Cruft
|
|
|
|
//----------------------
|
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
static NS_METHOD Create(nsISupports* outer, const nsIID& aIID, void* *aIFileSpec);
|
1999-06-14 22:05:41 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
nsDirectoryIterator* mDirectoryIterator;
|
|
|
|
}; // class nsDirectoryIteratorImpl
|
|
|
|
|
1999-05-27 17:59:00 +00:00
|
|
|
#endif // _FILESPECIMPL_H_
|