2020-04-17 20:43:07 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-07-18 09:40:26 +00:00
|
|
|
# Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2019-06-07 08:59:17 +00:00
|
|
|
import json, os, sys
|
2017-04-20 18:38:20 +00:00
|
|
|
from collections import namedtuple
|
2019-06-07 08:59:17 +00:00
|
|
|
|
|
|
|
from generator_lib import Generator, run_generator, FileRender
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
############################################################
|
|
|
|
# OBJECT MODEL
|
|
|
|
############################################################
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-11-23 08:47:35 +00:00
|
|
|
class Metadata:
|
|
|
|
def __init__(self, metadata):
|
|
|
|
self.api = metadata['api']
|
|
|
|
self.namespace = metadata['namespace']
|
|
|
|
self.c_prefix = metadata.get('c_prefix', self.namespace.upper())
|
2021-12-05 05:29:44 +00:00
|
|
|
self.proc_table_prefix = metadata['proc_table_prefix']
|
2021-12-16 04:54:38 +00:00
|
|
|
self.impl_dir = metadata.get('impl_dir', '')
|
|
|
|
self.native_namespace = metadata['native_namespace']
|
2021-11-23 08:47:35 +00:00
|
|
|
self.copyright_year = metadata.get('copyright_year', None)
|
|
|
|
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class Name:
|
|
|
|
def __init__(self, name, native=False):
|
|
|
|
self.native = native
|
2020-04-03 17:37:48 +00:00
|
|
|
self.name = name
|
2019-06-11 18:03:05 +00:00
|
|
|
if native:
|
|
|
|
self.chunks = [name]
|
|
|
|
else:
|
|
|
|
self.chunks = name.split(' ')
|
|
|
|
|
2020-04-03 17:37:48 +00:00
|
|
|
def get(self):
|
|
|
|
return self.name
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
def CamelChunk(self, chunk):
|
|
|
|
return chunk[0].upper() + chunk[1:]
|
|
|
|
|
|
|
|
def canonical_case(self):
|
|
|
|
return (' '.join(self.chunks)).lower()
|
|
|
|
|
|
|
|
def concatcase(self):
|
|
|
|
return ''.join(self.chunks)
|
|
|
|
|
|
|
|
def camelCase(self):
|
2020-07-15 19:51:17 +00:00
|
|
|
return self.chunks[0] + ''.join(
|
|
|
|
[self.CamelChunk(chunk) for chunk in self.chunks[1:]])
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
def CamelCase(self):
|
|
|
|
return ''.join([self.CamelChunk(chunk) for chunk in self.chunks])
|
|
|
|
|
|
|
|
def SNAKE_CASE(self):
|
|
|
|
return '_'.join([chunk.upper() for chunk in self.chunks])
|
|
|
|
|
|
|
|
def snake_case(self):
|
|
|
|
return '_'.join(self.chunks)
|
|
|
|
|
2022-01-12 09:17:35 +00:00
|
|
|
def namespace_case(self):
|
|
|
|
return '::'.join(self.chunks)
|
|
|
|
|
2022-02-04 12:51:25 +00:00
|
|
|
def Dirs(self):
|
|
|
|
return '/'.join(self.chunks)
|
|
|
|
|
2020-01-28 23:54:38 +00:00
|
|
|
def js_enum_case(self):
|
|
|
|
result = self.chunks[0].lower()
|
|
|
|
for chunk in self.chunks[1:]:
|
|
|
|
if not result[-1].isdigit():
|
|
|
|
result += '-'
|
|
|
|
result += chunk.lower()
|
|
|
|
return result
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
def concat_names(*names):
|
|
|
|
return ' '.join([name.canonical_case() for name in names])
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class Type:
|
|
|
|
def __init__(self, name, json_data, native=False):
|
|
|
|
self.json_data = json_data
|
|
|
|
self.dict_name = name
|
|
|
|
self.name = Name(name, native=native)
|
|
|
|
self.category = json_data['category']
|
2021-12-02 07:29:41 +00:00
|
|
|
self.is_wire_transparent = False
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
EnumValue = namedtuple('EnumValue', ['name', 'value', 'valid', 'json_data'])
|
2020-07-15 19:51:17 +00:00
|
|
|
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class EnumType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2019-06-11 18:03:05 +00:00
|
|
|
Type.__init__(self, name, json_data)
|
2020-01-28 23:54:38 +00:00
|
|
|
|
|
|
|
self.values = []
|
|
|
|
self.contiguousFromZero = True
|
|
|
|
lastValue = -1
|
|
|
|
for m in self.json_data['values']:
|
2021-09-17 19:44:43 +00:00
|
|
|
if not is_enabled(m):
|
|
|
|
continue
|
2020-01-28 23:54:38 +00:00
|
|
|
value = m['value']
|
|
|
|
if value != lastValue + 1:
|
|
|
|
self.contiguousFromZero = False
|
|
|
|
lastValue = value
|
2020-07-15 19:51:17 +00:00
|
|
|
self.values.append(
|
2021-09-17 19:44:43 +00:00
|
|
|
EnumValue(Name(m['name']), value, m.get('valid', True), m))
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2019-06-26 19:54:43 +00:00
|
|
|
# Assert that all values are unique in enums
|
|
|
|
all_values = set()
|
|
|
|
for value in self.values:
|
|
|
|
if value.value in all_values:
|
2020-07-15 19:51:17 +00:00
|
|
|
raise Exception("Duplicate value {} in enum {}".format(
|
|
|
|
value.value, name))
|
2019-06-26 19:54:43 +00:00
|
|
|
all_values.add(value.value)
|
2021-12-02 07:29:41 +00:00
|
|
|
self.is_wire_transparent = True
|
2019-06-26 19:54:43 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
BitmaskValue = namedtuple('BitmaskValue', ['name', 'value', 'json_data'])
|
2020-07-15 19:51:17 +00:00
|
|
|
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class BitmaskType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2019-06-11 18:03:05 +00:00
|
|
|
Type.__init__(self, name, json_data)
|
2020-07-15 19:51:17 +00:00
|
|
|
self.values = [
|
2021-09-17 19:44:43 +00:00
|
|
|
BitmaskValue(Name(m['name']), m['value'], m)
|
|
|
|
for m in self.json_data['values'] if is_enabled(m)
|
2020-07-15 19:51:17 +00:00
|
|
|
]
|
2019-06-11 18:03:05 +00:00
|
|
|
self.full_mask = 0
|
|
|
|
for value in self.values:
|
|
|
|
self.full_mask = self.full_mask | value.value
|
2021-12-02 07:29:41 +00:00
|
|
|
self.is_wire_transparent = True
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
class FunctionPointerType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2019-11-22 13:18:22 +00:00
|
|
|
Type.__init__(self, name, json_data)
|
2021-12-02 07:41:21 +00:00
|
|
|
self.return_type = None
|
2019-11-22 13:18:22 +00:00
|
|
|
self.arguments = []
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-02-08 19:48:06 +00:00
|
|
|
class TypedefType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2021-02-08 19:48:06 +00:00
|
|
|
Type.__init__(self, name, json_data)
|
|
|
|
self.type = None
|
|
|
|
|
|
|
|
|
2019-11-22 13:18:22 +00:00
|
|
|
class NativeType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2019-11-22 13:18:22 +00:00
|
|
|
Type.__init__(self, name, json_data, native=True)
|
2021-12-02 07:29:41 +00:00
|
|
|
self.is_wire_transparent = True
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
# Methods and structures are both "records", so record members correspond to
|
|
|
|
# method arguments or structure members.
|
|
|
|
class RecordMember:
|
2020-07-15 19:51:17 +00:00
|
|
|
def __init__(self,
|
|
|
|
name,
|
|
|
|
typ,
|
|
|
|
annotation,
|
2021-09-17 19:44:43 +00:00
|
|
|
json_data,
|
2020-07-15 19:51:17 +00:00
|
|
|
optional=False,
|
|
|
|
is_return_value=False,
|
|
|
|
default_value=None,
|
2019-07-19 16:01:48 +00:00
|
|
|
skip_serialize=False):
|
2019-06-11 18:03:05 +00:00
|
|
|
self.name = name
|
|
|
|
self.type = typ
|
|
|
|
self.annotation = annotation
|
2021-09-17 19:44:43 +00:00
|
|
|
self.json_data = json_data
|
2019-06-11 18:03:05 +00:00
|
|
|
self.length = None
|
|
|
|
self.optional = optional
|
|
|
|
self.is_return_value = is_return_value
|
|
|
|
self.handle_type = None
|
2019-07-08 19:20:22 +00:00
|
|
|
self.default_value = default_value
|
2019-07-19 16:01:48 +00:00
|
|
|
self.skip_serialize = skip_serialize
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
def set_handle_type(self, handle_type):
|
|
|
|
assert self.type.dict_name == "ObjectHandle"
|
|
|
|
self.handle_type = handle_type
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
Method = namedtuple('Method',
|
|
|
|
['name', 'return_type', 'arguments', 'json_data'])
|
2020-07-15 19:51:17 +00:00
|
|
|
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class ObjectType(Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
|
|
|
json_data_override = {'methods': []}
|
|
|
|
if 'methods' in json_data:
|
|
|
|
json_data_override['methods'] = [
|
|
|
|
m for m in json_data['methods'] if is_enabled(m)
|
|
|
|
]
|
|
|
|
Type.__init__(self, name, dict(json_data, **json_data_override))
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class Record:
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = Name(name)
|
|
|
|
self.members = []
|
2020-04-03 17:37:48 +00:00
|
|
|
self.may_have_dawn_object = False
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
def update_metadata(self):
|
2020-04-03 17:37:48 +00:00
|
|
|
def may_have_dawn_object(member):
|
2019-06-11 18:03:05 +00:00
|
|
|
if isinstance(member.type, ObjectType):
|
|
|
|
return True
|
|
|
|
elif isinstance(member.type, StructureType):
|
2020-04-03 17:37:48 +00:00
|
|
|
return member.type.may_have_dawn_object
|
2019-06-11 18:03:05 +00:00
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
self.may_have_dawn_object = any(
|
|
|
|
may_have_dawn_object(member) for member in self.members)
|
2020-04-03 17:37:48 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
# Set may_have_dawn_object to true if the type is chained or
|
|
|
|
# extensible. Chained structs may contain a Dawn object.
|
2020-04-03 17:37:48 +00:00
|
|
|
if isinstance(self, StructureType):
|
2020-07-15 19:51:17 +00:00
|
|
|
self.may_have_dawn_object = (self.may_have_dawn_object
|
|
|
|
or self.chained or self.extensible)
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
class StructureType(Record, Type):
|
2021-09-17 19:44:43 +00:00
|
|
|
def __init__(self, is_enabled, name, json_data):
|
2019-06-11 18:03:05 +00:00
|
|
|
Record.__init__(self, name)
|
2021-09-17 19:44:43 +00:00
|
|
|
json_data_override = {}
|
|
|
|
if 'members' in json_data:
|
|
|
|
json_data_override['members'] = [
|
|
|
|
m for m in json_data['members'] if is_enabled(m)
|
|
|
|
]
|
|
|
|
Type.__init__(self, name, dict(json_data, **json_data_override))
|
2021-09-20 16:07:25 +00:00
|
|
|
self.chained = json_data.get("chained", None)
|
|
|
|
self.extensible = json_data.get("extensible", None)
|
|
|
|
if self.chained:
|
|
|
|
assert (self.chained == "in" or self.chained == "out")
|
|
|
|
if self.extensible:
|
|
|
|
assert (self.extensible == "in" or self.extensible == "out")
|
2020-07-15 19:51:17 +00:00
|
|
|
# Chained structs inherit from wgpu::ChainedStruct, which has
|
|
|
|
# nextInChain, so setting both extensible and chained would result in
|
|
|
|
# two nextInChain members.
|
|
|
|
assert not (self.extensible and self.chained)
|
|
|
|
|
2021-12-21 04:04:51 +00:00
|
|
|
def update_metadata(self):
|
|
|
|
Record.update_metadata(self)
|
|
|
|
|
|
|
|
if self.may_have_dawn_object:
|
|
|
|
self.is_wire_transparent = False
|
|
|
|
return
|
|
|
|
|
|
|
|
assert not (self.chained or self.extensible)
|
|
|
|
|
|
|
|
def get_is_wire_transparent(member):
|
|
|
|
return member.type.is_wire_transparent and member.annotation == 'value'
|
|
|
|
|
|
|
|
self.is_wire_transparent = all(
|
|
|
|
get_is_wire_transparent(m) for m in self.members)
|
|
|
|
|
2021-09-20 16:07:25 +00:00
|
|
|
@property
|
|
|
|
def output(self):
|
|
|
|
return self.chained == "out" or self.extensible == "out"
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
|
2021-11-25 08:44:01 +00:00
|
|
|
class ConstantDefinition():
|
|
|
|
def __init__(self, is_enabled, name, json_data):
|
|
|
|
self.type = None
|
|
|
|
self.value = json_data['value']
|
|
|
|
self.json_data = json_data
|
|
|
|
self.name = Name(name)
|
|
|
|
|
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
class FunctionDeclaration():
|
|
|
|
def __init__(self, is_enabled, name, json_data):
|
|
|
|
self.return_type = None
|
|
|
|
self.arguments = []
|
|
|
|
self.json_data = json_data
|
|
|
|
self.name = Name(name)
|
|
|
|
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
class Command(Record):
|
|
|
|
def __init__(self, name, members=None):
|
|
|
|
Record.__init__(self, name)
|
|
|
|
self.members = members or []
|
|
|
|
self.derived_object = None
|
|
|
|
self.derived_method = None
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
def linked_record_members(json_data, types):
|
|
|
|
members = []
|
|
|
|
members_by_name = {}
|
|
|
|
for m in json_data:
|
2020-07-15 19:51:17 +00:00
|
|
|
member = RecordMember(Name(m['name']),
|
|
|
|
types[m['type']],
|
2019-07-08 19:20:22 +00:00
|
|
|
m.get('annotation', 'value'),
|
2021-09-17 19:44:43 +00:00
|
|
|
m,
|
2019-07-08 19:20:22 +00:00
|
|
|
optional=m.get('optional', False),
|
|
|
|
is_return_value=m.get('is_return_value', False),
|
2019-07-19 16:01:48 +00:00
|
|
|
default_value=m.get('default', None),
|
|
|
|
skip_serialize=m.get('skip_serialize', False))
|
2019-06-11 18:03:05 +00:00
|
|
|
handle_type = m.get('handle_type')
|
|
|
|
if handle_type:
|
|
|
|
member.set_handle_type(types[handle_type])
|
|
|
|
members.append(member)
|
|
|
|
members_by_name[member.name.canonical_case()] = member
|
|
|
|
|
|
|
|
for (member, m) in zip(members, json_data):
|
|
|
|
if member.annotation != 'value':
|
|
|
|
if not 'length' in m:
|
|
|
|
if member.type.category != 'object':
|
|
|
|
member.length = "constant"
|
|
|
|
member.constant_length = 1
|
|
|
|
else:
|
2020-07-15 19:51:17 +00:00
|
|
|
assert False
|
2019-06-11 18:03:05 +00:00
|
|
|
elif m['length'] == 'strlen':
|
|
|
|
member.length = 'strlen'
|
2021-12-15 04:08:56 +00:00
|
|
|
elif isinstance(m['length'], int):
|
|
|
|
assert m['length'] > 0
|
|
|
|
member.length = "constant"
|
|
|
|
member.constant_length = m['length']
|
2019-06-11 18:03:05 +00:00
|
|
|
else:
|
|
|
|
member.length = members_by_name[m['length']]
|
|
|
|
|
|
|
|
return members
|
2018-05-17 20:55:53 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
############################################################
|
|
|
|
# PARSE
|
|
|
|
############################################################
|
2017-04-20 18:42:36 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2018-12-05 17:49:04 +00:00
|
|
|
def link_object(obj, types):
|
|
|
|
def make_method(json_data):
|
2019-06-11 18:03:05 +00:00
|
|
|
arguments = linked_record_members(json_data.get('args', []), types)
|
2020-07-15 19:51:17 +00:00
|
|
|
return Method(Name(json_data['name']),
|
2021-09-17 19:44:43 +00:00
|
|
|
types[json_data.get('returns',
|
|
|
|
'void')], arguments, json_data)
|
2018-12-05 17:49:04 +00:00
|
|
|
|
2019-11-22 14:02:52 +00:00
|
|
|
obj.methods = [make_method(m) for m in obj.json_data.get('methods', [])]
|
2019-10-08 07:38:01 +00:00
|
|
|
obj.methods.sort(key=lambda method: method.name.canonical_case())
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2018-05-17 20:55:53 +00:00
|
|
|
def link_structure(struct, types):
|
2019-06-11 18:03:05 +00:00
|
|
|
struct.members = linked_record_members(struct.json_data['members'], types)
|
2018-05-17 20:55:53 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
def link_function_pointer(function_pointer, types):
|
|
|
|
link_function(function_pointer, types)
|
2020-07-15 19:51:17 +00:00
|
|
|
|
|
|
|
|
2021-02-08 19:48:06 +00:00
|
|
|
def link_typedef(typedef, types):
|
|
|
|
typedef.type = types[typedef.json_data['type']]
|
|
|
|
|
|
|
|
|
2021-11-25 08:44:01 +00:00
|
|
|
def link_constant(constant, types):
|
|
|
|
constant.type = types[constant.json_data['type']]
|
|
|
|
assert constant.type.name.native
|
|
|
|
|
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
def link_function(function, types):
|
|
|
|
function.return_type = types[function.json_data.get('returns', 'void')]
|
|
|
|
function.arguments = linked_record_members(function.json_data['args'],
|
|
|
|
types)
|
|
|
|
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
# Sort structures so that if struct A has struct B as a member, then B is
|
|
|
|
# listed before A.
|
|
|
|
#
|
|
|
|
# This is a form of topological sort where we try to keep the order reasonably
|
|
|
|
# similar to the original order (though the sort isn't technically stable).
|
|
|
|
#
|
|
|
|
# It works by computing for each struct type what is the depth of its DAG of
|
2021-09-21 17:36:27 +00:00
|
|
|
# dependents, then re-sorting based on that depth using Python's stable sort.
|
2020-07-15 19:51:17 +00:00
|
|
|
# This makes a toposort because if A depends on B then its depth will be bigger
|
|
|
|
# than B's. It is also nice because all nodes with the same depth are kept in
|
|
|
|
# the input order.
|
2018-09-18 12:49:22 +00:00
|
|
|
def topo_sort_structure(structs):
|
|
|
|
for struct in structs:
|
|
|
|
struct.visited = False
|
|
|
|
struct.subdag_depth = 0
|
|
|
|
|
|
|
|
def compute_depth(struct):
|
|
|
|
if struct.visited:
|
|
|
|
return struct.subdag_depth
|
|
|
|
|
|
|
|
max_dependent_depth = 0
|
|
|
|
for member in struct.members:
|
2018-12-05 17:49:04 +00:00
|
|
|
if member.type.category == 'structure':
|
2020-07-15 19:51:17 +00:00
|
|
|
max_dependent_depth = max(max_dependent_depth,
|
|
|
|
compute_depth(member.type) + 1)
|
2018-09-18 12:49:22 +00:00
|
|
|
|
|
|
|
struct.subdag_depth = max_dependent_depth
|
|
|
|
struct.visited = True
|
|
|
|
return struct.subdag_depth
|
|
|
|
|
|
|
|
for struct in structs:
|
|
|
|
compute_depth(struct)
|
|
|
|
|
|
|
|
result = sorted(structs, key=lambda struct: struct.subdag_depth)
|
|
|
|
|
|
|
|
for struct in structs:
|
|
|
|
del struct.visited
|
|
|
|
del struct.subdag_depth
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-12-22 19:02:23 +00:00
|
|
|
def parse_json(json, enabled_tags, disabled_tags=None):
|
|
|
|
is_enabled = lambda json_data: item_is_enabled(
|
|
|
|
enabled_tags, json_data) and not item_is_disabled(
|
|
|
|
disabled_tags, json_data)
|
2017-04-20 18:38:20 +00:00
|
|
|
category_to_parser = {
|
2019-06-11 18:03:05 +00:00
|
|
|
'bitmask': BitmaskType,
|
|
|
|
'enum': EnumType,
|
|
|
|
'native': NativeType,
|
2021-12-02 07:41:21 +00:00
|
|
|
'function pointer': FunctionPointerType,
|
2019-06-11 18:03:05 +00:00
|
|
|
'object': ObjectType,
|
|
|
|
'structure': StructureType,
|
2021-02-08 19:48:06 +00:00
|
|
|
'typedef': TypedefType,
|
2021-11-25 08:44:01 +00:00
|
|
|
'constant': ConstantDefinition,
|
2021-12-02 07:41:21 +00:00
|
|
|
'function': FunctionDeclaration
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
types = {}
|
|
|
|
|
|
|
|
by_category = {}
|
|
|
|
for name in category_to_parser.keys():
|
|
|
|
by_category[name] = []
|
|
|
|
|
2018-12-05 17:49:04 +00:00
|
|
|
for (name, json_data) in json.items():
|
2021-12-22 19:02:23 +00:00
|
|
|
if name[0] == '_' or not is_enabled(json_data):
|
2017-04-20 18:38:20 +00:00
|
|
|
continue
|
2018-12-05 17:49:04 +00:00
|
|
|
category = json_data['category']
|
2021-09-17 19:44:43 +00:00
|
|
|
parsed = category_to_parser[category](is_enabled, name, json_data)
|
2017-04-20 18:38:20 +00:00
|
|
|
by_category[category].append(parsed)
|
|
|
|
types[name] = parsed
|
|
|
|
|
|
|
|
for obj in by_category['object']:
|
|
|
|
link_object(obj, types)
|
|
|
|
|
2018-05-17 20:55:53 +00:00
|
|
|
for struct in by_category['structure']:
|
|
|
|
link_structure(struct, types)
|
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
for function_pointer in by_category['function pointer']:
|
|
|
|
link_function_pointer(function_pointer, types)
|
2019-11-22 13:18:22 +00:00
|
|
|
|
2021-02-08 19:48:06 +00:00
|
|
|
for typedef in by_category['typedef']:
|
|
|
|
link_typedef(typedef, types)
|
|
|
|
|
2021-11-25 08:44:01 +00:00
|
|
|
for constant in by_category['constant']:
|
|
|
|
link_constant(constant, types)
|
|
|
|
|
2021-12-02 07:41:21 +00:00
|
|
|
for function in by_category['function']:
|
|
|
|
link_function(function, types)
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
for category in by_category.keys():
|
2020-07-15 19:51:17 +00:00
|
|
|
by_category[category] = sorted(
|
|
|
|
by_category[category], key=lambda typ: typ.name.canonical_case())
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-09-18 12:49:22 +00:00
|
|
|
by_category['structure'] = topo_sort_structure(by_category['structure'])
|
|
|
|
|
2019-01-15 20:49:53 +00:00
|
|
|
for struct in by_category['structure']:
|
|
|
|
struct.update_metadata()
|
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
api_params = {
|
|
|
|
'types': types,
|
|
|
|
'by_category': by_category,
|
|
|
|
'enabled_tags': enabled_tags,
|
2021-12-22 19:02:23 +00:00
|
|
|
'disabled_tags': disabled_tags,
|
2021-09-17 19:44:43 +00:00
|
|
|
}
|
|
|
|
return {
|
2021-11-23 08:47:35 +00:00
|
|
|
'metadata': Metadata(json['_metadata']),
|
2021-09-17 19:44:43 +00:00
|
|
|
'types': types,
|
|
|
|
'by_category': by_category,
|
|
|
|
'enabled_tags': enabled_tags,
|
2021-12-22 19:02:23 +00:00
|
|
|
'disabled_tags': disabled_tags,
|
2021-09-17 19:44:43 +00:00
|
|
|
'c_methods': lambda typ: c_methods(api_params, typ),
|
|
|
|
'c_methods_sorted_by_name': get_c_methods_sorted_by_name(api_params),
|
|
|
|
}
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
############################################################
|
|
|
|
# WIRE STUFF
|
|
|
|
############################################################
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
# Create wire commands from api methods
|
|
|
|
def compute_wire_params(api_params, wire_json):
|
|
|
|
wire_params = api_params.copy()
|
|
|
|
types = wire_params['types']
|
|
|
|
|
|
|
|
commands = []
|
|
|
|
return_commands = []
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_json['special items']['client_handwritten_commands'] += wire_json[
|
|
|
|
'special items']['client_side_commands']
|
2019-11-22 13:18:22 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
# Generate commands from object methods
|
|
|
|
for api_object in wire_params['by_category']['object']:
|
|
|
|
for method in api_object.methods:
|
|
|
|
command_name = concat_names(api_object.name, method.name)
|
|
|
|
command_suffix = Name(command_name).CamelCase()
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
# Only object return values or void are supported.
|
|
|
|
# Other methods must be handwritten.
|
|
|
|
is_object = method.return_type.category == 'object'
|
|
|
|
is_void = method.return_type.name.canonical_case() == 'void'
|
|
|
|
if not (is_object or is_void):
|
|
|
|
assert command_suffix in (
|
|
|
|
wire_json['special items']['client_handwritten_commands'])
|
2019-06-11 18:03:05 +00:00
|
|
|
continue
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
if command_suffix in (
|
|
|
|
wire_json['special items']['client_side_commands']):
|
2019-06-11 18:03:05 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
# Create object method commands by prepending "self"
|
2020-07-15 19:51:17 +00:00
|
|
|
members = [
|
|
|
|
RecordMember(Name('self'), types[api_object.dict_name],
|
2021-09-17 19:44:43 +00:00
|
|
|
'value', {})
|
2020-07-15 19:51:17 +00:00
|
|
|
]
|
2019-06-11 18:03:05 +00:00
|
|
|
members += method.arguments
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
# Client->Server commands that return an object return the
|
|
|
|
# result object handle
|
2019-06-11 18:03:05 +00:00
|
|
|
if method.return_type.category == 'object':
|
2020-07-15 19:51:17 +00:00
|
|
|
result = RecordMember(Name('result'),
|
|
|
|
types['ObjectHandle'],
|
2021-09-17 19:44:43 +00:00
|
|
|
'value', {},
|
2020-07-15 19:51:17 +00:00
|
|
|
is_return_value=True)
|
2019-06-11 18:03:05 +00:00
|
|
|
result.set_handle_type(method.return_type)
|
|
|
|
members.append(result)
|
|
|
|
|
|
|
|
command = Command(command_name, members)
|
|
|
|
command.derived_object = api_object
|
|
|
|
command.derived_method = method
|
|
|
|
commands.append(command)
|
|
|
|
|
|
|
|
for (name, json_data) in wire_json['commands'].items():
|
|
|
|
commands.append(Command(name, linked_record_members(json_data, types)))
|
|
|
|
|
|
|
|
for (name, json_data) in wire_json['return commands'].items():
|
2020-07-15 19:51:17 +00:00
|
|
|
return_commands.append(
|
|
|
|
Command(name, linked_record_members(json_data, types)))
|
2019-06-11 18:03:05 +00:00
|
|
|
|
|
|
|
wire_params['cmd_records'] = {
|
|
|
|
'command': commands,
|
|
|
|
'return command': return_commands
|
|
|
|
}
|
|
|
|
|
|
|
|
for commands in wire_params['cmd_records'].values():
|
|
|
|
for command in commands:
|
|
|
|
command.update_metadata()
|
|
|
|
commands.sort(key=lambda c: c.name.canonical_case())
|
|
|
|
|
|
|
|
wire_params.update(wire_json.get('special items', {}))
|
|
|
|
|
|
|
|
return wire_params
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
#############################################################
|
2019-06-07 08:59:17 +00:00
|
|
|
# Generator
|
2017-04-20 18:38:20 +00:00
|
|
|
#############################################################
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
def as_varName(*names):
|
2020-07-15 19:51:17 +00:00
|
|
|
return names[0].camelCase() + ''.join(
|
|
|
|
[name.CamelCase() for name in names[1:]])
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2021-11-23 08:47:35 +00:00
|
|
|
def as_cType(c_prefix, name):
|
2017-04-20 18:38:20 +00:00
|
|
|
if name.native:
|
|
|
|
return name.concatcase()
|
|
|
|
else:
|
2021-11-23 08:47:35 +00:00
|
|
|
return c_prefix + name.CamelCase()
|
2019-10-17 08:46:07 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
def as_cppType(name):
|
|
|
|
if name.native:
|
|
|
|
return name.concatcase()
|
|
|
|
else:
|
|
|
|
return name.CamelCase()
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2020-01-28 23:54:38 +00:00
|
|
|
def as_jsEnumValue(value):
|
2021-09-17 19:44:43 +00:00
|
|
|
if 'jsrepr' in value.json_data: return value.json_data['jsrepr']
|
2020-01-28 23:54:38 +00:00
|
|
|
return "'" + value.name.js_enum_case() + "'"
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-05-15 18:55:22 +00:00
|
|
|
def convert_cType_to_cppType(typ, annotation, arg, indent=0):
|
|
|
|
if typ.category == 'native':
|
|
|
|
return arg
|
|
|
|
if annotation == 'value':
|
|
|
|
if typ.category == 'object':
|
|
|
|
return '{}::Acquire({})'.format(as_cppType(typ.name), arg)
|
|
|
|
elif typ.category == 'structure':
|
|
|
|
converted_members = [
|
|
|
|
convert_cType_to_cppType(
|
|
|
|
member.type, member.annotation,
|
2020-07-15 19:51:17 +00:00
|
|
|
'{}.{}'.format(arg, as_varName(member.name)), indent + 1)
|
|
|
|
for member in typ.members
|
|
|
|
]
|
2019-05-15 18:55:22 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
converted_members = [(' ' * 4) + m for m in converted_members]
|
2019-05-15 18:55:22 +00:00
|
|
|
converted_members = ',\n'.join(converted_members)
|
|
|
|
|
|
|
|
return as_cppType(typ.name) + ' {\n' + converted_members + '\n}'
|
2021-12-14 02:20:15 +00:00
|
|
|
elif typ.category == 'function pointer':
|
|
|
|
return 'reinterpret_cast<{}>({})'.format(as_cppType(typ.name), arg)
|
2019-05-15 18:55:22 +00:00
|
|
|
else:
|
|
|
|
return 'static_cast<{}>({})'.format(as_cppType(typ.name), arg)
|
|
|
|
else:
|
2020-07-15 19:51:17 +00:00
|
|
|
return 'reinterpret_cast<{} {}>({})'.format(as_cppType(typ.name),
|
|
|
|
annotation, arg)
|
|
|
|
|
2019-05-15 18:55:22 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
def decorate(name, typ, arg):
|
|
|
|
if arg.annotation == 'value':
|
|
|
|
return typ + ' ' + name
|
2019-05-15 18:55:22 +00:00
|
|
|
elif arg.annotation == '*':
|
|
|
|
return typ + ' * ' + name
|
2017-04-20 18:38:20 +00:00
|
|
|
elif arg.annotation == 'const*':
|
|
|
|
return typ + ' const * ' + name
|
2021-12-22 19:02:23 +00:00
|
|
|
elif arg.annotation == 'const*const*':
|
|
|
|
return 'const ' + typ + '* const * ' + name
|
2017-04-20 18:38:20 +00:00
|
|
|
else:
|
2020-07-15 19:51:17 +00:00
|
|
|
assert False
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
def annotated(typ, arg):
|
|
|
|
name = as_varName(arg.name)
|
|
|
|
return decorate(name, typ, arg)
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
def item_is_enabled(enabled_tags, json_data):
|
|
|
|
tags = json_data.get('tags')
|
|
|
|
if tags is None: return True
|
|
|
|
return any(tag in enabled_tags for tag in tags)
|
|
|
|
|
|
|
|
|
2021-12-22 19:02:23 +00:00
|
|
|
def item_is_disabled(disabled_tags, json_data):
|
|
|
|
if disabled_tags is None: return False
|
|
|
|
tags = json_data.get('tags')
|
|
|
|
if tags is None: return False
|
|
|
|
|
|
|
|
return any(tag in disabled_tags for tag in tags)
|
|
|
|
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
def as_cppEnum(value_name):
|
2020-07-15 19:51:17 +00:00
|
|
|
assert not value_name.native
|
2017-04-20 18:38:20 +00:00
|
|
|
if value_name.concatcase()[0].isdigit():
|
|
|
|
return "e" + value_name.CamelCase()
|
|
|
|
return value_name.CamelCase()
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
def as_MethodSuffix(type_name, method_name):
|
2020-07-15 19:51:17 +00:00
|
|
|
assert not type_name.native and not method_name.native
|
2017-04-20 18:38:20 +00:00
|
|
|
return type_name.CamelCase() + method_name.CamelCase()
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-11-23 08:47:35 +00:00
|
|
|
def as_frontendType(metadata, typ):
|
2017-04-20 18:38:20 +00:00
|
|
|
if typ.category == 'object':
|
2019-04-01 21:48:38 +00:00
|
|
|
return typ.name.CamelCase() + 'Base*'
|
2018-08-01 13:12:10 +00:00
|
|
|
elif typ.category in ['bitmask', 'enum']:
|
2021-11-23 08:47:35 +00:00
|
|
|
return metadata.namespace + '::' + typ.name.CamelCase()
|
2018-08-01 13:12:10 +00:00
|
|
|
elif typ.category == 'structure':
|
|
|
|
return as_cppType(typ.name)
|
2017-04-20 18:38:20 +00:00
|
|
|
else:
|
2021-11-23 08:47:35 +00:00
|
|
|
return as_cType(metadata.c_prefix, typ.name)
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-11-23 08:47:35 +00:00
|
|
|
def as_wireType(metadata, typ):
|
2019-08-27 21:41:56 +00:00
|
|
|
if typ.category == 'object':
|
|
|
|
return typ.name.CamelCase() + '*'
|
2021-04-05 23:34:17 +00:00
|
|
|
elif typ.category in ['bitmask', 'enum', 'structure']:
|
2021-11-23 08:47:35 +00:00
|
|
|
return metadata.c_prefix + typ.name.CamelCase()
|
2019-08-27 21:41:56 +00:00
|
|
|
else:
|
|
|
|
return as_cppType(typ.name)
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2022-03-19 00:21:48 +00:00
|
|
|
def as_formatType(typ):
|
|
|
|
# Unsigned integral types
|
|
|
|
if typ.json_data['type'] in ['bool', 'uint32_t', 'uint64_t']:
|
|
|
|
return 'u'
|
|
|
|
|
|
|
|
# Defaults everything else to strings.
|
|
|
|
return 's'
|
|
|
|
|
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
def c_methods(params, typ):
|
2019-11-22 14:02:52 +00:00
|
|
|
return typ.methods + [
|
2021-09-17 19:44:43 +00:00
|
|
|
x for x in [
|
|
|
|
Method(Name('reference'), params['types']['void'], [],
|
|
|
|
{'tags': ['dawn', 'emscripten']}),
|
|
|
|
Method(Name('release'), params['types']['void'], [],
|
|
|
|
{'tags': ['dawn', 'emscripten']}),
|
|
|
|
] if item_is_enabled(params['enabled_tags'], x.json_data)
|
2021-12-22 19:02:23 +00:00
|
|
|
and not item_is_disabled(params['disabled_tags'], x.json_data)
|
2017-04-20 18:42:36 +00:00
|
|
|
]
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-11-22 14:02:52 +00:00
|
|
|
def get_c_methods_sorted_by_name(api_params):
|
2019-10-15 12:08:48 +00:00
|
|
|
unsorted = [(as_MethodSuffix(typ.name, method.name), typ, method) \
|
|
|
|
for typ in api_params['by_category']['object'] \
|
2021-09-17 19:44:43 +00:00
|
|
|
for method in c_methods(api_params, typ) ]
|
2019-10-15 12:08:48 +00:00
|
|
|
return [(typ, method) for (_, typ, method) in sorted(unsorted)]
|
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2019-11-22 13:18:22 +00:00
|
|
|
def has_callback_arguments(method):
|
2021-12-02 07:41:21 +00:00
|
|
|
return any(arg.type.category == 'function pointer' for arg in method.arguments)
|
2019-11-22 13:18:22 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2021-11-23 08:47:35 +00:00
|
|
|
def make_base_render_params(metadata):
|
|
|
|
c_prefix = metadata.c_prefix
|
|
|
|
|
|
|
|
def as_cTypeEnumSpecialCase(typ):
|
|
|
|
if typ.category == 'bitmask':
|
|
|
|
return as_cType(c_prefix, typ.name) + 'Flags'
|
|
|
|
return as_cType(c_prefix, typ.name)
|
|
|
|
|
|
|
|
def as_cEnum(type_name, value_name):
|
|
|
|
assert not type_name.native and not value_name.native
|
|
|
|
return c_prefix + type_name.CamelCase() + '_' + value_name.CamelCase()
|
|
|
|
|
|
|
|
def as_cMethod(type_name, method_name):
|
2021-12-02 07:41:21 +00:00
|
|
|
c_method = c_prefix.lower()
|
|
|
|
if type_name != None:
|
|
|
|
assert not type_name.native
|
|
|
|
c_method += type_name.CamelCase()
|
|
|
|
assert not method_name.native
|
|
|
|
c_method += method_name.CamelCase()
|
|
|
|
return c_method
|
2021-11-23 08:47:35 +00:00
|
|
|
|
|
|
|
def as_cProc(type_name, method_name):
|
2021-12-02 07:41:21 +00:00
|
|
|
c_proc = c_prefix + 'Proc'
|
|
|
|
if type_name != None:
|
|
|
|
assert not type_name.native
|
|
|
|
c_proc += type_name.CamelCase()
|
|
|
|
assert not method_name.native
|
|
|
|
c_proc += method_name.CamelCase()
|
|
|
|
return c_proc
|
2021-11-23 08:47:35 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'Name': lambda name: Name(name),
|
|
|
|
'as_annotated_cType': \
|
|
|
|
lambda arg: annotated(as_cTypeEnumSpecialCase(arg.type), arg),
|
|
|
|
'as_annotated_cppType': \
|
|
|
|
lambda arg: annotated(as_cppType(arg.type.name), arg),
|
|
|
|
'as_cEnum': as_cEnum,
|
|
|
|
'as_cppEnum': as_cppEnum,
|
|
|
|
'as_cMethod': as_cMethod,
|
|
|
|
'as_MethodSuffix': as_MethodSuffix,
|
|
|
|
'as_cProc': as_cProc,
|
|
|
|
'as_cType': lambda name: as_cType(c_prefix, name),
|
|
|
|
'as_cppType': as_cppType,
|
|
|
|
'as_jsEnumValue': as_jsEnumValue,
|
|
|
|
'convert_cType_to_cppType': convert_cType_to_cppType,
|
|
|
|
'as_varName': as_varName,
|
2022-03-19 00:21:48 +00:00
|
|
|
'decorate': decorate,
|
|
|
|
'as_formatType': as_formatType
|
2021-11-23 08:47:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-07 08:59:17 +00:00
|
|
|
class MultiGeneratorFromDawnJSON(Generator):
|
|
|
|
def get_description(self):
|
|
|
|
return 'Generates code for various target from Dawn.json.'
|
|
|
|
|
|
|
|
def add_commandline_arguments(self, parser):
|
2020-07-15 19:51:17 +00:00
|
|
|
allowed_targets = [
|
2022-02-04 17:15:16 +00:00
|
|
|
'dawn_headers', 'cpp_headers', 'cpp', 'proc', 'mock_api', 'wire',
|
|
|
|
'native_utils'
|
2020-07-15 19:51:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
parser.add_argument('--dawn-json',
|
|
|
|
required=True,
|
|
|
|
type=str,
|
|
|
|
help='The DAWN JSON definition to use.')
|
|
|
|
parser.add_argument('--wire-json',
|
|
|
|
default=None,
|
|
|
|
type=str,
|
|
|
|
help='The DAWN WIRE JSON definition to use.')
|
|
|
|
parser.add_argument(
|
|
|
|
'--targets',
|
|
|
|
required=True,
|
|
|
|
type=str,
|
|
|
|
help=
|
|
|
|
'Comma-separated subset of targets to output. Available targets: '
|
|
|
|
+ ', '.join(allowed_targets))
|
2019-06-07 08:59:17 +00:00
|
|
|
def get_file_renders(self, args):
|
|
|
|
with open(args.dawn_json) as f:
|
|
|
|
loaded_json = json.loads(f.read())
|
|
|
|
|
|
|
|
targets = args.targets.split(',')
|
|
|
|
|
|
|
|
wire_json = None
|
|
|
|
if args.wire_json:
|
|
|
|
with open(args.wire_json) as f:
|
|
|
|
wire_json = json.loads(f.read())
|
|
|
|
|
2021-09-17 19:44:43 +00:00
|
|
|
renders = []
|
|
|
|
|
|
|
|
params_dawn = parse_json(loaded_json,
|
|
|
|
enabled_tags=['dawn', 'native', 'deprecated'])
|
2021-11-23 08:47:35 +00:00
|
|
|
metadata = params_dawn['metadata']
|
|
|
|
RENDER_PARAMS_BASE = make_base_render_params(metadata)
|
2019-06-07 08:59:17 +00:00
|
|
|
|
2021-12-07 00:46:35 +00:00
|
|
|
api = metadata.api.lower()
|
2021-12-10 01:35:19 +00:00
|
|
|
prefix = metadata.proc_table_prefix.lower()
|
2022-02-04 17:15:16 +00:00
|
|
|
if 'headers' in targets:
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 18:18:18 +00:00
|
|
|
FileRender('api.h', 'include/dawn/' + api + '.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
|
|
|
FileRender('dawn_proc_table.h',
|
2022-02-04 18:18:18 +00:00
|
|
|
'include/dawn/' + prefix + '_proc_table.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2019-10-15 11:44:38 +00:00
|
|
|
|
2022-02-04 17:15:16 +00:00
|
|
|
if 'cpp_headers' in targets:
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 18:18:18 +00:00
|
|
|
FileRender('api_cpp.h', 'include/dawn/' + api + '_cpp.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2019-10-16 10:26:01 +00:00
|
|
|
|
2021-06-01 18:49:12 +00:00
|
|
|
renders.append(
|
2021-12-07 00:46:35 +00:00
|
|
|
FileRender('api_cpp_print.h',
|
2022-02-04 18:18:18 +00:00
|
|
|
'include/dawn/' + api + '_cpp_print.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2021-06-01 18:49:12 +00:00
|
|
|
|
2022-02-04 17:15:16 +00:00
|
|
|
if 'proc' in targets:
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2021-12-10 01:35:19 +00:00
|
|
|
FileRender('dawn_proc.c', 'src/dawn/' + prefix + '_proc.c',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2020-10-06 16:13:42 +00:00
|
|
|
renders.append(
|
|
|
|
FileRender('dawn_thread_dispatch_proc.cpp',
|
2021-12-10 01:35:19 +00:00
|
|
|
'src/dawn/' + prefix + '_thread_dispatch_proc.cpp',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2021-12-09 20:03:48 +00:00
|
|
|
|
|
|
|
if 'webgpu_dawn_native_proc' in targets:
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/api_dawn_native_proc.cpp',
|
|
|
|
'src/dawn/native/webgpu_dawn_native_proc.cpp',
|
2021-12-09 20:03:48 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
2019-06-07 08:59:17 +00:00
|
|
|
|
2022-02-04 17:15:16 +00:00
|
|
|
if 'cpp' in targets:
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2021-12-14 02:20:15 +00:00
|
|
|
FileRender('api_cpp.cpp', 'src/dawn/' + api + '_cpp.cpp',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_dawn]))
|
|
|
|
|
|
|
|
if 'webgpu_headers' in targets:
|
|
|
|
params_upstream = parse_json(loaded_json,
|
2022-03-08 20:56:10 +00:00
|
|
|
enabled_tags=['upstream', 'native'],
|
|
|
|
disabled_tags=['dawn'])
|
2021-09-17 19:44:43 +00:00
|
|
|
renders.append(
|
2021-12-07 00:46:35 +00:00
|
|
|
FileRender('api.h', 'webgpu-headers/' + api + '.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_upstream]))
|
2019-06-07 08:59:17 +00:00
|
|
|
|
2020-01-28 23:54:38 +00:00
|
|
|
if 'emscripten_bits' in targets:
|
2022-02-08 20:21:40 +00:00
|
|
|
params_emscripten = parse_json(loaded_json,
|
|
|
|
enabled_tags=['emscripten'])
|
2021-09-17 19:44:43 +00:00
|
|
|
renders.append(
|
2021-12-07 00:46:35 +00:00
|
|
|
FileRender('api.h', 'emscripten-bits/' + api + '.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_emscripten]))
|
|
|
|
renders.append(
|
2021-12-07 00:46:35 +00:00
|
|
|
FileRender('api_cpp.h', 'emscripten-bits/' + api + '_cpp.h',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_emscripten]))
|
|
|
|
renders.append(
|
2021-12-14 02:20:15 +00:00
|
|
|
FileRender('api_cpp.cpp', 'emscripten-bits/' + api + '_cpp.cpp',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_emscripten]))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2021-12-15 04:35:26 +00:00
|
|
|
FileRender('api_struct_info.json',
|
|
|
|
'emscripten-bits/' + api + '_struct_info.json',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_emscripten]))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2021-12-15 04:35:26 +00:00
|
|
|
FileRender('library_api_enum_tables.js',
|
|
|
|
'emscripten-bits/library_' + api + '_enum_tables.js',
|
2021-09-17 19:44:43 +00:00
|
|
|
[RENDER_PARAMS_BASE, params_emscripten]))
|
2020-01-28 23:54:38 +00:00
|
|
|
|
2021-12-15 04:35:26 +00:00
|
|
|
if 'mock_api' in targets:
|
2019-11-22 13:18:22 +00:00
|
|
|
mock_params = [
|
2021-09-17 19:44:43 +00:00
|
|
|
RENDER_PARAMS_BASE, params_dawn, {
|
2019-11-22 13:18:22 +00:00
|
|
|
'has_callback_arguments': has_callback_arguments
|
|
|
|
}
|
|
|
|
]
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2021-12-15 04:35:26 +00:00
|
|
|
FileRender('mock_api.h', 'src/dawn/mock_' + api + '.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
mock_params))
|
|
|
|
renders.append(
|
2021-12-15 04:35:26 +00:00
|
|
|
FileRender('mock_api.cpp', 'src/dawn/mock_' + api + '.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
mock_params))
|
2019-06-07 08:59:17 +00:00
|
|
|
|
2022-02-04 17:07:46 +00:00
|
|
|
if 'native_utils' in targets:
|
2019-06-07 08:59:17 +00:00
|
|
|
frontend_params = [
|
2021-09-17 19:44:43 +00:00
|
|
|
RENDER_PARAMS_BASE,
|
|
|
|
params_dawn,
|
2019-06-07 08:59:17 +00:00
|
|
|
{
|
2020-07-15 19:51:17 +00:00
|
|
|
# TODO: as_frontendType and co. take a Type, not a Name :(
|
2021-11-23 08:47:35 +00:00
|
|
|
'as_frontendType': lambda typ: as_frontendType(metadata, typ),
|
2020-07-15 19:51:17 +00:00
|
|
|
'as_annotated_frontendType': \
|
2021-11-23 08:47:35 +00:00
|
|
|
lambda arg: annotated(as_frontendType(metadata, arg.type), arg),
|
2019-06-07 08:59:17 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-12-16 04:54:38 +00:00
|
|
|
impl_dir = metadata.impl_dir + '/' if metadata.impl_dir else ''
|
2022-02-04 17:07:46 +00:00
|
|
|
native_dir = impl_dir + Name(metadata.native_namespace).Dirs()
|
2021-12-21 03:27:34 +00:00
|
|
|
namespace = metadata.namespace
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ValidationUtils.h',
|
2021-12-16 04:54:38 +00:00
|
|
|
'src/' + native_dir + '/ValidationUtils_autogen.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ValidationUtils.cpp',
|
2021-12-16 04:54:38 +00:00
|
|
|
'src/' + native_dir + '/ValidationUtils_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
frontend_params))
|
2021-10-27 19:07:37 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/dawn_platform.h',
|
2021-12-17 00:46:08 +00:00
|
|
|
'src/' + native_dir + '/' + prefix + '_platform_autogen.h',
|
2021-10-27 19:07:37 +00:00
|
|
|
frontend_params))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/api_structs.h',
|
2021-12-21 03:27:34 +00:00
|
|
|
'src/' + native_dir + '/' + namespace + '_structs_autogen.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/api_structs.cpp',
|
2021-12-21 03:27:34 +00:00
|
|
|
'src/' + native_dir + '/' + namespace + '_structs_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ProcTable.cpp',
|
2021-12-22 06:12:13 +00:00
|
|
|
'src/' + native_dir + '/ProcTable.cpp', frontend_params))
|
2021-04-22 17:49:42 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ChainUtils.h',
|
2021-12-22 01:05:03 +00:00
|
|
|
'src/' + native_dir + '/ChainUtils_autogen.h',
|
2021-04-22 17:49:42 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ChainUtils.cpp',
|
2021-12-22 01:05:03 +00:00
|
|
|
'src/' + native_dir + '/ChainUtils_autogen.cpp',
|
2021-04-22 17:49:42 +00:00
|
|
|
frontend_params))
|
2021-09-23 21:26:33 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/api_absl_format.h',
|
2021-12-23 05:16:04 +00:00
|
|
|
'src/' + native_dir + '/' + api + '_absl_format_autogen.h',
|
2021-09-23 21:26:33 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/api_absl_format.cpp',
|
2021-12-23 05:16:04 +00:00
|
|
|
'src/' + native_dir + '/' + api + '_absl_format_autogen.cpp',
|
2021-09-23 21:26:33 +00:00
|
|
|
frontend_params))
|
2021-09-28 15:40:01 +00:00
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ObjectType.h',
|
2021-12-22 01:05:03 +00:00
|
|
|
'src/' + native_dir + '/ObjectType_autogen.h',
|
2021-09-28 15:40:01 +00:00
|
|
|
frontend_params))
|
|
|
|
renders.append(
|
2022-02-04 17:07:46 +00:00
|
|
|
FileRender('dawn/native/ObjectType.cpp',
|
2021-12-22 01:05:03 +00:00
|
|
|
'src/' + native_dir + '/ObjectType_autogen.cpp',
|
2021-09-28 15:40:01 +00:00
|
|
|
frontend_params))
|
2019-06-07 08:59:17 +00:00
|
|
|
|
2022-02-04 12:51:25 +00:00
|
|
|
if 'wire' in targets:
|
2021-12-22 19:02:23 +00:00
|
|
|
params_dawn_wire = parse_json(loaded_json,
|
|
|
|
enabled_tags=['dawn', 'deprecated'],
|
|
|
|
disabled_tags=['native'])
|
|
|
|
additional_params = compute_wire_params(params_dawn_wire,
|
|
|
|
wire_json)
|
2019-06-07 08:59:17 +00:00
|
|
|
|
|
|
|
wire_params = [
|
2021-12-22 19:02:23 +00:00
|
|
|
RENDER_PARAMS_BASE, params_dawn_wire, {
|
2021-11-23 08:47:35 +00:00
|
|
|
'as_wireType': lambda type : as_wireType(metadata, type),
|
2020-07-15 19:51:17 +00:00
|
|
|
'as_annotated_wireType': \
|
2021-11-23 08:47:35 +00:00
|
|
|
lambda arg: annotated(as_wireType(metadata, arg.type), arg),
|
2020-07-15 19:51:17 +00:00
|
|
|
}, additional_params
|
2019-06-07 08:59:17 +00:00
|
|
|
]
|
2020-11-11 19:46:18 +00:00
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/ObjectType.h',
|
|
|
|
'src/dawn/wire/ObjectType_autogen.h', wire_params))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/WireCmd.h',
|
|
|
|
'src/dawn/wire/WireCmd_autogen.h', wire_params))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/WireCmd.cpp',
|
|
|
|
'src/dawn/wire/WireCmd_autogen.cpp', wire_params))
|
2020-07-15 19:51:17 +00:00
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/client/ApiObjects.h',
|
|
|
|
'src/dawn/wire/client/ApiObjects_autogen.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/client/ApiProcs.cpp',
|
|
|
|
'src/dawn/wire/client/ApiProcs_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/client/ClientBase.h',
|
|
|
|
'src/dawn/wire/client/ClientBase_autogen.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/client/ClientHandlers.cpp',
|
|
|
|
'src/dawn/wire/client/ClientHandlers_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
|
|
|
FileRender(
|
2022-02-04 12:51:25 +00:00
|
|
|
'dawn/wire/client/ClientPrototypes.inc',
|
|
|
|
'src/dawn/wire/client/ClientPrototypes_autogen.inc',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/server/ServerBase.h',
|
|
|
|
'src/dawn/wire/server/ServerBase_autogen.h',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/server/ServerDoers.cpp',
|
|
|
|
'src/dawn/wire/server/ServerDoers_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
2022-02-04 12:51:25 +00:00
|
|
|
FileRender('dawn/wire/server/ServerHandlers.cpp',
|
|
|
|
'src/dawn/wire/server/ServerHandlers_autogen.cpp',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
|
|
|
renders.append(
|
|
|
|
FileRender(
|
2022-02-04 12:51:25 +00:00
|
|
|
'dawn/wire/server/ServerPrototypes.inc',
|
|
|
|
'src/dawn/wire/server/ServerPrototypes_autogen.inc',
|
2020-07-15 19:51:17 +00:00
|
|
|
wire_params))
|
2019-06-07 08:59:17 +00:00
|
|
|
|
|
|
|
return renders
|
|
|
|
|
|
|
|
def get_dependencies(self, args):
|
|
|
|
deps = [os.path.abspath(args.dawn_json)]
|
|
|
|
if args.wire_json != None:
|
|
|
|
deps += [os.path.abspath(args.wire_json)]
|
|
|
|
return deps
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2020-07-15 19:51:17 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
if __name__ == '__main__':
|
2019-06-07 08:59:17 +00:00
|
|
|
sys.exit(run_generator(MultiGeneratorFromDawnJSON()))
|