1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
|
#!/usr/bin/env python
#
# Copyright (c) 2018-2021 Valve Corporation
# Copyright (c) 2018-2022 LunarG, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# The content of this file was derived from the Khronos Registry gencode.py
# and related Python files found in the KhronosGroup/Vulkan-Headers GitHub repository.
#
# Copyright (c) 2013-2016 The Khronos Group Inc.
#
# 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.
import argparse
import os
import pdb
import sys
import time
from registry.reg import Registry, etree
from generator import write
# API Call Decoders
from vulkan_decoder_body_generator import VulkanDecoderBodyGenerator, VulkanDecoderBodyGeneratorOptions
from vulkan_decoder_header_generator import VulkanDecoderHeaderGenerator, VulkanDecoderHeaderGeneratorOptions
# Struct Decoders
from vulkan_struct_decoders_body_generator import VulkanStructDecodersBodyGenerator, VulkanStructDecodersBodyGeneratorOptions
from vulkan_struct_decoders_forward_generator import VulkanStructDecodersForwardGenerator, VulkanStructDecodersForwardGeneratorOptions
from vulkan_struct_decoders_header_generator import VulkanStructDecodersHeaderGenerator, VulkanStructDecodersHeaderGeneratorOptions
from decode_pnext_struct_generator import DecodePNextStructGenerator, DecodePNextStructGeneratorOptions
# Consumers
from vulkan_consumer_header_generator import VulkanConsumerHeaderGenerator, VulkanConsumerHeaderGeneratorOptions
from vulkan_ascii_consumer_body_generator import VulkanAsciiConsumerBodyGenerator, VulkanAsciiConsumerBodyGeneratorOptions
from vulkan_replay_consumer_body_generator import VulkanReplayConsumerBodyGenerator, VulkanReplayConsumerBodyGeneratorOptions
from vulkan_referenced_resource_consumer_header_generator import VulkanReferencedResourceHeaderGenerator, VulkanReferencedResourceHeaderGeneratorOptions
from vulkan_referenced_resource_consumer_body_generator import VulkanReferencedResourceBodyGenerator, VulkanReferencedResourceBodyGeneratorOptions
from vulkan_struct_handle_mappers_header_generator import VulkanStructHandleMappersHeaderGenerator, VulkanStructHandleMappersHeaderGeneratorOptions
from vulkan_struct_handle_mappers_body_generator import VulkanStructHandleMappersBodyGenerator, VulkanStructHandleMappersBodyGeneratorOptions
from vulkan_feature_util_body_generator import VulkanFeatureUtilBodyGenerator, VulkanFeatureUtilBodyGeneratorOptions
# API Call Encoders
from vulkan_api_call_encoders_body_generator import VulkanApiCallEncodersBodyGenerator, VulkanApiCallEncodersBodyGeneratorOptions
from vulkan_api_call_encoders_header_generator import VulkanApiCallEncodersHeaderGenerator, VulkanApiCallEncodersHeaderGeneratorOptions
from vulkan_command_buffer_util_body_generator import VulkanCommandBufferUtilBodyGenerator, VulkanCommandBufferUtilBodyGeneratorOptions
from vulkan_command_buffer_util_header_generator import VulkanCommandBufferUtilHeaderGenerator, VulkanCommandBufferUtilHeaderGeneratorOptions
from vulkan_dispatch_table_generator import VulkanDispatchTableGenerator, VulkanDispatchTableGeneratorOptions
from layer_func_table_generator import LayerFuncTableGenerator, LayerFuncTableGeneratorOptions
# Struct Encoders
from vulkan_struct_encoders_body_generator import VulkanStructEncodersBodyGenerator, VulkanStructEncodersBodyGeneratorOptions
from vulkan_struct_encoders_header_generator import VulkanStructEncodersHeaderGenerator, VulkanStructEncodersHeaderGeneratorOptions
from encode_pnext_struct_generator import EncodePNextStructGenerator, EncodePNextStructGeneratorOptions
from vulkan_struct_handle_wrappers_header_generator import VulkanStructHandleWrappersHeaderGenerator, VulkanStructHandleWrappersHeaderGeneratorOptions
from vulkan_struct_handle_wrappers_body_generator import VulkanStructHandleWrappersBodyGenerator, VulkanStructHandleWrappersBodyGeneratorOptions
# To String
from vulkan_enum_to_string_body_generator import VulkanEnumToStringBodyGenerator, VulkanEnumToStringBodyGeneratorOptions
from vulkan_enum_to_string_header_generator import VulkanEnumToStringHeaderGenerator, VulkanEnumToStringHeaderGeneratorOptions
from vulkan_struct_to_string_body_generator import VulkanStructToStringBodyGenerator, VulkanStructToStringBodyGeneratorOptions
from vulkan_pnext_to_string_body_generator import VulkanPNextToStringBodyGenerator, VulkanPNextToStringBodyGeneratorOptions
from vulkan_struct_to_string_header_generator import VulkanStructToStringHeaderGenerator, VulkanStructToStringHeaderGeneratorOptions
from vulkan_struct_decoders_to_string_header_generator import VulkanStructDecodersToStringHeaderGenerator, VulkanStructDecodersToStringHeaderGeneratorOptions
from vulkan_struct_decoders_to_string_body_generator import VulkanStructDecodersToStringBodyGenerator, VulkanStructDecodersToStringBodyGeneratorOptions
from vulkan_pnext_decoders_to_string_body_generator import VulkanPNextDecodersToStringBodyGenerator, VulkanPNextDecodersToStringBodyGeneratorOptions
from vulkan_object_info_table_base2_header_generator import VulkanObjectInfoTableBase2HeaderGenerator, VulkanObjectInfoTableBase2HeaderGeneratorOptions
from vulkan_state_table_header_generator import VulkanStateTableHeaderGenerator, VulkanStateTableHeaderGeneratorOptions
# Simple timer functions
start_time = None
def start_timer(timeit):
global start_time
if timeit:
start_time = time.process_time()
def end_timer(timeit, msg):
global start_time
if timeit:
end_time = time.process_time()
write(msg, end_time - start_time, file=sys.stderr)
start_time = None
# JSON files for customizing code generation
default_blacklists = 'blacklists.json'
default_platform_types = 'platform_types.json'
default_replay_overrides = 'replay_overrides.json'
default_capture_overrides = 'capture_overrides.json'
def _getExtraVulkanHeaders(extraHeadersDir):
'''
Recursively get a list of extra Vulkan headers used in the generated code,
that are included after vulkan/vulkan.h is included
'''
extraVulkanHeaders = []
for child in os.listdir(extraHeadersDir):
childPath = os.path.join(extraHeadersDir, child)
if os.path.isdir(childPath):
extraVulkanHeaders.extend(_getExtraVulkanHeaders(childPath))
else:
extraVulkanHeaders.append(childPath)
return extraVulkanHeaders
def getExtraVulkanHeaders(extraHeadersDir):
'''
Get a list of extra Vulkan headers used in the generated code, that are
included after vulkan/vulkan.h is included
'''
return [
os.path.relpath(header, extraHeadersDir)
for header in _getExtraVulkanHeaders(extraHeadersDir)
]
def make_gen_opts(args):
"""Returns a directory of [ generator function, generator options ] indexed
by specified short names. The generator options incorporate the following
parameters:
args is an parsed argument object; see below for the fields that are used.
"""
global gen_opts
gen_opts = {}
# Output target directory
directory = args.directory
# JSON configuration files
blacklists = os.path.join(args.configs, default_blacklists)
platform_types = os.path.join(args.configs, default_platform_types)
replay_overrides = os.path.join(args.configs, default_replay_overrides)
capture_overrides = os.path.join(args.configs, default_capture_overrides)
# Copyright text prefixing all headers (list of strings).
prefix_strings = [
'/*', '** Copyright (c) 2018-2021 Valve Corporation',
'** Copyright (c) 2018-2022 LunarG, Inc.', '**',
'** Permission is hereby granted, free of charge, to any person obtaining a',
'** copy of this software and associated documentation files (the "Software"),',
'** to deal in the Software without restriction, including without limitation',
'** the rights to use, copy, modify, merge, publish, distribute, sublicense,',
'** and/or sell copies of the Software, and to permit persons to whom the',
'** Software is furnished to do so, subject to the following conditions:',
'**',
'** The above copyright notice and this permission notice shall be included in',
'** all copies or substantial portions of the Software.', '**',
'** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR',
'** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,',
'** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE',
'** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER',
'** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING',
'** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER',
'** DEALINGS IN THE SOFTWARE.', '*/', ''
]
# Text specific to Vulkan headers
vk_prefix_strings = [
'/*',
'** This file is generated from the Khronos Vulkan XML API Registry.',
'**', '*/', ''
]
extraVulkanHeaders = []
if args.headers_dir is not None:
extraVulkanHeaders = getExtraVulkanHeaders(args.headers_dir)
#
# API call decoder generators
gen_opts['generated_vulkan_decoder.cpp'] = [
VulkanDecoderBodyGenerator,
VulkanDecoderBodyGeneratorOptions(
filename='generated_vulkan_decoder.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_decoder.h'] = [
VulkanDecoderHeaderGenerator,
VulkanDecoderHeaderGeneratorOptions(
filename='generated_vulkan_decoder.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
#
# Struct decoder generators
gen_opts['generated_vulkan_struct_decoders.cpp'] = [
VulkanStructDecodersBodyGenerator,
VulkanStructDecodersBodyGeneratorOptions(
filename='generated_vulkan_struct_decoders.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_decoders_forward.h'] = [
VulkanStructDecodersForwardGenerator,
VulkanStructDecodersForwardGeneratorOptions(
filename='generated_vulkan_struct_decoders_forward.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_decoders.h'] = [
VulkanStructDecodersHeaderGenerator,
VulkanStructDecodersHeaderGeneratorOptions(
filename='generated_vulkan_struct_decoders.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_decode_pnext_struct.cpp'] = [
DecodePNextStructGenerator,
DecodePNextStructGeneratorOptions(
filename='generated_decode_pnext_struct.cpp',
directory=directory,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
#
# Consumer generation
gen_opts['generated_vulkan_consumer.h'] = [
VulkanConsumerHeaderGenerator,
VulkanConsumerHeaderGeneratorOptions(
class_name='VulkanConsumer',
base_class_header='vulkan_consumer_base.h',
is_override=False,
filename='generated_vulkan_consumer.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_ascii_consumer.h'] = [
VulkanConsumerHeaderGenerator,
VulkanConsumerHeaderGeneratorOptions(
class_name='VulkanAsciiConsumer',
base_class_header='vulkan_ascii_consumer_base.h',
is_override=True,
filename='generated_vulkan_ascii_consumer.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_referenced_resource_consumer.h'] = [
VulkanReferencedResourceHeaderGenerator,
VulkanReferencedResourceHeaderGeneratorOptions(
filename='generated_vulkan_referenced_resource_consumer.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_replay_consumer.h'] = [
VulkanConsumerHeaderGenerator,
VulkanConsumerHeaderGeneratorOptions(
class_name='VulkanReplayConsumer',
base_class_header='vulkan_replay_consumer_base.h',
is_override=True,
constructor_args=
'std::shared_ptr<application::Application> application, const VulkanReplayOptions& options',
filename='generated_vulkan_replay_consumer.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_ascii_consumer.cpp'] = [
VulkanAsciiConsumerBodyGenerator,
VulkanAsciiConsumerBodyGeneratorOptions(
filename='generated_vulkan_ascii_consumer.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_replay_consumer.cpp'] = [
VulkanReplayConsumerBodyGenerator,
VulkanReplayConsumerBodyGeneratorOptions(
filename='generated_vulkan_replay_consumer.cpp',
directory=directory,
blacklists=blacklists,
replay_overrides=replay_overrides,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_referenced_resource_consumer.cpp'] = [
VulkanReferencedResourceBodyGenerator,
VulkanReferencedResourceBodyGeneratorOptions(
filename='generated_vulkan_referenced_resource_consumer.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_handle_mappers.h'] = [
VulkanStructHandleMappersHeaderGenerator,
VulkanStructHandleMappersHeaderGeneratorOptions(
filename='generated_vulkan_struct_handle_mappers.h',
directory=directory,
blacklists=blacklists,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_handle_mappers.cpp'] = [
VulkanStructHandleMappersBodyGenerator,
VulkanStructHandleMappersBodyGeneratorOptions(
filename='generated_vulkan_struct_handle_mappers.cpp',
directory=directory,
blacklists=blacklists,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_feature_util.cpp'] = [
VulkanFeatureUtilBodyGenerator,
VulkanFeatureUtilBodyGeneratorOptions(
filename='generated_vulkan_feature_util.cpp',
directory=directory,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
#
# API call encoder generators
gen_opts['generated_vulkan_api_call_encoders.h'] = [
VulkanApiCallEncodersHeaderGenerator,
VulkanApiCallEncodersHeaderGeneratorOptions(
filename='generated_vulkan_api_call_encoders.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_api_call_encoders.cpp'] = [
VulkanApiCallEncodersBodyGenerator,
VulkanApiCallEncodersBodyGeneratorOptions(
filename='generated_vulkan_api_call_encoders.cpp',
directory=directory,
blacklists=blacklists,
capture_overrides=capture_overrides,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_command_buffer_util.h'] = [
VulkanCommandBufferUtilHeaderGenerator,
VulkanCommandBufferUtilHeaderGeneratorOptions(
filename='generated_vulkan_command_buffer_util.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_command_buffer_util.cpp'] = [
VulkanCommandBufferUtilBodyGenerator,
VulkanCommandBufferUtilBodyGeneratorOptions(
filename='generated_vulkan_command_buffer_util.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_dispatch_table.h'] = [
VulkanDispatchTableGenerator,
VulkanDispatchTableGeneratorOptions(
filename='generated_vulkan_dispatch_table.h',
directory=directory,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_layer_func_table.h'] = [
LayerFuncTableGenerator,
LayerFuncTableGeneratorOptions(
filename='generated_layer_func_table.h',
directory=directory,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
#
# Struct encoder generators
gen_opts['generated_vulkan_struct_encoders.cpp'] = [
VulkanStructEncodersBodyGenerator,
VulkanStructEncodersBodyGeneratorOptions(
filename='generated_vulkan_struct_encoders.cpp',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_encoders.h'] = [
VulkanStructEncodersHeaderGenerator,
VulkanStructEncodersHeaderGeneratorOptions(
filename='generated_vulkan_struct_encoders.h',
directory=directory,
blacklists=blacklists,
platform_types=platform_types,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_encode_pnext_struct.cpp'] = [
EncodePNextStructGenerator,
EncodePNextStructGeneratorOptions(
filename='generated_encode_pnext_struct.cpp',
directory=directory,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_handle_wrappers.h'] = [
VulkanStructHandleWrappersHeaderGenerator,
VulkanStructHandleWrappersHeaderGeneratorOptions(
filename='generated_vulkan_struct_handle_wrappers.h',
directory=directory,
blacklists=blacklists,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=True,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_handle_wrappers.cpp'] = [
VulkanStructHandleWrappersBodyGenerator,
VulkanStructHandleWrappersBodyGeneratorOptions(
filename='generated_vulkan_struct_handle_wrappers.cpp',
directory=directory,
blacklists=blacklists,
prefix_text=prefix_strings + vk_prefix_strings,
protect_file=False,
protect_feature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
#
# To string generators
gen_opts['generated_vulkan_enum_to_string.h'] = [
VulkanEnumToStringHeaderGenerator,
VulkanEnumToStringHeaderGeneratorOptions(
filename='generated_vulkan_enum_to_string.h',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=True,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_enum_to_string.cpp'] = [
VulkanEnumToStringBodyGenerator,
VulkanEnumToStringBodyGeneratorOptions(
filename='generated_vulkan_enum_to_string.cpp',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=False,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_pnext_to_string.cpp'] = [
VulkanPNextToStringBodyGenerator,
VulkanPNextToStringBodyGeneratorOptions(
filename='generated_vulkan_pnext_to_string.cpp',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=False,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_to_string.h'] = [
VulkanStructToStringHeaderGenerator,
VulkanStructToStringHeaderGeneratorOptions(
filename='generated_vulkan_struct_to_string.h',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=True,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_to_string.cpp'] = [
VulkanStructToStringBodyGenerator,
VulkanStructToStringBodyGeneratorOptions(
filename='generated_vulkan_struct_to_string.cpp',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=False,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_decoders_to_string.h'] = [
VulkanStructDecodersToStringHeaderGenerator,
VulkanStructDecodersToStringHeaderGeneratorOptions(
filename='generated_vulkan_struct_decoders_to_string.h',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=True,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_struct_decoders_to_string.cpp'] = [
VulkanStructDecodersToStringBodyGenerator,
VulkanStructDecodersToStringBodyGeneratorOptions(
filename='generated_vulkan_struct_decoders_to_string.cpp',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=False,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_pnext_decoders_to_string.cpp'] = [
VulkanPNextDecodersToStringBodyGenerator,
VulkanPNextDecodersToStringBodyGeneratorOptions(
filename='generated_vulkan_pnext_decoders_to_string.cpp',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=False,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_object_info_table_base2.h'] = [
VulkanObjectInfoTableBase2HeaderGenerator,
VulkanObjectInfoTableBase2HeaderGeneratorOptions(
filename='generated_vulkan_object_info_table_base2.h',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=True,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
gen_opts['generated_vulkan_state_table.h'] = [
VulkanStateTableHeaderGenerator,
VulkanStateTableHeaderGeneratorOptions(
filename='generated_vulkan_state_table.h',
directory=directory,
blacklists=blacklists,
platformTypes=platform_types,
prefixText=prefix_strings + vk_prefix_strings,
protectFile=True,
protectFeature=False,
extraVulkanHeaders=extraVulkanHeaders
)
]
def gen_target(args):
"""Generate a target based on the options in the matching gen_opts{} object.
This is encapsulated in a function so it can be profiled and/or timed.
The args parameter is an parsed argument object containing the following
fields that are used:
target - target to generate
directory - directory to generate it in
protect - True if re-inclusion wrappers should be created
extensions - list of additional extensions to include in generated
interfaces
"""
# Create generator options with specified parameters
make_gen_opts(args)
if args.target in gen_opts:
create_generator = gen_opts[args.target][0]
options = gen_opts[args.target][1]
if not args.quiet:
write('* Building', options.filename, file=sys.stderr)
write(
'* options.versions =',
options.versions,
file=sys.stderr
)
write(
'* options.emitversions =',
options.emitversions,
file=sys.stderr
)
write(
'* options.default_extensions =',
options.default_extensions,
file=sys.stderr
)
write(
'* options.add_extensions =',
options.add_extensions,
file=sys.stderr
)
write(
'* options.remove_extensions =',
options.remove_extensions,
file=sys.stderr
)
write(
'* options.emit_extensions =',
options.emit_extensions,
file=sys.stderr
)
gen = create_generator(
err_file=err_warn, warn_file=err_warn, diag_file=diag
)
return (gen, options)
else:
write(
'No generator options for unknown target:',
args.target,
file=sys.stderr
)
return None
# -feature name
# -extension name
# For both, "name" may be a single name, or a space-separated list
# of names, or a regular expression.
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-debug', action='store_true', help='Enable debugging')
parser.add_argument(
'-dump', action='store_true', help='Enable dump to stderr'
)
parser.add_argument(
'-diagfile',
action='store',
default=None,
help='Write diagnostics to specified file'
)
parser.add_argument(
'-errfile',
action='store',
default=None,
help='Write errors and warnings to specified file instead of stderr'
)
parser.add_argument(
'-noprotect',
dest='protect',
action='store_false',
help='Disable inclusion protection in output headers'
)
parser.add_argument(
'-profile', action='store_true', help='Enable profiling'
)
parser.add_argument(
'-registry',
action='store',
default='vk.xml',
help='Use specified registry file instead of vk.xml'
)
parser.add_argument(
'-headers-dir',
dest='headers_dir',
action='store',
default=None,
help='\n'.join(
[
'Path to a directory that holds additional Vulkan header files required to build.',
'These header files are included directly after the Vulkan header in all generated files.'
]
)
)
parser.add_argument('-time', action='store_true', help='Enable timing')
parser.add_argument(
'-validate', action='store_true', help='Enable group validation'
)
parser.add_argument(
'-o',
action='store',
dest='directory',
default='.',
help='Create target and related files in specified directory'
)
parser.add_argument(
'target', metavar='target', nargs='?', help='Specify target'
)
parser.add_argument(
'-quiet',
action='store_true',
default=True,
help='Suppress script output during normal execution.'
)
parser.add_argument(
'-verbose',
action='store_false',
dest='quiet',
default=True,
help='Enable script output during normal execution.'
)
parser.add_argument(
'-configs',
action='store',
dest='configs',
default='.',
help=
'Specify directory containing JSON configuration files for generators'
)
args = parser.parse_args()
# create error/warning & diagnostic files
if (args.errfile):
err_warn = open(args.errfile, 'w', encoding='utf-8')
else:
err_warn = sys.stderr
if (args.diagfile):
diag = open(args.diagfile, 'w', encoding='utf-8')
else:
diag = None
(gen, options) = gen_target(args)
reg = Registry(gen, options)
start_timer(args.time)
tree = etree.parse(args.registry)
end_timer(args.time, '* Time to make ElementTree =')
start_timer(args.time)
reg.loadElementTree(tree)
end_timer(args.time, '* Time to parse ElementTree =')
if (args.validate):
reg.validateGroups()
if (args.dump):
write('* Dumping registry to regdump.txt', file=sys.stderr)
reg.dumpReg(filehandle=open('regdump.txt', 'w', encoding='utf-8'))
if (args.debug):
pdb.run('reg.api_gen()')
else:
start_timer(args.time)
reg.apiGen()
end_timer(args.time, '* Time to generate ' + options.filename + ' =')
if not args.quiet:
write('* Generated', options.filename, file=sys.stderr)
|