1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_CACHED_METADATA_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_CACHED_METADATA_H_
#include <stdint.h>
#include <variant>
#include "base/check_op.h"
#include "base/containers/buffer_iterator.h"
#include "base/containers/span.h"
#include "base/memory/scoped_refptr.h"
#include "base/types/pass_key.h"
#include "mojo/public/cpp/base/big_buffer.h"
#include "third_party/blink/renderer/platform/loader/fetch/url_loader/cached_metadata_handler.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/ref_counted.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
#include "third_party/blink/renderer/platform/wtf/wtf_size_t.h"
namespace blink {
// |m_serializedData| consists of a 32 bit marker, 32 bits type ID, 64 bits tag,
// and actual data.
struct CachedMetadataHeader {
uint32_t marker; // Must be CachedMetadataHandler::kSingleEntryWithTag.
uint32_t type;
uint64_t tag; // This might be 0 if the caller to CachedMetadata::Create did
// not specify a value.
};
// Metadata retrieved from the embedding application's cache.
//
// Serialized data is NOT portable across architectures. However, reading the
// data type ID will reject data generated with a different byte-order.
class PLATFORM_EXPORT CachedMetadata : public RefCounted<CachedMetadata> {
USING_FAST_MALLOC(CachedMetadata);
public:
// Returns a Vector containing the header of serialized metadata.
// Callers should append the body to the Vector to get the full serialized
// metadata.
// The actual body size can be different from `estimated_body_size`.
static Vector<uint8_t> GetSerializedDataHeader(uint32_t data_type_id,
wtf_size_t estimated_body_size,
uint64_t tag = 0) {
Vector<uint8_t> vector;
vector.ReserveInitialCapacity(sizeof(CachedMetadataHeader) +
estimated_body_size);
uint32_t marker = CachedMetadataHandler::kSingleEntryWithTag;
CHECK_EQ(vector.size(), offsetof(CachedMetadataHeader, marker));
vector.AppendSpan(base::byte_span_from_ref(marker));
CHECK_EQ(vector.size(), offsetof(CachedMetadataHeader, type));
vector.AppendSpan(base::byte_span_from_ref(data_type_id));
CHECK_EQ(vector.size(), offsetof(CachedMetadataHeader, tag));
vector.AppendSpan(base::byte_span_from_ref(tag));
CHECK_EQ(vector.size(), sizeof(CachedMetadataHeader));
return vector;
}
static scoped_refptr<CachedMetadata> Create(uint32_t data_type_id,
base::span<const uint8_t> data,
uint64_t tag = 0);
static scoped_refptr<CachedMetadata> CreateFromSerializedData(
Vector<uint8_t> data);
static scoped_refptr<CachedMetadata> CreateFromSerializedData(
mojo_base::BigBuffer& data,
uint32_t offset = 0);
CachedMetadata(Vector<uint8_t> data, base::PassKey<CachedMetadata>);
CachedMetadata(uint32_t data_type_id,
base::span<const uint8_t> data,
uint64_t tag,
base::PassKey<CachedMetadata>);
CachedMetadata(mojo_base::BigBuffer data,
uint32_t offset,
base::PassKey<CachedMetadata>);
base::span<const uint8_t> SerializedData() const;
uint32_t DataTypeID() const { return GetHeader().type; }
uint64_t tag() const { return GetHeader().tag; }
base::span<const uint8_t> Data() const {
return SerializedData().subspan<sizeof(CachedMetadataHeader)>();
}
// Drains the serialized data as a Vector<uint8_t> or BigBuffer. This includes
// any data before the offset specified in CreateFromSerializedData.
std::variant<Vector<uint8_t>, mojo_base::BigBuffer> DrainSerializedData() &&;
private:
friend class RefCounted<CachedMetadata>;
~CachedMetadata() = default;
const CachedMetadataHeader& GetHeader() const {
base::BufferIterator iterator(SerializedData());
return *iterator.Object<CachedMetadataHeader>();
}
// Since the serialization format supports random access, storing it in
// serialized form avoids need for a copy during serialization.
std::variant<Vector<uint8_t>, mojo_base::BigBuffer> buffer_;
// The offset within the Vector or BigBuffer where the cached metadata starts.
uint32_t offset_ = 0;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_CACHED_METADATA_H_
|