summaryrefslogtreecommitdiffstats
path: root/ios/chrome/browser/reading_list/reading_list_model_memory.h
blob: bec14c465e1e151c6c684ee0ebba4cc819647dfc (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
// 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 IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_MEMORY_H_
#define IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_MEMORY_H_

#include "components/keyed_service/core/keyed_service.h"
#include "ios/chrome/browser/reading_list/reading_list_entry.h"
#include "ios/chrome/browser/reading_list/reading_list_model.h"

// Concrete implementation of a reading list model using in memory lists.
class ReadingListModelMemory : public ReadingListModel, public KeyedService {
 public:
  ReadingListModelMemory();
  ~ReadingListModelMemory() override;
  void Shutdown() override;

  bool loaded() const override;

  size_t unread_size() const override;
  size_t read_size() const override;

  bool HasUnseenEntries() const override;
  void ResetUnseenEntries() override;

  // Returns a specific entry.
  const ReadingListEntry& GetUnreadEntryAtIndex(size_t index) const override;
  const ReadingListEntry& GetReadEntryAtIndex(size_t index) const override;

  void RemoveEntryByUrl(const GURL& url) override;

  const ReadingListEntry& AddEntry(const GURL& url,
                                   const std::string& title) override;

  void MarkReadByURL(const GURL& url) override;

 private:
  std::vector<ReadingListEntry> unread_;
  std::vector<ReadingListEntry> read_;
  bool hasUnseen_;
  bool loaded_;
};

#endif  // IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_MEMORY_H_