summaryrefslogtreecommitdiff
path: root/chromium/components/reading_list/ios/reading_list_model_storage.h
blob: f0ac31a9a33aca09639ee9b95c704b23774ab297 (plain)
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
// Copyright 2016 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_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_
#define COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_

#include <vector>

#include "base/macros.h"
#include "components/reading_list/ios/reading_list_entry.h"
#include "components/sync/base/model_type.h"
#include "components/sync/model/model_type_sync_bridge.h"

class ReadingListModel;
class ReadingListStoreDelegate;

namespace syncer {
class ModelTypeSyncBridge;
}

// Interface for a persistence layer for reading list.
// All interface methods have to be called on main thread.
class ReadingListModelStorage : public syncer::ModelTypeSyncBridge {
 public:
  class ScopedBatchUpdate;

  ReadingListModelStorage(
      const ChangeProcessorFactory& change_processor_factory,
      syncer::ModelType type);
  ~ReadingListModelStorage() override;

  // Sets the model the Storage is backing.
  // This will trigger store initalization and load persistent entries.
  virtual void SetReadingListModel(ReadingListModel* model,
                                   ReadingListStoreDelegate* delegate) = 0;

  // Starts a transaction. All Save/Remove entry will be delayed until the
  // transaction is commited.
  // Multiple transaction can be started at the same time. Commit will happen
  // when the last transaction is commited.
  // Returns a scoped batch update object that should be retained while the
  // batch update is performed. Deallocating this object will inform model that
  // the batch update has completed.
  virtual std::unique_ptr<ScopedBatchUpdate> EnsureBatchCreated() = 0;

  // Saves or updates an entry. If the entry is not yet in the database, it is
  // created.
  virtual void SaveEntry(const ReadingListEntry& entry) = 0;

  // Removed an entry from the storage.
  virtual void RemoveEntry(const ReadingListEntry& entry) = 0;

  class ScopedBatchUpdate {
   public:
    ScopedBatchUpdate() {}
    virtual ~ScopedBatchUpdate() {}

   private:
    DISALLOW_COPY_AND_ASSIGN(ScopedBatchUpdate);
  };

 private:
  DISALLOW_COPY_AND_ASSIGN(ReadingListModelStorage);
};

#endif  // COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_