OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "blimp/common/blob_cache/in_memory_blob_cache.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "base/sha1.h" |
| 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/strings/string_util.h" |
| 11 |
| 12 namespace blimp { |
| 13 |
| 14 InMemoryBlobCache::InMemoryBlobCache() {} |
| 15 |
| 16 InMemoryBlobCache::~InMemoryBlobCache() {} |
| 17 |
| 18 void InMemoryBlobCache::Put(const BlobId& id, BlobData data) { |
| 19 if (Contains(id)) { |
| 20 // In cases where the engine has miscalculated what is already available |
| 21 // on the client, Put() might be called unnecessarily, which should be |
| 22 // ignored. |
| 23 VLOG(2) << "Item with ID " << id << " already exists in cache."; |
| 24 return; |
| 25 } |
| 26 cache_.insert(std::make_pair(id, std::move(data))); |
| 27 } |
| 28 |
| 29 bool InMemoryBlobCache::Contains(const BlobId& id) const { |
| 30 return cache_.find(id) != cache_.end(); |
| 31 } |
| 32 |
| 33 BlobData InMemoryBlobCache::Get(const BlobId& id) const { |
| 34 if (!Contains(id)) { |
| 35 return nullptr; |
| 36 } |
| 37 |
| 38 return cache_.find(id)->second; |
| 39 } |
| 40 |
| 41 } // namespace blimp |
OLD | NEW |