// Copyright 2019 The Chromium Authors
// 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 <optional>

#include "third_party/blink/renderer/bindings/core/v8/script_promise.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.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 GPUMappedDOMArrayBuffer;
class ScriptState;
class V8GPUBufferMapState;
class WebGPUMailboxBuffer;

class GPUBuffer : public DawnObject<wgpu::Buffer> {
  DEFINE_WRAPPERTYPEINFO();

 public:
  static GPUBuffer* Create(GPUDevice* device,
                           const GPUBufferDescriptor* webgpu_desc,
                           ExceptionState& exception_state);
  GPUBuffer(GPUDevice* device,
            uint64_t size,
            wgpu::Buffer buffer,
            const String& label);
  GPUBuffer(GPUDevice* device,
            uint64_t size,
            scoped_refptr<WebGPUMailboxBuffer> mailbox_buffer,
            const String& label);
  ~GPUBuffer() override;

  GPUBuffer(const GPUBuffer&) = delete;
  GPUBuffer& operator=(const GPUBuffer&) = delete;

  void Trace(Visitor* visitor) const override;

  // gpu_buffer.idl {{{
  void mapSync(ScriptState* script_state,
               uint32_t mode,
               uint64_t offset,
               ExceptionState& exception_state);
  void mapSync(ScriptState* script_state,
               uint32_t mode,
               uint64_t offset,
               uint64_t size,
               ExceptionState& exception_state);
  ScriptPromise<IDLUndefined> mapAsync(ScriptState* script_state,
                                       uint32_t mode,
                                       uint64_t offset,
                                       ExceptionState& exception_state);
  ScriptPromise<IDLUndefined> mapAsync(ScriptState* script_state,
                                       uint32_t mode,
                                       uint64_t offset,
                                       uint64_t size,
                                       ExceptionState& exception_state);
  DOMArrayBuffer* getMappedRange(ScriptState* script_state,
                                 uint64_t offset,
                                 ExceptionState& exception_state);
  DOMArrayBuffer* getMappedRange(ScriptState* script_state,
                                 uint64_t offset,
                                 uint64_t size,
                                 ExceptionState& exception_state);
  void unmap(v8::Isolate* isolate);
  void destroy(v8::Isolate* isolate);
  uint64_t size() const;
  uint32_t usage() const;
  V8GPUBufferMapState mapState() const;
  // }}} End of WebIDL binding implementation.

  void DetachMappedArrayBuffers(v8::Isolate* isolate);

  void DissociateMailbox();

  scoped_refptr<WebGPUMailboxBuffer> GetMailboxBuffer();

 private:
  void MapSyncImpl(ScriptState* script_state,
                   uint32_t mode,
                   uint64_t offset,
                   std::optional<uint64_t> size,
                   ExceptionState& exception_state);
  ScriptPromise<IDLUndefined> MapAsyncImpl(ScriptState* script_state,
                                           uint32_t mode,
                                           uint64_t offset,
                                           std::optional<uint64_t> size,
                                           ExceptionState& exception_state);
  DOMArrayBuffer* GetMappedRangeImpl(ScriptState* script_state,
                                     uint64_t offset,
                                     std::optional<uint64_t> size,
                                     ExceptionState& exception_state);

  void OnMapAsyncCallback(ScriptPromiseResolver<IDLUndefined>* resolver,
                          wgpu::MapAsyncStatus status,
                          wgpu::StringView message);

  DOMArrayBuffer* CreateArrayBufferForMappedData(v8::Isolate* isolate,
                                                 void* data,
                                                 size_t data_length);
  void ResetMappingState(v8::Isolate* isolate);

  void SetLabelImpl(std::string_view value) override {
    GetHandle().SetLabel(value);
  }

  uint64_t size_;
  std::optional<wgpu::Future> map_async_future_;

  // Holds onto any ArrayBuffers returned by getMappedRange, mapReadAsync, or
  // mapWriteAsync.
  HeapVector<Member<GPUMappedDOMArrayBuffer>> mapped_array_buffers_;

  // List of ranges currently returned by getMappedRange, to avoid overlaps.
  Vector<std::pair<size_t, size_t>> mapped_ranges_;

  // Buffer created from a shared image.
  scoped_refptr<WebGPUMailboxBuffer> mailbox_buffer_;
};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_BUFFER_H_
