| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions are | |
| 6 * met: | |
| 7 * | |
| 8 * * Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * * Redistributions in binary form must reproduce the above | |
| 11 * copyright notice, this list of conditions and the following disclaimer | |
| 12 * in the documentation and/or other materials provided with the | |
| 13 * distribution. | |
| 14 * * Neither the name of Google Inc. nor the names of its | |
| 15 * contributors may be used to endorse or promote products derived from | |
| 16 * this software without specific prior written permission. | |
| 17 * | |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 */ | |
| 30 | |
| 31 #ifndef CachedMetadata_h | |
| 32 #define CachedMetadata_h | |
| 33 | |
| 34 #include "core/CoreExport.h" | |
| 35 #include "wtf/Assertions.h" | |
| 36 #include "wtf/PassRefPtr.h" | |
| 37 #include "wtf/RefCounted.h" | |
| 38 #include "wtf/RefPtr.h" | |
| 39 #include "wtf/Vector.h" | |
| 40 #include <stdint.h> | |
| 41 | |
| 42 namespace blink { | |
| 43 | |
| 44 // Metadata retrieved from the embedding application's cache. | |
| 45 // | |
| 46 // Serialized data is NOT portable across architectures. However, reading the | |
| 47 // data type ID will reject data generated with a different byte-order. | |
| 48 class CORE_EXPORT CachedMetadata : public RefCounted<CachedMetadata> { | |
| 49 public: | |
| 50 static PassRefPtr<CachedMetadata> create(uint32_t dataTypeID, | |
| 51 const char* data, | |
| 52 size_t size) { | |
| 53 return adoptRef(new CachedMetadata(dataTypeID, data, size)); | |
| 54 } | |
| 55 | |
| 56 static PassRefPtr<CachedMetadata> createFromSerializedData(const char* data, | |
| 57 size_t size) { | |
| 58 return adoptRef(new CachedMetadata(data, size)); | |
| 59 } | |
| 60 | |
| 61 ~CachedMetadata() {} | |
| 62 | |
| 63 const Vector<char>& serializedData() const { return m_serializedData; } | |
| 64 | |
| 65 uint32_t dataTypeID() const { | |
| 66 // We need to define a local variable to use the constant in DCHECK. | |
| 67 constexpr auto kDataStart = CachedMetadata::kDataStart; | |
| 68 DCHECK_GE(m_serializedData.size(), kDataStart); | |
| 69 return *reinterpret_cast_ptr<uint32_t*>( | |
| 70 const_cast<char*>(m_serializedData.data())); | |
| 71 } | |
| 72 | |
| 73 const char* data() const { | |
| 74 constexpr auto kDataStart = CachedMetadata::kDataStart; | |
| 75 DCHECK_GE(m_serializedData.size(), kDataStart); | |
| 76 return m_serializedData.data() + kDataStart; | |
| 77 } | |
| 78 | |
| 79 size_t size() const { | |
| 80 constexpr auto kDataStart = CachedMetadata::kDataStart; | |
| 81 DCHECK_GE(m_serializedData.size(), kDataStart); | |
| 82 return m_serializedData.size() - kDataStart; | |
| 83 } | |
| 84 | |
| 85 private: | |
| 86 CachedMetadata(const char* data, size_t); | |
| 87 CachedMetadata(uint32_t dataTypeID, const char* data, size_t); | |
| 88 | |
| 89 // Since the serialization format supports random access, storing it in | |
| 90 // serialized form avoids need for a copy during serialization. | |
| 91 Vector<char> m_serializedData; | |
| 92 | |
| 93 // |m_serializedData| consists of 32 bits type ID and and actual data. | |
| 94 static constexpr size_t kDataStart = sizeof(uint32_t); | |
| 95 }; | |
| 96 | |
| 97 } // namespace blink | |
| 98 | |
| 99 #endif | |
| OLD | NEW |