blob: dbe3e6f6d5eecd32439b24f0a9be4c66300e8f2b [file]
// Copyright 2013 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.
#ifndef COMPONENTS_SYNC_SYNCABLE_SYNCABLE_DELETE_JOURNAL_H_
#define COMPONENTS_SYNC_SYNCABLE_SYNCABLE_DELETE_JOURNAL_H_
#include <stddef.h>
#include <map>
#include <memory>
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/synchronization/lock.h"
#include "components/sync/syncable/entry_kernel.h"
#include "components/sync/syncable/metahandle_set.h"
namespace syncer {
namespace syncable {
class BaseTransaction;
class LessByID {
public:
inline bool operator()(const EntryKernel* a, const EntryKernel* b) const {
return a->ref(ID) < b->ref(ID);
}
};
// This should be |std::set<std::unique_ptr<EntryKernel>, LessByID>|. However,
// DeleteJournal::TakeSnapshotAndClear needs to remove the unique_ptr from the
// set, and std::set::extract is only available in C++17. TODO(avi): Switch to
// using a std::set when Chromium allows C++17 use.
using JournalIndex =
std::map<const EntryKernel*, std::unique_ptr<EntryKernel>, LessByID>;
// DeleteJournal manages deleted entries that are not in sync directory until
// it's safe to drop them after the deletion is confirmed with native models.
// DeleteJournal is thread-safe and can be accessed on any thread. Has to hold
// a valid transaction object when calling methods of DeleteJournal, thus each
// method requires a non-null |trans| parameter.
class DeleteJournal {
public:
// Initialize |delete_journals_| using |initial_journal|.
explicit DeleteJournal(std::unique_ptr<JournalIndex> initial_journal);
~DeleteJournal();
// Add/remove |entry| to/from |delete_journals_| according to its
// SERVER_IS_DEL field and |was_deleted|. Called on sync thread.
void UpdateDeleteJournalForServerDelete(BaseTransaction* trans,
bool was_deleted,
const EntryKernel& entry);
// Purge entries of specified type in |delete_journals_| if their handles are
// in |to_purge|. This should be called after model association and
// |to_purge| should contain handles of the entries whose deletions are
// confirmed in native model. Can be called on any thread.
void PurgeDeleteJournals(BaseTransaction* trans,
const MetahandleSet& to_purge);
// Move handles in |delete_journals_to_purge_| to |journals_to_purge|. Called
// on sync thread.
void TakeSnapshotAndClear(BaseTransaction* trans,
MetahandleSet* journals_to_purge);
// Add |entries| to |delete_journals_| regardless of their SERVER_IS_DEL
// value. This is used to:
// * restore delete journals from snapshot if snapshot failed to save.
// * batch add entries of a data type with unrecoverable error to delete
// journal before purging them.
// Called on sync thread.
void AddJournalBatch(BaseTransaction* trans,
const OwnedEntryKernelSet& entries);
// Return true if delete journals of |type| are maintained.
static bool IsDeleteJournalEnabled(ModelType type);
// Adds entry to JournalIndex if it doesn't already exist.
static void AddEntryToJournalIndex(JournalIndex* journal_index,
std::unique_ptr<EntryKernel> entry);
private:
FRIEND_TEST_ALL_PREFIXES(SyncableDirectoryTest, ManageDeleteJournals);
// Contains deleted entries that may not be persisted in native models. And
// in case of unrecoverable error, all purged entries are moved here for
// bookkeeping to prevent back-from-dead entries that are deleted elsewhere
// when sync's down.
JournalIndex delete_journals_;
// Contains meta handles of deleted entries that have been persisted or
// undeleted, thus can be removed from database.
MetahandleSet delete_journals_to_purge_;
DISALLOW_COPY_AND_ASSIGN(DeleteJournal);
};
} // namespace syncable
} // namespace syncer
#endif // COMPONENTS_SYNC_SYNCABLE_SYNCABLE_DELETE_JOURNAL_H_