| // Copyright 2019 The Dawn & Tint Authors |
| // |
| // 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. |
| // |
| // 3. Neither the name of the copyright holder 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 HOLDER 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. |
| |
| #include "dawn/wire/client/Client.h" |
| |
| #include "dawn/common/Compiler.h" |
| #include "dawn/common/StringViewUtils.h" |
| #include "dawn/wire/client/Device.h" |
| |
| namespace dawn::wire::client { |
| |
| namespace { |
| |
| class NoopCommandSerializer final : public CommandSerializer { |
| public: |
| static NoopCommandSerializer* GetInstance() { |
| static NoopCommandSerializer gNoopCommandSerializer; |
| return &gNoopCommandSerializer; |
| } |
| |
| ~NoopCommandSerializer() override = default; |
| |
| size_t GetMaximumAllocationSize() const final { return 0; } |
| void* GetCmdSpace(size_t size) final { return nullptr; } |
| bool Flush() final { return false; } |
| }; |
| |
| } // anonymous namespace |
| |
| Client::Client(CommandSerializer* serializer, MemoryTransferService* memoryTransferService) |
| : ClientBase(), mSerializer(serializer), mMemoryTransferService(memoryTransferService) { |
| if (mMemoryTransferService == nullptr) { |
| // If a MemoryTransferService is not provided, fall back to inline memory. |
| mOwnedMemoryTransferService = CreateInlineMemoryTransferService(); |
| mMemoryTransferService = mOwnedMemoryTransferService.get(); |
| } |
| } |
| |
| Client::~Client() { |
| // Transition all event managers to ClientDropped state. |
| for (auto& [_, eventManager] : mEventManagers) { |
| eventManager->TransitionTo(EventManager::State::ClientDropped); |
| } |
| |
| UnregisterAllObjects(); |
| } |
| |
| void Client::UnregisterAllObjects() { |
| for (auto& objectList : mObjects) { |
| for (auto object : objectList.GetAllObjects()) { |
| if (object != nullptr) { |
| object->Unregister(); |
| } |
| } |
| } |
| } |
| |
| ReservedBuffer Client::ReserveBuffer(WGPUDevice device, const WGPUBufferDescriptor* descriptor) { |
| Ref<Buffer> buffer = |
| Make<Buffer>(FromAPI(device)->GetEventManagerHandle(), FromAPI(device), descriptor); |
| |
| ReservedBuffer result; |
| result.handle = buffer->GetWireHandle(); |
| result.deviceHandle = FromAPI(device)->GetWireHandle(); |
| result.buffer = ReturnToAPI(std::move(buffer)); |
| return result; |
| } |
| |
| ReservedTexture Client::ReserveTexture(WGPUDevice device, const WGPUTextureDescriptor* descriptor) { |
| Ref<Texture> texture = Make<Texture>(descriptor); |
| |
| ReservedTexture result; |
| result.handle = texture->GetWireHandle(); |
| result.deviceHandle = FromAPI(device)->GetWireHandle(); |
| result.texture = ReturnToAPI(std::move(texture)); |
| return result; |
| } |
| |
| ReservedSurface Client::ReserveSurface(WGPUInstance instance, |
| const WGPUSurfaceCapabilities* capabilities) { |
| Ref<Surface> surface = Make<Surface>(capabilities); |
| |
| ReservedSurface result; |
| result.handle = surface->GetWireHandle(); |
| result.instanceHandle = FromAPI(instance)->GetWireHandle(); |
| result.surface = ReturnToAPI(std::move(surface)); |
| return result; |
| } |
| |
| ReservedInstance Client::ReserveInstance(const WGPUInstanceDescriptor* descriptor) { |
| Ref<Instance> instance = Make<Instance>(); |
| |
| if (instance->Initialize(descriptor) != WireResult::Success) { |
| return {nullptr, {0, 0}}; |
| } |
| |
| // Reserve an EventManager for the given instance and make the association in the map. |
| mEventManagers.emplace(instance->GetWireHandle(), std::make_unique<EventManager>()); |
| |
| ReservedInstance result; |
| result.handle = instance->GetWireHandle(); |
| result.instance = ReturnToAPI(std::move(instance)); |
| return result; |
| } |
| |
| void Client::ReclaimBufferReservation(const ReservedBuffer& reservation) { |
| ReclaimReservation(FromAPI(reservation.buffer)); |
| } |
| |
| void Client::ReclaimTextureReservation(const ReservedTexture& reservation) { |
| ReclaimReservation(FromAPI(reservation.texture)); |
| } |
| |
| void Client::ReclaimSurfaceReservation(const ReservedSurface& reservation) { |
| ReclaimReservation(FromAPI(reservation.surface)); |
| } |
| |
| void Client::ReclaimInstanceReservation(const ReservedInstance& reservation) { |
| ReclaimReservation(FromAPI(reservation.instance)); |
| } |
| |
| EventManager& Client::GetEventManager(const ObjectHandle& instance) { |
| auto it = mEventManagers.find(instance); |
| DAWN_ASSERT(it != mEventManagers.end()); |
| return *it->second; |
| } |
| |
| void Client::Disconnect() { |
| mDisconnected = true; |
| mSerializer = ChunkedCommandSerializer(NoopCommandSerializer::GetInstance()); |
| |
| // Transition all event managers to ClientDropped state. |
| for (auto& [_, eventManager] : mEventManagers) { |
| eventManager->TransitionTo(EventManager::State::ClientDropped); |
| } |
| |
| { |
| auto& deviceList = mObjects[ObjectType::Device]; |
| for (auto object : deviceList.GetAllObjects()) { |
| if (object != nullptr) { |
| static_cast<Device*>(object)->HandleDeviceLost( |
| WGPUDeviceLostReason_Unknown, ToOutputStringView("GPU connection lost")); |
| } |
| } |
| } |
| for (auto& objectList : mObjects) { |
| for (auto object : objectList.GetAllObjects()) { |
| if (object != nullptr) { |
| object->CancelCallbacksForDisconnect(); |
| } |
| } |
| } |
| } |
| |
| bool Client::IsDisconnected() const { |
| return mDisconnected; |
| } |
| |
| void Client::Unregister(ObjectBase* obj, ObjectType type) { |
| UnregisterObjectCmd cmd; |
| cmd.objectType = type; |
| cmd.objectId = obj->GetWireId(); |
| SerializeCommand(cmd); |
| |
| ReclaimReservation(obj, type); |
| } |
| |
| void Client::ReclaimReservation(ObjectBase* obj, ObjectType type) { |
| mObjects[type].Remove(obj); |
| } |
| |
| } // namespace dawn::wire::client |