blob: caef3f2620033dd8cff15623f23c6b6c9b534b37 [file] [log] [blame]
/*
* Copyright (C) 2006-2021 Apple Inc. All rights reserved.
* Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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.
*/
#pragma once
#include <JavaScriptCore/Forward.h>
#include <utility>
#include <variant>
#include <wtf/FileSystem.h>
#include <wtf/Forward.h>
#include <wtf/Function.h>
#include <wtf/Span.h>
#include <wtf/ThreadSafeRefCounted.h>
#include <wtf/TypeCasts.h>
#include <wtf/Vector.h>
#include <wtf/text/WTFString.h>
#if USE(CF)
#include <wtf/RetainPtr.h>
#endif
#if USE(GLIB)
#include <wtf/glib/GRefPtr.h>
typedef struct _GBytes GBytes;
#endif
#if USE(GSTREAMER)
#include "GStreamerCommon.h"
#endif
#if USE(FOUNDATION)
OBJC_CLASS NSArray;
OBJC_CLASS NSData;
#endif
namespace WTF {
namespace Persistence {
class Decoder;
}
}
namespace WebCore {
class SharedBuffer;
class SharedBufferDataView;
// Data wrapped by a DataSegment should be immutable because it can be referenced by other objects.
// To modify or combine the data, allocate a new DataSegment.
class DataSegment : public ThreadSafeRefCounted<DataSegment> {
public:
WEBCORE_EXPORT const uint8_t* data() const;
WEBCORE_EXPORT size_t size() const;
WEBCORE_EXPORT static Ref<DataSegment> create(Vector<uint8_t>&&);
#if USE(CF)
WEBCORE_EXPORT static Ref<DataSegment> create(RetainPtr<CFDataRef>&&);
#endif
#if USE(GLIB)
WEBCORE_EXPORT static Ref<DataSegment> create(GRefPtr<GBytes>&&);
#endif
#if USE(GSTREAMER)
WEBCORE_EXPORT static Ref<DataSegment> create(RefPtr<GstMappedOwnedBuffer>&&);
#endif
WEBCORE_EXPORT static Ref<DataSegment> create(FileSystem::MappedFileData&&);
struct Provider {
Function<const uint8_t*()> data;
Function<size_t()> size;
};
WEBCORE_EXPORT static Ref<DataSegment> create(Provider&&);
#if USE(FOUNDATION)
WEBCORE_EXPORT RetainPtr<NSData> createNSData() const;
#endif
WEBCORE_EXPORT bool containsMappedFileData() const;
private:
explicit DataSegment(Vector<uint8_t>&& data)
: m_immutableData(WTFMove(data)) { }
#if USE(CF)
explicit DataSegment(RetainPtr<CFDataRef>&& data)
: m_immutableData(WTFMove(data)) { }
#endif
#if USE(GLIB)
explicit DataSegment(GRefPtr<GBytes>&& data)
: m_immutableData(WTFMove(data)) { }
#endif
#if USE(GSTREAMER)
explicit DataSegment(RefPtr<GstMappedOwnedBuffer>&& data)
: m_immutableData(WTFMove(data)) { }
#endif
explicit DataSegment(FileSystem::MappedFileData&& data)
: m_immutableData(WTFMove(data)) { }
explicit DataSegment(Provider&& provider)
: m_immutableData(WTFMove(provider)) { }
std::variant<Vector<uint8_t>,
#if USE(CF)
RetainPtr<CFDataRef>,
#endif
#if USE(GLIB)
GRefPtr<GBytes>,
#endif
#if USE(GSTREAMER)
RefPtr<GstMappedOwnedBuffer>,
#endif
FileSystem::MappedFileData,
Provider> m_immutableData;
friend class FragmentedSharedBuffer;
friend class SharedBuffer; // For createCFData
};
class FragmentedSharedBuffer : public ThreadSafeRefCounted<FragmentedSharedBuffer> {
public:
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create();
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(const uint8_t*, size_t);
static Ref<FragmentedSharedBuffer> create(const char* data, size_t size) { return create(reinterpret_cast<const uint8_t*>(data), size); }
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(FileSystem::MappedFileData&&);
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(Ref<SharedBuffer>&&);
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(Vector<uint8_t>&&);
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(DataSegment::Provider&&);
#if USE(FOUNDATION)
WEBCORE_EXPORT RetainPtr<NSArray> createNSDataArray() const;
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(NSData*);
#endif
#if USE(CF)
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(CFDataRef);
#endif
#if USE(GLIB)
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(GBytes*);
#endif
#if USE(GSTREAMER)
WEBCORE_EXPORT static Ref<FragmentedSharedBuffer> create(GstMappedOwnedBuffer&);
#endif
WEBCORE_EXPORT Vector<uint8_t> copyData() const;
WEBCORE_EXPORT Vector<uint8_t> read(size_t offset, size_t length) const;
// Similar to copyData() but avoids copying and will take the data instead when it is safe (The FragmentedSharedBuffer is not shared).
Vector<uint8_t> extractData();
WEBCORE_EXPORT RefPtr<ArrayBuffer> tryCreateArrayBuffer() const;
size_t size() const { return m_size; }
bool isEmpty() const { return !size(); }
bool isContiguous() const { return m_contiguous; }
WEBCORE_EXPORT Ref<FragmentedSharedBuffer> copy() const;
WEBCORE_EXPORT void copyTo(void* destination, size_t length) const;
WEBCORE_EXPORT void copyTo(void* destination, size_t offset, size_t length) const;
WEBCORE_EXPORT void forEachSegment(const Function<void(const Span<const uint8_t>&)>&) const;
WEBCORE_EXPORT bool startsWith(const Span<const uint8_t>& prefix) const;
WEBCORE_EXPORT void forEachSegmentAsSharedBuffer(const Function<void(Ref<SharedBuffer>&&)>&) const;
using DataSegment = WebCore::DataSegment; // To keep backward compatibility when using FragmentedSharedBuffer::DataSegment
struct DataSegmentVectorEntry {
size_t beginPosition;
const Ref<const DataSegment> segment;
};
using DataSegmentVector = Vector<DataSegmentVectorEntry, 1>;
DataSegmentVector::const_iterator begin() const { return m_segments.begin(); }
DataSegmentVector::const_iterator end() const { return m_segments.end(); }
bool hasOneSegment() const { return m_segments.size() == 1; }
// begin and end take O(1) time, this takes O(log(N)) time.
WEBCORE_EXPORT SharedBufferDataView getSomeData(size_t position) const;
WEBCORE_EXPORT String toHexString() const;
void hintMemoryNotNeededSoon() const;
WEBCORE_EXPORT bool operator==(const FragmentedSharedBuffer&) const;
bool operator!=(const FragmentedSharedBuffer& other) const { return !operator==(other); }
WEBCORE_EXPORT Ref<SharedBuffer> makeContiguous() const;
protected:
friend class SharedBuffer;
DataSegmentVector m_segments;
bool m_contiguous { false };
WEBCORE_EXPORT FragmentedSharedBuffer();
explicit FragmentedSharedBuffer(const uint8_t* data, size_t size) { append(data, size); }
explicit FragmentedSharedBuffer(const char* data, size_t size) { append(data, size); }
explicit FragmentedSharedBuffer(Vector<uint8_t>&& data) { append(WTFMove(data)); }
WEBCORE_EXPORT explicit FragmentedSharedBuffer(FileSystem::MappedFileData&&);
WEBCORE_EXPORT explicit FragmentedSharedBuffer(DataSegment::Provider&&);
WEBCORE_EXPORT explicit FragmentedSharedBuffer(Ref<SharedBuffer>&&);
#if USE(CF)
WEBCORE_EXPORT explicit FragmentedSharedBuffer(CFDataRef);
#endif
#if USE(GLIB)
WEBCORE_EXPORT explicit FragmentedSharedBuffer(GBytes*);
#endif
#if USE(GSTREAMER)
WEBCORE_EXPORT explicit FragmentedSharedBuffer(GstMappedOwnedBuffer&);
#endif
size_t m_size { 0 };
private:
friend class SharedBufferBuilder;
WEBCORE_EXPORT void append(const FragmentedSharedBuffer&);
WEBCORE_EXPORT void append(const uint8_t*, size_t);
void append(Span<const uint8_t> value) { append(value.data(), value.size()); }
void append(const char* data, size_t length) { append(reinterpret_cast<const uint8_t*>(data), length); }
WEBCORE_EXPORT void append(Vector<uint8_t>&&);
#if USE(FOUNDATION)
WEBCORE_EXPORT void append(NSData *);
#endif
#if USE(CF)
WEBCORE_EXPORT void append(CFDataRef);
#endif
WEBCORE_EXPORT void clear();
// Combines all the segments into a Vector and returns that vector after clearing the FragmentedSharedBuffer.
WEBCORE_EXPORT Vector<uint8_t> takeData();
const DataSegmentVectorEntry* getSegmentForPosition(size_t positition) const;
#if ASSERT_ENABLED
bool internallyConsistent() const;
#endif
};
// A SharedBuffer is a FragmentedSharedBuffer that allows to directly access its content via the data() and related methods.
class SharedBuffer : public FragmentedSharedBuffer {
public:
template <typename... Args>
static Ref<SharedBuffer> create(Args&&... args)
{
if constexpr (!sizeof...(Args))
return adoptRef(*new SharedBuffer());
else if constexpr (sizeof...(Args) == 1
&& (std::is_same_v<Args, Ref<const DataSegment>> &&...))
return adoptRef(*new SharedBuffer(std::forward<Args>(args)...));
else if constexpr (sizeof...(Args) == 1
&& (std::is_same_v<std::remove_const_t<std::remove_reference_t<Args>>, DataSegment> &&...))
return adoptRef(*new SharedBuffer(std::forward<Args>(args)...));
else {
auto buffer = FragmentedSharedBuffer::create(std::forward<Args>(args)...);
return adoptRef(*new SharedBuffer(WTFMove(buffer)));
}
}
WEBCORE_EXPORT const uint8_t* data() const;
const char* dataAsCharPtr() const { return reinterpret_cast<const char*>(data()); }
WTF::Persistence::Decoder decoder() const;
enum class MayUseFileMapping : bool { No, Yes };
WEBCORE_EXPORT static RefPtr<SharedBuffer> createWithContentsOfFile(const String& filePath, FileSystem::MappedFileMode = FileSystem::MappedFileMode::Shared, MayUseFileMapping = MayUseFileMapping::Yes);
#if USE(FOUNDATION)
WEBCORE_EXPORT RetainPtr<NSData> createNSData() const;
#endif
#if USE(CF)
WEBCORE_EXPORT RetainPtr<CFDataRef> createCFData() const;
#endif
#if USE(GLIB)
WEBCORE_EXPORT GRefPtr<GBytes> createGBytes() const;
#endif
private:
WEBCORE_EXPORT SharedBuffer();
SharedBuffer(const DataSegment& segment)
: SharedBuffer(Ref<const DataSegment> { segment }) { }
WEBCORE_EXPORT explicit SharedBuffer(FileSystem::MappedFileData&&);
WEBCORE_EXPORT explicit SharedBuffer(Ref<const DataSegment>&&);
WEBCORE_EXPORT explicit SharedBuffer(Ref<FragmentedSharedBuffer>&&);
WEBCORE_EXPORT static RefPtr<SharedBuffer> createFromReadingFile(const String& filePath);
};
class SharedBufferBuilder {
WTF_MAKE_FAST_ALLOCATED;
public:
SharedBufferBuilder() = default;
SharedBufferBuilder(SharedBufferBuilder&&) = default;
WEBCORE_EXPORT explicit SharedBufferBuilder(RefPtr<FragmentedSharedBuffer>&&);
explicit SharedBufferBuilder(Ref<FragmentedSharedBuffer>&& buffer) { initialize(WTFMove(buffer)); }
explicit SharedBufferBuilder(RefPtr<SharedBuffer>&& buffer)
: SharedBufferBuilder(RefPtr<FragmentedSharedBuffer>{ WTFMove(buffer) }) { }
explicit SharedBufferBuilder(Ref<SharedBuffer>&& buffer) { initialize(WTFMove(buffer)); }
template <typename... Args>
SharedBufferBuilder(std::in_place_t, Args&&... args)
: m_buffer(FragmentedSharedBuffer::create(std::forward<Args>(args)...)) { }
SharedBufferBuilder& operator=(SharedBufferBuilder&&) = default;
WEBCORE_EXPORT SharedBufferBuilder& operator=(RefPtr<FragmentedSharedBuffer>&&);
template <typename... Args>
void append(Args&&... args)
{
ensureBuffer();
m_buffer->append(std::forward<Args>(args)...);
}
explicit operator bool() const { return !isNull(); }
bool isNull() const { return !m_buffer; }
bool isEmpty() const { return m_buffer ? m_buffer->isEmpty() : true; }
size_t size() const { return m_buffer ? m_buffer->size() : 0; }
void reset() { m_buffer = nullptr; }
void empty() { m_buffer = FragmentedSharedBuffer::create(); }
RefPtr<FragmentedSharedBuffer> get() const { return m_buffer; }
Ref<FragmentedSharedBuffer> copy() const { return m_buffer ? m_buffer->copy() : FragmentedSharedBuffer::create(); }
WEBCORE_EXPORT RefPtr<ArrayBuffer> tryCreateArrayBuffer() const;
WEBCORE_EXPORT Ref<FragmentedSharedBuffer> take();
WEBCORE_EXPORT Ref<SharedBuffer> takeAsContiguous();
WEBCORE_EXPORT RefPtr<ArrayBuffer> takeAsArrayBuffer();
private:
friend class ScriptBuffer;
friend class FetchBodyConsumer;
// Copy constructor should make a copy of the underlying SharedBuffer
// This is prevented by ScriptBuffer and FetchBodyConsumer classes (bug 234215)
// For now let the default constructor/operator take a reference to the
// SharedBuffer.
SharedBufferBuilder(const SharedBufferBuilder&) = default;
SharedBufferBuilder& operator=(const SharedBufferBuilder&) = default;
WEBCORE_EXPORT void initialize(Ref<FragmentedSharedBuffer>&&);
WEBCORE_EXPORT void ensureBuffer();
RefPtr<FragmentedSharedBuffer> m_buffer;
};
inline Vector<uint8_t> FragmentedSharedBuffer::extractData()
{
if (hasOneRef())
return takeData();
return copyData();
}
class SharedBufferDataView {
public:
WEBCORE_EXPORT SharedBufferDataView(Ref<const DataSegment>&&, size_t positionWithinSegment, std::optional<size_t> newSize = std::nullopt);
WEBCORE_EXPORT SharedBufferDataView(const SharedBufferDataView&, size_t newSize);
size_t size() const { return m_size; }
const uint8_t* data() const { return m_segment->data() + m_positionWithinSegment; }
const char* dataAsCharPtr() const { return reinterpret_cast<const char*>(data()); }
WEBCORE_EXPORT Ref<SharedBuffer> createSharedBuffer() const;
#if USE(FOUNDATION)
WEBCORE_EXPORT RetainPtr<NSData> createNSData() const;
#endif
private:
const Ref<const DataSegment> m_segment;
const size_t m_positionWithinSegment;
const size_t m_size;
};
RefPtr<SharedBuffer> utf8Buffer(const String&);
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::SharedBuffer)
static bool isType(const WebCore::FragmentedSharedBuffer& buffer) { return buffer.isContiguous(); }
SPECIALIZE_TYPE_TRAITS_END()