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

Side by Side Diff: storage/browser/blob/blob_storage_context.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: memory leak fixed Created 5 years, 11 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_ 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_
6 #define STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_ 6 #define STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "storage/browser/blob/blob_data_handle.h" 14 #include "storage/browser/blob/blob_data_handle.h"
15 #include "storage/browser/storage_browser_export.h" 15 #include "storage/browser/storage_browser_export.h"
16 #include "storage/common/blob/blob_data.h" 16 #include "storage/common/blob/blob_data.h"
17 #include "storage/common/data_element.h"
17 18
18 class GURL; 19 class GURL;
19 20
20 namespace base { 21 namespace base {
21 class FilePath; 22 class FilePath;
22 class Time; 23 class Time;
23 } 24 }
24 25
25 namespace content { 26 namespace content {
26 class BlobStorageHost; 27 class BlobStorageHost;
27 } 28 }
28 29
29 namespace storage { 30 namespace storage {
30 31
31 class BlobDataHandle; 32 class BlobDataSnapshotHandle;
32 33
33 // This class handles the logistics of blob Storage within the browser process, 34 // This class handles the logistics of blob Storage within the browser process,
34 // and maintains a mapping from blob uuid to the data. The class is single 35 // and maintains a mapping from blob uuid to the data. The class is single
35 // threaded and should only be used on the IO thread. 36 // threaded and should only be used on the IO thread.
36 // In chromium, there is one instance per profile. 37 // In chromium, there is one instance per profile.
37 class STORAGE_EXPORT BlobStorageContext 38 class STORAGE_EXPORT BlobStorageContext
38 : public base::SupportsWeakPtr<BlobStorageContext> { 39 : public base::SupportsWeakPtr<BlobStorageContext> {
39 public: 40 public:
40 BlobStorageContext(); 41 BlobStorageContext();
41 ~BlobStorageContext(); 42 ~BlobStorageContext();
42 43
43 scoped_ptr<BlobDataHandle> GetBlobDataFromUUID(const std::string& uuid); 44 scoped_ptr<BlobDataSnapshotHandle> GetBlobDataFromUUID(
michaeln 2015/01/16 00:09:09 we may want to distinguish between retaining the s
dmurph 2015/01/16 23:45:56 Sounds good, I decoupled them, so you create a sna
44 scoped_ptr<BlobDataHandle> GetBlobDataFromPublicURL(const GURL& url); 45 const std::string& uuid);
46 scoped_ptr<BlobDataSnapshotHandle> GetBlobDataFromPublicURL(const GURL& url);
45 47
46 // Useful for coining blobs from within the browser process. If the 48 // Useful for coining blobs from within the browser process. If the
47 // blob cannot be added due to memory consumption, returns NULL. 49 // blob cannot be added due to memory consumption, returns NULL.
48 scoped_ptr<BlobDataHandle> AddFinishedBlob(const BlobData* blob_data); 50 scoped_ptr<BlobDataSnapshotHandle> AddFinishedBlob(
51 const BlobDataBuilder& blob_data);
49 52
50 // Useful for coining blob urls from within the browser process. 53 // Useful for coining blob urls from within the browser process.
51 bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid); 54 bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid);
52 void RevokePublicBlobURL(const GURL& url); 55 void RevokePublicBlobURL(const GURL& url);
53 56
54 private: 57 private:
55 friend class content::BlobStorageHost; 58 friend class content::BlobStorageHost;
56 friend class BlobDataHandle::BlobDataHandleShared; 59 friend class BlobDataSnapshotHandle::BlobDataSnapshotHandleShared;
57 friend class ViewBlobInternalsJob; 60 friend class ViewBlobInternalsJob;
58 61
59 enum EntryFlags { 62 enum EntryFlags {
60 BEING_BUILT = 1 << 0, 63 BEING_BUILT = 1 << 0,
61 EXCEEDED_MEMORY = 1 << 1, 64 EXCEEDED_MEMORY = 1 << 1,
62 }; 65 };
63 66
64 struct BlobMapEntry { 67 struct BlobMapEntry {
65 int refcount; 68 int refcount;
66 int flags; 69 int flags;
67 scoped_refptr<BlobData> data; 70 scoped_ptr<BlobDataSnapshot> data;
71 scoped_ptr<BlobDataBuilder> data_builder;
68 72
69 BlobMapEntry(); 73 BlobMapEntry();
70 BlobMapEntry(int refcount, int flags, BlobData* data); 74 BlobMapEntry(int refcount, int flags, BlobDataBuilder* data);
71 ~BlobMapEntry(); 75 ~BlobMapEntry();
72 }; 76 };
73 77
74 typedef std::map<std::string, BlobMapEntry> 78 typedef std::map<std::string, BlobMapEntry*> BlobMap;
75 BlobMap;
76 typedef std::map<GURL, std::string> BlobURLMap; 79 typedef std::map<GURL, std::string> BlobURLMap;
77 80
78 void StartBuildingBlob(const std::string& uuid); 81 void StartBuildingBlob(const std::string& uuid);
79 void AppendBlobDataItem(const std::string& uuid, 82 void AppendBlobDataItem(const std::string& uuid,
80 const BlobData::Item& data_item); 83 const DataElement& data_item);
81 void FinishBuildingBlob(const std::string& uuid, const std::string& type); 84 void FinishBuildingBlob(const std::string& uuid, const std::string& type);
82 void CancelBuildingBlob(const std::string& uuid); 85 void CancelBuildingBlob(const std::string& uuid);
83 void IncrementBlobRefCount(const std::string& uuid); 86 void IncrementBlobRefCount(const std::string& uuid);
84 void DecrementBlobRefCount(const std::string& uuid); 87 void DecrementBlobRefCount(const std::string& uuid);
85 88
86 bool ExpandStorageItems(BlobData* target_blob_data, 89 bool ExpandStorageItems(BlobDataBuilder* target_blob_data,
87 BlobData* src_blob_data, 90 const BlobDataSnapshot& src_blob_data,
88 uint64 offset, 91 uint64 offset,
89 uint64 length); 92 uint64 length);
90 bool AppendBytesItem(BlobData* target_blob_data, 93 bool AppendBytesItem(BlobDataBuilder* target_blob_data,
91 const char* data, int64 length); 94 const char* data,
92 void AppendFileItem(BlobData* target_blob_data, 95 int64 length);
96 void AppendFileItem(BlobDataBuilder* target_blob_data,
93 const base::FilePath& file_path, 97 const base::FilePath& file_path,
94 uint64 offset, uint64 length, 98 uint64 offset,
99 uint64 length,
95 const base::Time& expected_modification_time); 100 const base::Time& expected_modification_time);
96 void AppendFileSystemFileItem( 101 void AppendFileSystemFileItem(BlobDataBuilder* target_blob_data,
97 BlobData* target_blob_data, 102 const GURL& url,
98 const GURL& url, uint64 offset, uint64 length, 103 uint64 offset,
99 const base::Time& expected_modification_time); 104 uint64 length,
105 const base::Time& expected_modification_time);
100 106
101 bool IsInUse(const std::string& uuid); 107 bool IsInUse(const std::string& uuid);
102 bool IsBeingBuilt(const std::string& uuid); 108 bool IsBeingBuilt(const std::string& uuid);
103 bool IsUrlRegistered(const GURL& blob_url); 109 bool IsUrlRegistered(const GURL& blob_url);
104 110
105 BlobMap blob_map_; 111 BlobMap blob_map_;
106 BlobURLMap public_blob_urls_; 112 BlobURLMap public_blob_urls_;
107 113
108 // Used to keep track of how much memory is being utilized for blob data, 114 // Used to keep track of how much memory is being utilized for blob data,
109 // we count only the items of TYPE_DATA which are held in memory and not 115 // we count only the items of TYPE_DATA which are held in memory and not
110 // items of TYPE_FILE. 116 // items of TYPE_FILE.
111 int64 memory_usage_; 117 int64 memory_usage_;
112 118
113 DISALLOW_COPY_AND_ASSIGN(BlobStorageContext); 119 DISALLOW_COPY_AND_ASSIGN(BlobStorageContext);
114 }; 120 };
115 121
116 } // namespace storage 122 } // namespace storage
117 123
118 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_ 124 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698