blob: fc3297437a8b7d47b517044e046092e52ff33acd [file] [log] [blame]
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef DOMFileSystemBase_h
#define DOMFileSystemBase_h
#include "core/fileapi/FileError.h"
#include "modules/ModulesExport.h"
#include "modules/filesystem/FileSystemCallbacks.h"
#include "modules/filesystem/FileSystemFlags.h"
#include "platform/FileSystemType.h"
#include "platform/bindings/ScriptWrappable.h"
#include "platform/heap/Handle.h"
#include "platform/weborigin/KURL.h"
#include "platform/wtf/text/WTFString.h"
namespace blink {
class WebFileSystem;
} // namespace blink
namespace blink {
class DirectoryReaderBase;
class EntryBase;
class ExecutionContext;
class File;
class FileMetadata;
class SecurityOrigin;
// A common base class for DOMFileSystem and DOMFileSystemSync.
class MODULES_EXPORT DOMFileSystemBase : public ScriptWrappable {
public:
enum SynchronousType {
kSynchronous,
kAsynchronous,
};
// Path prefixes that are used in the filesystem URLs (that can be obtained by
// toURL()). http://www.w3.org/TR/file-system-api/#widl-Entry-toURL
static const char kPersistentPathPrefix[];
static const char kTemporaryPathPrefix[];
static const char kIsolatedPathPrefix[];
static const char kExternalPathPrefix[];
virtual ~DOMFileSystemBase();
// These are called when a new callback is created and resolved in
// FileSystem API, so that subclasses can track the number of pending
// callbacks if necessary.
virtual void AddPendingCallbacks() {}
virtual void RemovePendingCallbacks() {}
// Overridden by subclasses to handle sync vs async error-handling.
virtual void ReportError(ErrorCallbackBase*, FileError::ErrorCode) = 0;
const String& name() const { return name_; }
FileSystemType GetType() const { return type_; }
KURL RootURL() const { return filesystem_root_url_; }
WebFileSystem* FileSystem() const;
const SecurityOrigin* GetSecurityOrigin() const;
// The clonable flag is used in the structured clone algorithm to test
// whether the FileSystem API object is permitted to be cloned. It defaults
// to false, and must be explicitly set by internal code permit cloning.
void MakeClonable() { clonable_ = true; }
bool Clonable() const { return clonable_; }
static bool IsValidType(FileSystemType);
static KURL CreateFileSystemRootURL(const String& origin, FileSystemType);
bool SupportsToURL() const;
KURL CreateFileSystemURL(const EntryBase*) const;
KURL CreateFileSystemURL(const String& full_path) const;
static bool PathToAbsolutePath(FileSystemType,
const EntryBase*,
String path,
String& absolute_path);
static bool PathPrefixToFileSystemType(const String& path_prefix,
FileSystemType&);
static File* CreateFile(const FileMetadata&,
const KURL& file_system_url,
FileSystemType,
const String name);
// Actual FileSystem API implementations. All the validity checks on virtual
// paths are done at this level.
void GetMetadata(const EntryBase*,
MetadataCallbacks::OnDidReadMetadataCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void Move(const EntryBase* source,
EntryBase* parent,
const String& name,
EntryCallbacks::OnDidGetEntryCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void Copy(const EntryBase* source,
EntryBase* parent,
const String& name,
EntryCallbacks::OnDidGetEntryCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void Remove(const EntryBase*,
VoidCallbacks::OnDidSucceedCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void RemoveRecursively(const EntryBase*,
VoidCallbacks::OnDidSucceedCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void GetParent(const EntryBase*,
EntryCallbacks::OnDidGetEntryCallback*,
ErrorCallbackBase*);
void GetFile(const EntryBase*,
const String& path,
const FileSystemFlags&,
EntryCallbacks::OnDidGetEntryCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
void GetDirectory(const EntryBase*,
const String& path,
const FileSystemFlags&,
EntryCallbacks::OnDidGetEntryCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
int ReadDirectory(DirectoryReaderBase*,
const String& path,
EntriesCallbacks::OnDidGetEntriesCallback*,
ErrorCallbackBase*,
SynchronousType = kAsynchronous);
bool WaitForAdditionalResult(int callbacks_id);
virtual void Trace(blink::Visitor*);
protected:
DOMFileSystemBase(ExecutionContext*,
const String& name,
FileSystemType,
const KURL& root_url);
friend class DOMFileSystemBaseTest;
friend class DOMFileSystemSync;
Member<ExecutionContext> context_;
String name_;
FileSystemType type_;
KURL filesystem_root_url_;
bool clonable_;
};
inline bool operator==(const DOMFileSystemBase& a, const DOMFileSystemBase& b) {
return a.name() == b.name() && a.GetType() == b.GetType() &&
a.RootURL() == b.RootURL();
}
} // namespace blink
#endif // DOMFileSystemBase_h