blob: 4c9de6c12e2bbf3e19f2f07b70be410ec872f6fb [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_BUFFER_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_BUFFER_H_
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise.h"
#include "third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h"
#include "third_party/blink/renderer/core/typed_arrays/flexible_array_buffer_view.h"
#include "third_party/blink/renderer/modules/webgpu/dawn_object.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
namespace blink {
class DOMArrayBuffer;
class GPUBufferDescriptor;
class ExecutionContext;
class ScriptPromiseResolver;
class GPUBuffer : public DawnObject<WGPUBuffer> {
DEFINE_WRAPPERTYPEINFO();
public:
static GPUBuffer* Create(GPUDevice* device,
const GPUBufferDescriptor* webgpu_desc);
explicit GPUBuffer(GPUDevice* device,
uint64_t size,
WGPUBuffer buffer);
void Trace(Visitor* visitor) const override;
// gpu_buffer.idl
ScriptPromise mapAsync(ScriptState* script_state,
uint32_t mode,
uint64_t offset,
ExceptionState& exception_state);
ScriptPromise mapAsync(ScriptState* script_state,
uint32_t mode,
uint64_t offset,
uint64_t size,
ExceptionState& exception_state);
DOMArrayBuffer* getMappedRange(ExecutionContext* execution_context,
uint64_t offset,
ExceptionState& exception_state);
DOMArrayBuffer* getMappedRange(ExecutionContext* execution_context,
uint64_t offset,
uint64_t size,
ExceptionState& exception_state);
void unmap(ScriptState* script_state);
void destroy(ScriptState* script_state);
private:
ScriptPromise MapAsyncImpl(ScriptState* script_state,
uint32_t mode,
uint64_t offset,
absl::optional<uint64_t> size,
ExceptionState& exception_state);
DOMArrayBuffer* GetMappedRangeImpl(uint64_t offset,
absl::optional<uint64_t> size,
ExecutionContext* execution_context,
ExceptionState& exception_state);
void OnMapAsyncCallback(ScriptPromiseResolver* resolver,
WGPUBufferMapAsyncStatus status);
DOMArrayBuffer* CreateArrayBufferForMappedData(
void* data,
size_t data_length,
ExecutionContext* execution_context);
void ResetMappingState(ScriptState* script_state);
uint64_t size_;
// Holds onto any ArrayBuffers returned by getMappedRange, mapReadAsync, or
// mapWriteAsync.
HeapVector<Member<DOMArrayBuffer>> mapped_array_buffers_;
// List of ranges currently returned by getMappedRange, to avoid overlaps.
Vector<std::pair<size_t, size_t>> mapped_ranges_;
DISALLOW_COPY_AND_ASSIGN(GPUBuffer);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_BUFFER_H_