1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync_file_system/drive_backend/task_dependency_manager.h"
#include <utility>
#include "base/check_op.h"
namespace sync_file_system {
namespace drive_backend {
namespace {
// Erases all items in |item_to_erase| from |container|.
template <typename Container1, typename Container2>
void EraseContainer(const Container1& items_to_erase, Container2* container) {
for (auto itr = items_to_erase.begin(); itr != items_to_erase.end(); ++itr) {
container->erase(*itr);
}
}
// Inserts all items in |items_to_insert| to |container|, returns true if all
// items are inserted successfully. Otherwise, returns false and leave
// |container| have the original contents.
template <typename Container1, typename Container2>
bool InsertAllOrNone(const Container1& items_to_insert, Container2* container) {
for (auto itr = items_to_insert.begin(); itr != items_to_insert.end();
++itr) {
if (!container->insert(*itr).second) {
// Revert all successful insertion.
auto end = itr;
itr = items_to_insert.begin();
for (; itr != end; ++itr)
container->erase(*itr);
return false;
}
}
return true;
}
bool InsertPaths(std::vector<base::FilePath> paths_to_insert,
SubtreeSet* paths) {
typedef std::vector<base::FilePath>::const_iterator iterator;
for (iterator itr = paths_to_insert.begin();
itr != paths_to_insert.end(); ++itr) {
if (!paths->insert(*itr)) {
auto end = itr;
for (itr = paths_to_insert.begin(); itr != end; ++itr)
paths->erase(*itr);
return false;
}
}
return true;
}
} // namespace
TaskBlocker::TaskBlocker() : exclusive(false) {}
TaskBlocker::~TaskBlocker() = default;
TaskDependencyManager::TaskDependencyManager()
: running_task_count_(0),
running_exclusive_task_(false) {}
TaskDependencyManager::~TaskDependencyManager() {
DCHECK(paths_by_app_id_.empty());
DCHECK(file_ids_.empty());
DCHECK(tracker_ids_.empty());
}
bool TaskDependencyManager::Insert(const TaskBlocker* task_blocker) {
if (running_exclusive_task_)
return false;
if (!task_blocker) {
++running_task_count_;
return true;
}
if (task_blocker->exclusive) {
if (running_task_count_ ||
!tracker_ids_.empty() ||
!file_ids_.empty() ||
!paths_by_app_id_.empty())
return false;
++running_task_count_;
running_exclusive_task_ = true;
return true;
}
if (!InsertAllOrNone(task_blocker->tracker_ids, &tracker_ids_))
goto fail_on_tracker_id_insertion;
if (!InsertAllOrNone(task_blocker->file_ids, &file_ids_))
goto fail_on_file_id_insertion;
if (!task_blocker->app_id.empty() &&
!InsertPaths(task_blocker->paths,
&paths_by_app_id_[task_blocker->app_id])) {
if (paths_by_app_id_[task_blocker->app_id].empty())
paths_by_app_id_.erase(task_blocker->app_id);
goto fail_on_path_insertion;
}
++running_task_count_;
return true;
fail_on_path_insertion:
EraseContainer(task_blocker->file_ids, &file_ids_);
fail_on_file_id_insertion:
EraseContainer(task_blocker->tracker_ids, &tracker_ids_);
fail_on_tracker_id_insertion:
return false;
}
void TaskDependencyManager::Erase(const TaskBlocker* task_blocker) {
--running_task_count_;
DCHECK_LE(0, running_task_count_);
if (!task_blocker)
return;
if (task_blocker->exclusive) {
DCHECK(running_exclusive_task_);
DCHECK(paths_by_app_id_.empty());
DCHECK(file_ids_.empty());
DCHECK(tracker_ids_.empty());
DCHECK_EQ(0, running_task_count_);
running_exclusive_task_ = false;
return;
}
if (!task_blocker->app_id.empty()) {
EraseContainer(task_blocker->paths,
&paths_by_app_id_[task_blocker->app_id]);
if (paths_by_app_id_[task_blocker->app_id].empty())
paths_by_app_id_.erase(task_blocker->app_id);
}
EraseContainer(task_blocker->file_ids, &file_ids_);
EraseContainer(task_blocker->tracker_ids, &tracker_ids_);
}
} // namespace drive_backend
} // namespace sync_file_system
|