2014-03-05 03:25:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_FileSystemBase_h
|
|
|
|
#define mozilla_dom_FileSystemBase_h
|
|
|
|
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
class nsPIDOMWindow; // You need |#include "nsPIDOMWindow.h"| in CPP files.
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To make FileSystemBase as a weak reference, so that before the child window
|
|
|
|
* is closed and the FileSystemBase is destroyed, we don't need to notify the
|
|
|
|
* FileSystemTaskBase instances, which hold the FileSystemBase reference, to
|
|
|
|
* cancel and wait until the instances finish.
|
|
|
|
*/
|
|
|
|
class FileSystemBase
|
|
|
|
: public nsSupportsWeakReference
|
|
|
|
{
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Create file system object from its string representation.
|
|
|
|
static already_AddRefed<FileSystemBase>
|
|
|
|
FromString(const nsAString& aString);
|
|
|
|
|
|
|
|
FileSystemBase();
|
|
|
|
|
|
|
|
// Get the string representation of the file system.
|
|
|
|
const nsString&
|
|
|
|
ToString() const
|
|
|
|
{
|
|
|
|
return mString;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsPIDOMWindow*
|
|
|
|
GetWindow() const;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create nsIFile object with the given real path (absolute DOM path).
|
|
|
|
*/
|
|
|
|
virtual already_AddRefed<nsIFile>
|
|
|
|
GetLocalFile(const nsAString& aRealPath) const = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the virtual name of the root directory. This name will be exposed to
|
|
|
|
* the content page.
|
|
|
|
*/
|
|
|
|
virtual const nsAString&
|
|
|
|
GetRootName() const = 0;
|
2014-03-05 03:24:19 +00:00
|
|
|
|
|
|
|
virtual bool
|
|
|
|
IsSafeFile(nsIFile* aFile) const;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the permission name required to access this file system.
|
|
|
|
*/
|
|
|
|
const nsCString&
|
|
|
|
GetPermission() const
|
|
|
|
{
|
|
|
|
return mPermission;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
IsTesting() const
|
|
|
|
{
|
|
|
|
return mIsTesting;
|
|
|
|
}
|
2014-03-05 03:25:40 +00:00
|
|
|
protected:
|
|
|
|
virtual ~FileSystemBase();
|
|
|
|
|
|
|
|
// The string representation of the file system.
|
|
|
|
nsString mString;
|
2014-03-05 03:24:19 +00:00
|
|
|
|
|
|
|
// The permission name required to access the file system.
|
|
|
|
nsCString mPermission;
|
|
|
|
|
|
|
|
bool mIsTesting;
|
2014-03-05 03:25:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_FileSystemBase_h
|