// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "webkit/fileapi/file_system_context.h" #include "base/file_util.h" #include "base/message_loop_proxy.h" #include "googleurl/src/gurl.h" #include "webkit/fileapi/file_system_path_manager.h" #include "webkit/fileapi/file_system_util.h" #include "webkit/fileapi/sandbox_mount_point_provider.h" #include "webkit/fileapi/file_system_quota_client.h" #include "webkit/quota/quota_manager.h" using quota::QuotaClient; namespace fileapi { namespace { QuotaClient* CreateQuotaClient( scoped_refptr file_message_loop, FileSystemContext* context, bool is_incognito) { return new FileSystemQuotaClient(file_message_loop, context, is_incognito); } } // anonymous namespace FileSystemContext::FileSystemContext( scoped_refptr file_message_loop, scoped_refptr io_message_loop, scoped_refptr special_storage_policy, quota::QuotaManagerProxy* quota_manager_proxy, const FilePath& profile_path, bool is_incognito, bool allow_file_access_from_files, FileSystemPathManager* path_manager) : file_message_loop_(file_message_loop), io_message_loop_(io_message_loop), quota_manager_proxy_(quota_manager_proxy), path_manager_(path_manager) { if (!path_manager) { path_manager_.reset(new FileSystemPathManager( file_message_loop, profile_path, special_storage_policy, is_incognito, allow_file_access_from_files)); } if (quota_manager_proxy) { quota_manager_proxy->RegisterClient(CreateQuotaClient( file_message_loop, this, is_incognito)); } } FileSystemContext::~FileSystemContext() { } bool FileSystemContext::DeleteDataForOriginOnFileThread( const GURL& origin_url) { DCHECK(file_message_loop_->BelongsToCurrentThread()); DCHECK(sandbox_provider()); // Delete temporary and persistent data. return sandbox_provider()->DeleteOriginDataOnFileThread( quota_manager_proxy(), origin_url, kFileSystemTypeTemporary) && sandbox_provider()->DeleteOriginDataOnFileThread( quota_manager_proxy(), origin_url, kFileSystemTypePersistent); } bool FileSystemContext::DeleteDataForOriginAndTypeOnFileThread( const GURL& origin_url, FileSystemType type) { DCHECK(file_message_loop_->BelongsToCurrentThread()); if (type == fileapi::kFileSystemTypeTemporary || type == fileapi::kFileSystemTypePersistent) { DCHECK(sandbox_provider()); return sandbox_provider()->DeleteOriginDataOnFileThread( quota_manager_proxy(), origin_url, type); } return false; } FileSystemQuotaUtil* FileSystemContext::GetQuotaUtil(FileSystemType type) const { if (type == fileapi::kFileSystemTypeTemporary || type == fileapi::kFileSystemTypePersistent) { DCHECK(sandbox_provider()); return sandbox_provider()->quota_util(); } return NULL; } void FileSystemContext::DeleteOnCorrectThread() const { if (!io_message_loop_->BelongsToCurrentThread()) { io_message_loop_->DeleteSoon(FROM_HERE, this); return; } delete this; } SandboxMountPointProvider* FileSystemContext::sandbox_provider() const { return path_manager_->sandbox_provider(); } } // namespace fileapi