This source file includes following definitions.
- SetBaseNameFromTitle
- EnoughDiskSpaceIsAvailableForDBOperation
- storage_
- Initialize
- Destroy
- Reset
- SetUpDefaultEntries
- DestroyOnBlockingPool
- GetLargestChangestamp
- SetLargestChangestamp
- AddEntry
- RemoveEntry
- GetResourceEntryById
- GetResourceEntryByPath
- ReadDirectoryByPath
- ReadDirectoryById
- RefreshEntry
- GetSubDirectoriesRecursively
- GetChildId
- GetIterator
- GetFilePath
- GetIdByPath
- GetIdByResourceId
- PutEntryUnderDirectory
- RemoveEntryRecursively
#include "chrome/browser/chromeos/drive/resource_metadata.h"
#include "base/guid.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/sys_info.h"
#include "chrome/browser/chromeos/drive/drive.pb.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/drive/resource_metadata_storage.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserThread;
namespace drive {
namespace {
void SetBaseNameFromTitle(ResourceEntry* entry) {
std::string base_name = entry->title();
if (entry->has_file_specific_info() &&
entry->file_specific_info().is_hosted_document()) {
base_name += entry->file_specific_info().document_extension();
}
entry->set_base_name(util::NormalizeFileName(base_name));
}
bool EnoughDiskSpaceIsAvailableForDBOperation(const base::FilePath& path) {
const int64 kRequiredDiskSpaceInMB = 128;
return base::SysInfo::AmountOfFreeDiskSpace(path) >=
kRequiredDiskSpaceInMB * (1 << 20);
}
}
namespace internal {
ResourceMetadata::ResourceMetadata(
ResourceMetadataStorage* storage,
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner)
: blocking_task_runner_(blocking_task_runner),
storage_(storage) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
}
FileError ResourceMetadata::Initialize() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
if (!SetUpDefaultEntries())
return FILE_ERROR_FAILED;
return FILE_ERROR_OK;
}
void ResourceMetadata::Destroy() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
blocking_task_runner_->PostTask(
FROM_HERE,
base::Bind(&ResourceMetadata::DestroyOnBlockingPool,
base::Unretained(this)));
}
FileError ResourceMetadata::Reset() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
if (!storage_->SetLargestChangestamp(0) ||
!RemoveEntryRecursively(util::kDriveGrandRootLocalId) ||
!SetUpDefaultEntries())
return FILE_ERROR_FAILED;
return FILE_ERROR_OK;
}
ResourceMetadata::~ResourceMetadata() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
}
bool ResourceMetadata::SetUpDefaultEntries() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
ResourceEntry entry;
if (!storage_->GetEntry(util::kDriveGrandRootLocalId, &entry)) {
ResourceEntry root;
root.mutable_file_info()->set_is_directory(true);
root.set_local_id(util::kDriveGrandRootLocalId);
root.set_title(util::kDriveGrandRootDirName);
SetBaseNameFromTitle(&root);
if (!storage_->PutEntry(root))
return false;
} else if (!entry.resource_id().empty()) {
entry.clear_resource_id();
if (!storage_->PutEntry(entry))
return false;
}
if (!storage_->GetEntry(util::kDriveOtherDirLocalId, &entry)) {
ResourceEntry other_dir;
other_dir.mutable_file_info()->set_is_directory(true);
other_dir.set_local_id(util::kDriveOtherDirLocalId);
other_dir.set_parent_local_id(util::kDriveGrandRootLocalId);
other_dir.set_title(util::kDriveOtherDirName);
if (!PutEntryUnderDirectory(other_dir))
return false;
} else if (!entry.resource_id().empty()) {
entry.clear_resource_id();
if (!storage_->PutEntry(entry))
return false;
}
if (!storage_->GetEntry(util::kDriveTrashDirLocalId, &entry)) {
ResourceEntry trash_dir;
trash_dir.mutable_file_info()->set_is_directory(true);
trash_dir.set_local_id(util::kDriveTrashDirLocalId);
trash_dir.set_parent_local_id(util::kDriveGrandRootLocalId);
trash_dir.set_title(util::kDriveTrashDirName);
if (!PutEntryUnderDirectory(trash_dir))
return false;
}
if (storage_->GetChild(util::kDriveGrandRootLocalId,
util::kDriveMyDriveRootDirName).empty()) {
ResourceEntry mydrive;
mydrive.mutable_file_info()->set_is_directory(true);
mydrive.set_parent_local_id(util::kDriveGrandRootLocalId);
mydrive.set_title(util::kDriveMyDriveRootDirName);
std::string local_id;
if (AddEntry(mydrive, &local_id) != FILE_ERROR_OK)
return false;
}
return true;
}
void ResourceMetadata::DestroyOnBlockingPool() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
delete this;
}
int64 ResourceMetadata::GetLargestChangestamp() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
return storage_->GetLargestChangestamp();
}
FileError ResourceMetadata::SetLargestChangestamp(int64 value) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
return storage_->SetLargestChangestamp(value) ?
FILE_ERROR_OK : FILE_ERROR_FAILED;
}
FileError ResourceMetadata::AddEntry(const ResourceEntry& entry,
std::string* out_id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(entry.local_id().empty());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
ResourceEntry parent;
if (!storage_->GetEntry(entry.parent_local_id(), &parent) ||
!parent.file_info().is_directory())
return FILE_ERROR_NOT_FOUND;
std::string local_id;
ResourceEntry existing_entry;
if (!entry.resource_id().empty() &&
storage_->GetIdByResourceId(entry.resource_id(), &local_id) &&
storage_->GetEntry(local_id, &existing_entry))
return FILE_ERROR_EXISTS;
while (local_id.empty() || storage_->GetEntry(local_id, &existing_entry))
local_id = base::GenerateGUID();
ResourceEntry new_entry(entry);
new_entry.set_local_id(local_id);
if (!PutEntryUnderDirectory(new_entry))
return FILE_ERROR_FAILED;
*out_id = local_id;
return FILE_ERROR_OK;
}
FileError ResourceMetadata::RemoveEntry(const std::string& id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
if (id == util::kDriveGrandRootLocalId ||
id == util::kDriveOtherDirLocalId ||
id == util::kDriveTrashDirLocalId)
return FILE_ERROR_ACCESS_DENIED;
ResourceEntry entry;
if (!storage_->GetEntry(id, &entry))
return FILE_ERROR_NOT_FOUND;
if (!RemoveEntryRecursively(id))
return FILE_ERROR_FAILED;
return FILE_ERROR_OK;
}
FileError ResourceMetadata::GetResourceEntryById(const std::string& id,
ResourceEntry* out_entry) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(!id.empty());
DCHECK(out_entry);
return storage_->GetEntry(id, out_entry) ?
FILE_ERROR_OK : FILE_ERROR_NOT_FOUND;
}
FileError ResourceMetadata::GetResourceEntryByPath(const base::FilePath& path,
ResourceEntry* out_entry) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(out_entry);
std::string id;
FileError error = GetIdByPath(path, &id);
if (error != FILE_ERROR_OK)
return error;
return GetResourceEntryById(id, out_entry);
}
FileError ResourceMetadata::ReadDirectoryByPath(
const base::FilePath& path,
ResourceEntryVector* out_entries) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(out_entries);
std::string id;
FileError error = GetIdByPath(path, &id);
if (error != FILE_ERROR_OK)
return error;
return ReadDirectoryById(id, out_entries);
}
FileError ResourceMetadata::ReadDirectoryById(
const std::string& id,
ResourceEntryVector* out_entries) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(out_entries);
ResourceEntry entry;
FileError error = GetResourceEntryById(id, &entry);
if (error != FILE_ERROR_OK)
return error;
if (!entry.file_info().is_directory())
return FILE_ERROR_NOT_A_DIRECTORY;
std::vector<std::string> children;
storage_->GetChildren(id, &children);
ResourceEntryVector entries(children.size());
for (size_t i = 0; i < children.size(); ++i) {
if (!storage_->GetEntry(children[i], &entries[i]))
return FILE_ERROR_FAILED;
}
out_entries->swap(entries);
return FILE_ERROR_OK;
}
FileError ResourceMetadata::RefreshEntry(const ResourceEntry& entry) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
if (!EnoughDiskSpaceIsAvailableForDBOperation(storage_->directory_path()))
return FILE_ERROR_NO_LOCAL_SPACE;
ResourceEntry old_entry;
if (!storage_->GetEntry(entry.local_id(), &old_entry))
return FILE_ERROR_NOT_FOUND;
if (old_entry.parent_local_id().empty() ||
old_entry.file_info().is_directory() !=
entry.file_info().is_directory())
return FILE_ERROR_INVALID_OPERATION;
if (!entry.resource_id().empty()) {
std::string local_id;
FileError error = GetIdByResourceId(entry.resource_id(), &local_id);
switch (error) {
case FILE_ERROR_OK:
if (local_id != entry.local_id())
return FILE_ERROR_INVALID_OPERATION;
break;
case FILE_ERROR_NOT_FOUND:
break;
default:
return error;
}
}
ResourceEntry new_parent;
if (!storage_->GetEntry(entry.parent_local_id(), &new_parent))
return FILE_ERROR_NOT_FOUND;
if (!new_parent.file_info().is_directory())
return FILE_ERROR_NOT_A_DIRECTORY;
if (!PutEntryUnderDirectory(entry))
return FILE_ERROR_FAILED;
return FILE_ERROR_OK;
}
void ResourceMetadata::GetSubDirectoriesRecursively(
const std::string& id,
std::set<base::FilePath>* sub_directories) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
std::vector<std::string> children;
storage_->GetChildren(id, &children);
for (size_t i = 0; i < children.size(); ++i) {
ResourceEntry entry;
if (storage_->GetEntry(children[i], &entry) &&
entry.file_info().is_directory()) {
sub_directories->insert(GetFilePath(children[i]));
GetSubDirectoriesRecursively(children[i], sub_directories);
}
}
}
std::string ResourceMetadata::GetChildId(const std::string& parent_local_id,
const std::string& base_name) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
return storage_->GetChild(parent_local_id, base_name);
}
scoped_ptr<ResourceMetadata::Iterator> ResourceMetadata::GetIterator() {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
return storage_->GetIterator();
}
base::FilePath ResourceMetadata::GetFilePath(const std::string& id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
base::FilePath path;
ResourceEntry entry;
if (storage_->GetEntry(id, &entry)) {
if (!entry.parent_local_id().empty())
path = GetFilePath(entry.parent_local_id());
path = path.Append(base::FilePath::FromUTF8Unsafe(entry.base_name()));
}
return path;
}
FileError ResourceMetadata::GetIdByPath(const base::FilePath& file_path,
std::string* out_id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
std::vector<base::FilePath::StringType> components;
file_path.GetComponents(&components);
if (components.empty() || components[0] != util::kDriveGrandRootDirName)
return FILE_ERROR_NOT_FOUND;
std::string id = util::kDriveGrandRootLocalId;
for (size_t i = 1; i < components.size(); ++i) {
const std::string component = base::FilePath(components[i]).AsUTF8Unsafe();
id = storage_->GetChild(id, component);
if (id.empty())
return FILE_ERROR_NOT_FOUND;
}
*out_id = id;
return FILE_ERROR_OK;
}
FileError ResourceMetadata::GetIdByResourceId(const std::string& resource_id,
std::string* out_local_id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
return storage_->GetIdByResourceId(resource_id, out_local_id) ?
FILE_ERROR_OK : FILE_ERROR_NOT_FOUND;
}
bool ResourceMetadata::PutEntryUnderDirectory(const ResourceEntry& entry) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
DCHECK(!entry.local_id().empty());
DCHECK(!entry.parent_local_id().empty());
ResourceEntry updated_entry(entry);
SetBaseNameFromTitle(&updated_entry);
int modifier = 0;
std::string new_base_name = updated_entry.base_name();
while (true) {
const std::string existing_entry_id =
storage_->GetChild(entry.parent_local_id(), new_base_name);
if (existing_entry_id.empty() || existing_entry_id == entry.local_id())
break;
base::FilePath new_path =
base::FilePath::FromUTF8Unsafe(updated_entry.base_name());
new_path =
new_path.InsertBeforeExtension(base::StringPrintf(" (%d)", ++modifier));
DCHECK_NE(new_base_name, new_path.AsUTF8Unsafe());
new_base_name = new_path.AsUTF8Unsafe();
}
updated_entry.set_base_name(new_base_name);
return storage_->PutEntry(updated_entry);
}
bool ResourceMetadata::RemoveEntryRecursively(const std::string& id) {
DCHECK(blocking_task_runner_->RunsTasksOnCurrentThread());
ResourceEntry entry;
if (!storage_->GetEntry(id, &entry))
return false;
if (entry.file_info().is_directory()) {
std::vector<std::string> children;
storage_->GetChildren(id, &children);
for (size_t i = 0; i < children.size(); ++i) {
if (!RemoveEntryRecursively(children[i]))
return false;
}
}
return storage_->RemoveEntry(id);
}
}
}