Chromium Code Reviews| OLD | NEW |
|---|---|
| 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; |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 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<BlobDataHandle> GetBlobDataFromUUID(const std::string& uuid); |
| 44 scoped_ptr<BlobDataHandle> GetBlobDataFromPublicURL(const GURL& url); | 45 scoped_ptr<BlobDataHandle> GetBlobDataFromPublicURL(const GURL& url); |
| 45 | 46 |
| 46 // Useful for coining blobs from within the browser process. If the | 47 // Useful for coining blobs from within the browser process. If the |
| 47 // blob cannot be added due to memory consumption, returns NULL. | 48 // blob cannot be added due to memory consumption, returns NULL. |
| 48 scoped_ptr<BlobDataHandle> AddFinishedBlob(const BlobData* blob_data); | 49 scoped_ptr<BlobDataHandle> AddFinishedBlob(const BlobDataBuilder& blob_data); |
| 49 | 50 |
| 50 // Useful for coining blob urls from within the browser process. | 51 // Useful for coining blob urls from within the browser process. |
| 51 bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid); | 52 bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid); |
| 52 void RevokePublicBlobURL(const GURL& url); | 53 void RevokePublicBlobURL(const GURL& url); |
| 53 | 54 |
| 54 private: | 55 private: |
| 55 friend class content::BlobStorageHost; | 56 friend class content::BlobStorageHost; |
| 56 friend class BlobDataHandle::BlobDataHandleShared; | 57 friend class BlobDataHandle::BlobDataHandleShared; |
| 57 friend class ViewBlobInternalsJob; | 58 friend class ViewBlobInternalsJob; |
| 58 | 59 |
| 59 enum EntryFlags { | 60 enum EntryFlags { |
| 60 BEING_BUILT = 1 << 0, | 61 BEING_BUILT = 1 << 0, |
| 61 EXCEEDED_MEMORY = 1 << 1, | 62 EXCEEDED_MEMORY = 1 << 1, |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 struct BlobMapEntry { | 65 struct BlobMapEntry { |
| 65 int refcount; | 66 int refcount; |
| 66 int flags; | 67 int flags; |
| 67 scoped_refptr<BlobData> data; | 68 scoped_ptr<BlobDataSnapshot> data; |
| 69 scoped_ptr<BlobDataBuilder> data_builder; | |
|
michaeln
2015/01/21 01:46:41
maybe comment that |data| and |data_builder| are m
dmurph
2015/01/21 22:40:11
Done.
| |
| 68 | 70 |
| 69 BlobMapEntry(); | 71 BlobMapEntry(); |
| 70 BlobMapEntry(int refcount, int flags, BlobData* data); | 72 BlobMapEntry(int refcount, int flags, BlobDataBuilder* data); |
| 71 ~BlobMapEntry(); | 73 ~BlobMapEntry(); |
| 72 }; | 74 }; |
| 73 | 75 |
| 74 typedef std::map<std::string, BlobMapEntry> | 76 typedef std::map<std::string, BlobMapEntry*> BlobMap; |
| 75 BlobMap; | |
| 76 typedef std::map<GURL, std::string> BlobURLMap; | 77 typedef std::map<GURL, std::string> BlobURLMap; |
| 77 | 78 |
| 79 // Called by BlobDataHandle. | |
| 80 scoped_ptr<BlobDataSnapshot> CreateSnapshot(const std::string& uuid); | |
| 81 | |
| 78 void StartBuildingBlob(const std::string& uuid); | 82 void StartBuildingBlob(const std::string& uuid); |
| 79 void AppendBlobDataItem(const std::string& uuid, | 83 void AppendBlobDataItem(const std::string& uuid, |
| 80 const BlobData::Item& data_item); | 84 const DataElement& data_item); |
| 81 void FinishBuildingBlob(const std::string& uuid, const std::string& type); | 85 void FinishBuildingBlob(const std::string& uuid, const std::string& type); |
| 82 void CancelBuildingBlob(const std::string& uuid); | 86 void CancelBuildingBlob(const std::string& uuid); |
| 83 void IncrementBlobRefCount(const std::string& uuid); | 87 void IncrementBlobRefCount(const std::string& uuid); |
| 84 void DecrementBlobRefCount(const std::string& uuid); | 88 void DecrementBlobRefCount(const std::string& uuid); |
| 85 | 89 |
| 86 bool ExpandStorageItems(BlobData* target_blob_data, | 90 bool ExpandStorageItems(BlobDataBuilder* target_blob_data, |
| 87 BlobData* src_blob_data, | 91 const BlobDataSnapshot& src_blob_data, |
| 88 uint64 offset, | 92 uint64 offset, |
| 89 uint64 length); | 93 uint64 length); |
| 90 bool AppendBytesItem(BlobData* target_blob_data, | 94 bool AppendBytesItem(BlobDataBuilder* target_blob_data, |
| 91 const char* data, int64 length); | 95 const char* data, |
| 92 void AppendFileItem(BlobData* target_blob_data, | 96 int64 length); |
| 97 void AppendFileItem(BlobDataBuilder* target_blob_data, | |
| 93 const base::FilePath& file_path, | 98 const base::FilePath& file_path, |
| 94 uint64 offset, uint64 length, | 99 uint64 offset, |
| 100 uint64 length, | |
| 95 const base::Time& expected_modification_time); | 101 const base::Time& expected_modification_time); |
| 96 void AppendFileSystemFileItem( | 102 void AppendFileSystemFileItem(BlobDataBuilder* target_blob_data, |
| 97 BlobData* target_blob_data, | 103 const GURL& url, |
| 98 const GURL& url, uint64 offset, uint64 length, | 104 uint64 offset, |
| 99 const base::Time& expected_modification_time); | 105 uint64 length, |
| 106 const base::Time& expected_modification_time); | |
| 100 | 107 |
| 101 bool IsInUse(const std::string& uuid); | 108 bool IsInUse(const std::string& uuid); |
| 102 bool IsBeingBuilt(const std::string& uuid); | 109 bool IsBeingBuilt(const std::string& uuid); |
| 103 bool IsUrlRegistered(const GURL& blob_url); | 110 bool IsUrlRegistered(const GURL& blob_url); |
| 104 | 111 |
| 105 BlobMap blob_map_; | 112 BlobMap blob_map_; |
| 106 BlobURLMap public_blob_urls_; | 113 BlobURLMap public_blob_urls_; |
| 107 | 114 |
| 108 // Used to keep track of how much memory is being utilized for blob data, | 115 // 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 | 116 // we count only the items of TYPE_DATA which are held in memory and not |
| 110 // items of TYPE_FILE. | 117 // items of TYPE_FILE. |
| 111 int64 memory_usage_; | 118 int64 memory_usage_; |
| 112 | 119 |
| 113 DISALLOW_COPY_AND_ASSIGN(BlobStorageContext); | 120 DISALLOW_COPY_AND_ASSIGN(BlobStorageContext); |
| 114 }; | 121 }; |
| 115 | 122 |
| 116 } // namespace storage | 123 } // namespace storage |
| 117 | 124 |
| 118 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_ | 125 #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_CONTEXT_H_ |
| OLD | NEW |