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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/undo/bookmark_undo_service.h"
#include <stddef.h>
#include <stdint.h>
#include <cstdint>
#include <memory>
#include <utility>
#include "base/check.h"
#include "base/memory/raw_ptr.h"
#include "base/ranges/algorithm.h"
#include "components/bookmarks/browser/bookmark_node.h"
#include "components/bookmarks/browser/bookmark_node_data.h"
#include "components/bookmarks/browser/bookmark_undo_provider.h"
#include "components/bookmarks/browser/bookmark_utils.h"
#include "components/bookmarks/browser/scoped_group_bookmark_actions.h"
#include "components/bookmarks/common/bookmark_metrics.h"
#include "components/strings/grit/components_strings.h"
#include "components/undo/undo_operation.h"
using bookmarks::BookmarkModel;
using bookmarks::BookmarkNode;
using bookmarks::BookmarkNodeData;
using bookmarks::BookmarkUndoProvider;
namespace {
// BookmarkUndoOperation ------------------------------------------------------
// Base class for all bookmark related UndoOperations that facilitates access to
// the BookmarkUndoService.
class BookmarkUndoOperation : public UndoOperation {
public:
explicit BookmarkUndoOperation(BookmarkModel* bookmark_model)
: bookmark_model_(bookmark_model) {}
~BookmarkUndoOperation() override = default;
BookmarkModel* bookmark_model() { return bookmark_model_; }
private:
raw_ptr<BookmarkModel, DanglingUntriaged> bookmark_model_;
};
// BookmarkAddOperation -------------------------------------------------------
// Handles the undo of the insertion of a bookmark or folder.
class BookmarkAddOperation : public BookmarkUndoOperation {
public:
BookmarkAddOperation(BookmarkModel* bookmark_model,
const BookmarkNode* parent,
size_t index);
BookmarkAddOperation(const BookmarkAddOperation&) = delete;
BookmarkAddOperation& operator=(const BookmarkAddOperation&) = delete;
~BookmarkAddOperation() override = default;
// UndoOperation:
void Undo() override;
int GetUndoLabelId() const override;
int GetRedoLabelId() const override;
private:
int64_t parent_id_;
const size_t index_;
};
BookmarkAddOperation::BookmarkAddOperation(BookmarkModel* bookmark_model,
const BookmarkNode* parent,
size_t index)
: BookmarkUndoOperation(bookmark_model),
parent_id_(parent->id()),
index_(index) {}
void BookmarkAddOperation::Undo() {
BookmarkModel* model = bookmark_model();
const BookmarkNode* parent =
bookmarks::GetBookmarkNodeByID(model, parent_id_);
DCHECK(parent);
model->Remove(parent->children()[index_].get(),
bookmarks::metrics::BookmarkEditSource::kUser);
}
int BookmarkAddOperation::GetUndoLabelId() const {
return IDS_BOOKMARK_BAR_UNDO_ADD;
}
int BookmarkAddOperation::GetRedoLabelId() const {
return IDS_BOOKMARK_BAR_REDO_DELETE;
}
// BookmarkRemoveOperation ----------------------------------------------------
// Handles the undo of the deletion of a bookmark node. For a bookmark folder,
// the information for all descendant bookmark nodes is maintained.
//
// The BookmarkModel allows only single bookmark node to be removed.
class BookmarkRemoveOperation : public BookmarkUndoOperation {
public:
BookmarkRemoveOperation(BookmarkModel* model,
const BookmarkNode* parent,
size_t index,
std::unique_ptr<BookmarkNode> node);
BookmarkRemoveOperation(const BookmarkRemoveOperation&) = delete;
BookmarkRemoveOperation& operator=(const BookmarkRemoveOperation&) = delete;
~BookmarkRemoveOperation() override;
// UndoOperation:
void Undo() override;
int GetUndoLabelId() const override;
int GetRedoLabelId() const override;
private:
const int64_t parent_node_id_;
const size_t index_;
std::unique_ptr<BookmarkNode> node_;
};
BookmarkRemoveOperation::BookmarkRemoveOperation(
BookmarkModel* model,
const BookmarkNode* parent,
size_t index,
std::unique_ptr<BookmarkNode> node)
: BookmarkUndoOperation(model),
parent_node_id_(parent->id()),
index_(index),
node_(std::move(node)) {}
BookmarkRemoveOperation::~BookmarkRemoveOperation() = default;
void BookmarkRemoveOperation::Undo() {
DCHECK(node_);
const BookmarkNode* parent = bookmarks::GetBookmarkNodeByID(
bookmark_model(), parent_node_id_);
DCHECK(parent);
static_cast<BookmarkUndoProvider*>(bookmark_model())
->RestoreRemovedNode(parent, index_, std::move(node_));
}
int BookmarkRemoveOperation::GetUndoLabelId() const {
return IDS_BOOKMARK_BAR_UNDO_DELETE;
}
int BookmarkRemoveOperation::GetRedoLabelId() const {
return IDS_BOOKMARK_BAR_REDO_ADD;
}
// BookmarkEditOperation ------------------------------------------------------
// Handles the undo of the modification of a bookmark node.
class BookmarkEditOperation : public BookmarkUndoOperation {
public:
BookmarkEditOperation(BookmarkModel* bookmark_model,
const BookmarkNode* node);
BookmarkEditOperation(const BookmarkEditOperation&) = delete;
BookmarkEditOperation& operator=(const BookmarkEditOperation&) = delete;
~BookmarkEditOperation() override = default;
// UndoOperation:
void Undo() override;
int GetUndoLabelId() const override;
int GetRedoLabelId() const override;
private:
int64_t node_id_;
BookmarkNodeData original_bookmark_;
};
BookmarkEditOperation::BookmarkEditOperation(
BookmarkModel* bookmark_model,
const BookmarkNode* node)
: BookmarkUndoOperation(bookmark_model),
node_id_(node->id()),
original_bookmark_(node) {
}
void BookmarkEditOperation::Undo() {
DCHECK(original_bookmark_.is_valid());
BookmarkModel* model = bookmark_model();
const BookmarkNode* node = bookmarks::GetBookmarkNodeByID(model, node_id_);
DCHECK(node);
model->SetTitle(node, original_bookmark_.elements[0].title,
bookmarks::metrics::BookmarkEditSource::kOther);
if (original_bookmark_.elements[0].is_url)
model->SetURL(node, original_bookmark_.elements[0].url,
bookmarks::metrics::BookmarkEditSource::kOther);
}
int BookmarkEditOperation::GetUndoLabelId() const {
return IDS_BOOKMARK_BAR_UNDO_EDIT;
}
int BookmarkEditOperation::GetRedoLabelId() const {
return IDS_BOOKMARK_BAR_REDO_EDIT;
}
// BookmarkMoveOperation ------------------------------------------------------
// Handles the undo of a bookmark being moved to a new location.
class BookmarkMoveOperation : public BookmarkUndoOperation {
public:
BookmarkMoveOperation(BookmarkModel* bookmark_model,
const BookmarkNode* old_parent,
size_t old_index,
const BookmarkNode* new_parent,
size_t new_index);
BookmarkMoveOperation(const BookmarkMoveOperation&) = delete;
BookmarkMoveOperation& operator=(const BookmarkMoveOperation&) = delete;
~BookmarkMoveOperation() override = default;
int GetUndoLabelId() const override;
int GetRedoLabelId() const override;
// UndoOperation:
void Undo() override;
private:
int64_t old_parent_id_;
int64_t new_parent_id_;
size_t old_index_;
size_t new_index_;
};
BookmarkMoveOperation::BookmarkMoveOperation(BookmarkModel* bookmark_model,
const BookmarkNode* old_parent,
size_t old_index,
const BookmarkNode* new_parent,
size_t new_index)
: BookmarkUndoOperation(bookmark_model),
old_parent_id_(old_parent->id()),
new_parent_id_(new_parent->id()),
old_index_(old_index),
new_index_(new_index) {}
void BookmarkMoveOperation::Undo() {
BookmarkModel* model = bookmark_model();
const BookmarkNode* old_parent =
bookmarks::GetBookmarkNodeByID(model, old_parent_id_);
const BookmarkNode* new_parent =
bookmarks::GetBookmarkNodeByID(model, new_parent_id_);
DCHECK(old_parent);
DCHECK(new_parent);
const BookmarkNode* node = new_parent->children()[new_index_].get();
size_t destination_index = old_index_;
// If the bookmark was moved up within the same parent then the destination
// index needs to be incremented since the old index did not account for the
// moved bookmark.
if (old_parent == new_parent && new_index_ < old_index_)
++destination_index;
model->Move(node, old_parent, destination_index);
}
int BookmarkMoveOperation::GetUndoLabelId() const {
return IDS_BOOKMARK_BAR_UNDO_MOVE;
}
int BookmarkMoveOperation::GetRedoLabelId() const {
return IDS_BOOKMARK_BAR_REDO_MOVE;
}
// BookmarkReorderOperation ---------------------------------------------------
// Handle the undo of reordering of bookmarks that can happen as a result of
// sorting a bookmark folder by name or the undo of that operation. The change
// of order is not recursive so only the order of the immediate children of the
// folder need to be restored.
class BookmarkReorderOperation : public BookmarkUndoOperation {
public:
BookmarkReorderOperation(BookmarkModel* bookmark_model,
const BookmarkNode* parent);
BookmarkReorderOperation(const BookmarkReorderOperation&) = delete;
BookmarkReorderOperation& operator=(const BookmarkReorderOperation&) = delete;
~BookmarkReorderOperation() override;
// UndoOperation:
void Undo() override;
int GetUndoLabelId() const override;
int GetRedoLabelId() const override;
private:
int64_t parent_id_;
std::vector<int64_t> ordered_bookmarks_;
};
BookmarkReorderOperation::BookmarkReorderOperation(
BookmarkModel* bookmark_model,
const BookmarkNode* parent)
: BookmarkUndoOperation(bookmark_model),
parent_id_(parent->id()) {
ordered_bookmarks_.resize(parent->children().size());
base::ranges::transform(parent->children(), ordered_bookmarks_.begin(),
&BookmarkNode::id);
}
BookmarkReorderOperation::~BookmarkReorderOperation() = default;
void BookmarkReorderOperation::Undo() {
BookmarkModel* model = bookmark_model();
const BookmarkNode* parent =
bookmarks::GetBookmarkNodeByID(model, parent_id_);
DCHECK(parent);
std::vector<const BookmarkNode*> ordered_nodes;
for (int64_t ordered_bookmark : ordered_bookmarks_) {
ordered_nodes.push_back(
bookmarks::GetBookmarkNodeByID(model, ordered_bookmark));
}
model->ReorderChildren(parent, ordered_nodes);
}
int BookmarkReorderOperation::GetUndoLabelId() const {
return IDS_BOOKMARK_BAR_UNDO_REORDER;
}
int BookmarkReorderOperation::GetRedoLabelId() const {
return IDS_BOOKMARK_BAR_REDO_REORDER;
}
} // namespace
// BookmarkUndoService --------------------------------------------------------
BookmarkUndoService::BookmarkUndoService() = default;
BookmarkUndoService::~BookmarkUndoService() = default;
void BookmarkUndoService::StartObservingBookmarkModel(BookmarkModel* model) {
DCHECK(!scoped_observations_.IsObservingSource(model));
scoped_observations_.AddObservation(model);
observed_models_.insert(model);
}
void BookmarkUndoService::Shutdown() {
// After `RemoveAllObservations` call below - this instance won't be notified
// of `BookmarkModel` destruction. Undo operations keep a pointer to
// `BookmarkModel` - delete them to avoid dangling pointers.
undo_manager_.RemoveAllOperations();
scoped_observations_.RemoveAllObservations();
observed_models_.clear();
}
void BookmarkUndoService::BookmarkModelBeingDeleted(BookmarkModel* model) {
// Delete all undo operations to avoid dangling pointers to `BookmarkModel`
// that is getting destroyed. `BookmarkModel` is a `KeyedService`, so it is
// destroyed during shutdown along with other services - other `BookmarkModel`
// objects and `BookmarkUndoService` itself will be destroyed soon.
undo_manager_.RemoveAllOperations();
scoped_observations_.RemoveObservation(model);
observed_models_.erase(model);
}
void BookmarkUndoService::BookmarkNodeMoved(BookmarkModel* model,
const BookmarkNode* old_parent,
size_t old_index,
const BookmarkNode* new_parent,
size_t new_index) {
std::unique_ptr<UndoOperation> op(new BookmarkMoveOperation(
model, old_parent, old_index, new_parent, new_index));
undo_manager()->AddUndoOperation(std::move(op));
}
void BookmarkUndoService::BookmarkNodeAdded(BookmarkModel* model,
const BookmarkNode* parent,
size_t index,
bool added_by_user) {
std::unique_ptr<UndoOperation> op(
new BookmarkAddOperation(model, parent, index));
undo_manager()->AddUndoOperation(std::move(op));
}
void BookmarkUndoService::OnWillChangeBookmarkNode(BookmarkModel* model,
const BookmarkNode* node) {
std::unique_ptr<UndoOperation> op(new BookmarkEditOperation(model, node));
undo_manager()->AddUndoOperation(std::move(op));
}
void BookmarkUndoService::OnWillReorderBookmarkNode(BookmarkModel* model,
const BookmarkNode* node) {
std::unique_ptr<UndoOperation> op(new BookmarkReorderOperation(model, node));
undo_manager()->AddUndoOperation(std::move(op));
}
void BookmarkUndoService::GroupedBookmarkChangesBeginning(
BookmarkModel* model) {
undo_manager()->StartGroupingActions();
}
void BookmarkUndoService::GroupedBookmarkChangesEnded(BookmarkModel* model) {
undo_manager()->EndGroupingActions();
}
void BookmarkUndoService::AddUndoEntryForRemovedNode(
BookmarkModel* model,
const BookmarkNode* parent,
size_t index,
std::unique_ptr<BookmarkNode> node) {
// `model` is guaranteed to outlive `BookmarkRemoveOperation`, since all undo
// operations are deleted whenever `BookmarkModelBeingDeleted` or `Shutdown`
// are invoked.
std::unique_ptr<UndoOperation> op(
new BookmarkRemoveOperation(model, parent, index, std::move(node)));
undo_manager()->AddUndoOperation(std::move(op));
}
|