| //* 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/ApiObjects.h" |
| #include "dawn/wire/client/Client.h" |
| #include "dawn/wire/client/Instance.h" |
| |
| #include <algorithm> |
| #include <cstring> |
| #include <string> |
| #include <type_traits> |
| #include <vector> |
| |
| namespace dawn::wire::client { |
| |
| // Template function for constexpr branching when creating new objects. |
| template <typename Parent, typename Child, typename... Args> |
| Child* Create(Parent p, Args... args) { |
| if constexpr (std::is_constructible_v<Child, const ObjectBaseParams&, decltype(args)...>) { |
| return p->GetClient()->template Make<Child>(args...); |
| } else if constexpr (std::is_constructible_v<Child, const ObjectBaseParams&, const ObjectHandle&, decltype(args)...>) { |
| return p->GetClient()->template Make<Child>(p->GetEventManagerHandle(), args...); |
| } else { |
| if constexpr (std::is_base_of_v<ObjectWithEventsBase, Child>) { |
| return p->GetClient()->template Make<Child>(p->GetEventManagerHandle()); |
| } else { |
| return p->GetClient()->template Make<Child>(); |
| } |
| } |
| } |
| |
| //* Outputs an rvalue that's the number of elements a pointer member points to. |
| {% macro member_length(member, accessor) -%} |
| {%- if member.length == "constant" -%} |
| {{member.constant_length}} |
| {%- else -%} |
| {{accessor}}{{as_varName(member.length.name)}} |
| {%- endif -%} |
| {%- endmacro %} |
| |
| //* Implementation of the client API functions. |
| {% for type in by_category["object"] %} |
| {% set Type = type.name.CamelCase() %} |
| {% set cType = as_cType(type.name) %} |
| |
| {% for method in type.methods %} |
| {% set Suffix = as_MethodSuffix(type.name, method.name) %} |
| |
| {% if Suffix in client_handwritten_commands %} |
| static |
| {% endif %} |
| {{as_cReturnType(method.return_type)}} Client{{Suffix}}( |
| {{-cType}} cSelf |
| {%- for arg in method.arguments -%} |
| , {{as_annotated_cType(arg)}} |
| {%- endfor -%} |
| ) { |
| auto self = reinterpret_cast<{{as_wireType(type)}}>(cSelf); |
| {% if Suffix not in client_handwritten_commands %} |
| {{Suffix}}Cmd cmd; |
| |
| //* Create the structure going on the wire on the stack and fill it with the value |
| //* arguments so it can compute its size. |
| cmd.self = cSelf; |
| |
| //* For object creation, store the object ID the client will use for the result. |
| {% if method.return_type.category == "object" %} |
| {% set ReturnObj = method.return_type.name.CamelCase() %} |
| {{ReturnObj}}* returnObject = Create<{{as_wireType(type)}}, {{ReturnObj}}>(self |
| {%- for arg in method.arguments -%} |
| , {{as_varName(arg.name)}} |
| {%- endfor -%} |
| ); |
| cmd.result = returnObject->GetWireHandle(); |
| {% endif %} |
| |
| {% for arg in method.arguments %} |
| //* Commands with mutable pointers should not be autogenerated. |
| {{assert(arg.annotation != "*")}} |
| cmd.{{as_varName(arg.name)}} = {{as_varName(arg.name)}}; |
| {% endfor %} |
| |
| //* Allocate space to send the command and copy the value args over. |
| self->GetClient()->SerializeCommand(cmd); |
| |
| {% if method.return_type.category == "object" %} |
| return ToAPI(returnObject); |
| {% endif %} |
| {% else %} |
| return self->{{method.name.CamelCase()}}( |
| {%- for arg in method.arguments -%} |
| {%if not loop.first %}, {% endif %} {{as_varName(arg.name)}} |
| {%- endfor -%}); |
| {% endif %} |
| } |
| {% endfor %} |
| |
| //* When an object's refcount reaches 0, notify the server side of it and delete it. |
| void Client{{as_MethodSuffix(type.name, Name("release"))}}({{cType}} cObj) { |
| {{Type}}* obj = reinterpret_cast<{{Type}}*>(cObj); |
| obj->Release(); |
| } |
| |
| void Client{{as_MethodSuffix(type.name, Name("add ref"))}}({{cType}} cObj) { |
| reinterpret_cast<{{Type}}*>(cObj)->AddRef(); |
| } |
| |
| //* TODO(dawn:2234): Deprecated. Remove once no longer user. |
| void Client{{as_MethodSuffix(type.name, Name("reference"))}}({{cType}} cObj) { |
| Client{{as_MethodSuffix(type.name, Name("add ref"))}}(cObj); |
| } |
| {% endfor %} |
| |
| namespace { |
| struct ProcEntry { |
| WGPUProc proc; |
| const char* name; |
| }; |
| static const ProcEntry sProcMap[] = { |
| {% for (type, method) in c_methods_sorted_by_name %} |
| { reinterpret_cast<WGPUProc>(Client{{as_MethodSuffix(type.name, method.name)}}), "{{as_cMethod(type.name, method.name)}}" }, |
| {% endfor %} |
| }; |
| static constexpr size_t sProcMapSize = sizeof(sProcMap) / sizeof(sProcMap[0]); |
| } // anonymous namespace |
| |
| WGPUProc ClientGetProcAddress(WGPUDevice, const char* procName) { |
| if (procName == nullptr) { |
| return nullptr; |
| } |
| |
| const ProcEntry* entry = std::lower_bound(&sProcMap[0], &sProcMap[sProcMapSize], procName, |
| [](const ProcEntry &a, const char *b) -> bool { |
| return strcmp(a.name, b) < 0; |
| } |
| ); |
| |
| if (entry != &sProcMap[sProcMapSize] && strcmp(entry->name, procName) == 0) { |
| return entry->proc; |
| } |
| |
| // Special case the free-standing functions of the API. |
| // TODO(dawn:1238) Checking string one by one is slow, it needs to be optimized. |
| {% for function in by_category["function"] %} |
| if (strcmp(procName, "{{as_cMethod(None, function.name)}}") == 0) { |
| return reinterpret_cast<WGPUProc>(Client{{as_cppType(function.name)}}); |
| } |
| |
| {% endfor %} |
| return nullptr; |
| } |
| |
| std::vector<const char*> GetProcMapNamesForTesting() { |
| std::vector<const char*> result; |
| result.reserve(sProcMapSize); |
| for (const ProcEntry& entry : sProcMap) { |
| result.push_back(entry.name); |
| } |
| return result; |
| } |
| |
| {% set Prefix = metadata.proc_table_prefix %} |
| |
| constexpr {{Prefix}}ProcTable MakeProcTable() { |
| {{Prefix}}ProcTable procs = {}; |
| {% for function in by_category["function"] %} |
| procs.{{as_varName(function.name)}} = Client{{as_cppType(function.name)}}; |
| {% endfor %} |
| {% for type in by_category["object"] %} |
| {% for method in c_methods(type) %} |
| procs.{{as_varName(type.name, method.name)}} = Client{{as_MethodSuffix(type.name, method.name)}}; |
| {% endfor %} |
| {% endfor %} |
| return procs; |
| } |
| |
| static {{Prefix}}ProcTable gProcTable = MakeProcTable(); |
| |
| const {{Prefix}}ProcTable& GetProcs() { |
| return gProcTable; |
| } |
| } // namespace dawn::wire::client |