Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Unified Diff: content/browser/cache_storage/cache_storage_index.h

Issue 2416713002: Write out CacheStorageCache size to index file. (Closed)
Patch Set: Only updating cache sizes for non-doomed caches Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/cache_storage/cache_storage_index.h
diff --git a/content/browser/cache_storage/cache_storage_index.h b/content/browser/cache_storage/cache_storage_index.h
new file mode 100644
index 0000000000000000000000000000000000000000..89e7df946887b5d4a6fac4022c140277ee9ac970
--- /dev/null
+++ b/content/browser/cache_storage/cache_storage_index.h
@@ -0,0 +1,70 @@
+// 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 CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_
+#define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_
+
+#include <list>
+#include <string>
+#include <unordered_map>
+#include "content/browser/cache_storage/cache_storage.h"
jkarlin 2016/12/14 14:19:56 new line above this line
cmumford 2016/12/15 22:29:14 Done.
+
+namespace content {
+
+class CacheMetadata;
+
+// CacheStorageIndex maintains an ordered list of metadata (CacheMetadata)
+// for each cache owned by a CacheStorage object. This class is not thread safe,
+// and is owned by the CacheStorage.
+class CONTENT_EXPORT CacheStorageIndex {
+ public:
+ struct CacheMetadata {
+ CacheMetadata(const std::string& name, int64_t size)
+ : name(name), size(size) {}
+ std::string name;
+ // The size (in bytes) of the cache. Set to CacheStorage::kSizeUnknown if
+ // size not known.
+ int64_t size;
+ };
+
+ CacheStorageIndex(const CacheStorageIndex& other);
+ CacheStorageIndex();
+ ~CacheStorageIndex();
+
+ CacheStorageIndex& operator=(CacheStorageIndex&& rhs);
+ CacheStorageIndex& operator=(const CacheStorageIndex& rhs);
+
+ void Insert(const CacheMetadata& cache_metadata);
+ void Delete(const std::string& cache_name);
+
+ // Sets the cache size. Returns true if the new size is different than the
+ // current size else false.
+ bool SetCacheSize(const std::string& cache_name, int64_t size);
+
+ int64_t GetCacheSize(const std::string& cache_name) const;
jkarlin 2016/12/14 14:19:56 Add comment of what it will return if the size is
cmumford 2016/12/15 22:29:15 Done.
+
+ const std::list<CacheMetadata>& ordered_cache_metadata() const {
+ return ordered_cache_metadata_;
+ }
+
+ size_t num_entries() const { return ordered_cache_metadata_.size(); }
+
+ int64_t GetStorageSize();
jkarlin 2016/12/14 14:19:56 This needs a comment.
cmumford 2016/12/15 22:29:15 Done.
+
+ private:
+ void UpdateStorageSize();
+
+ // Use a list to keep saved iterators valid during insert/erase.
+ // Note: ordered by cache creation.
+ std::list<CacheMetadata> ordered_cache_metadata_;
+ std::unordered_map<std::string, std::list<CacheMetadata>::iterator>
+ cache_metadata_map_;
+
+ // The total size of all caches in this store.
+ int64_t storage_size_ = CacheStorage::kSizeUnknown;
jkarlin 2016/12/14 14:19:56 Can you add a TODO to make this class DISALLOW_COP
cmumford 2016/12/15 22:29:15 Implemented, See DoomedCache, FinalizeDoomedCache,
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_

Powered by Google App Engine
This is Rietveld 408576698