/usr/src/WrapITK/CreateCableSwigInputs.cmake is in libinsighttoolkit3-dev 3.20.1+git20120521-6build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ################################################################################
# Macro definitions for creating proper CableSwig input files from wrap_*.cmake
# files.
# This file includes definitions for the macros to call from a CMakeList file
# to cause wrap_*.cmake files to be turned into CXX files, and definitions for
# the macros to use in the wrap_*.cmake files themselves to declare that certain
# classes and template instantiations be wrapped.
# Note on convention: variable names in ALL_CAPS are global, and shared between
# macros or between CMake and files that are configured. Variable names in
# lower_case are local to a given macro.
################################################################################
################################################################################
# Macros for finding and processing wrap_*.cmake files.
################################################################################
MACRO(WRAPPER_LIBRARY_CREATE_WRAP_FILES)
# Include the wrap_*.cmake files in WRAPPER_LIBRARY_SOURCE_DIR. This causes
# corresponding wrap_*.cxx files to be generated WRAPPER_LIBRARY_OUTPUT_DIR,
# and added to the WRAPPER_LIBRARY_CABLESWIG_INPUTS list.
# In addition, this causes the other required wrap_*.cxx files for the entire
# library and each wrapper language to be created.
# Finally, this macro causes the language support files for the templates and
# library here defined to be created.
# Next, include modules already in WRAPPER_LIBRARY_GROUPS, because those are
# guaranteed to be processed first.
FOREACH(module ${WRAPPER_LIBRARY_GROUPS})
# EXISTS test is to allow groups to be declared in WRAPPER_LIBRARY_GROUPS
# which aren't represented by cmake files: e.g. groups that are created in
# custom cableswig cxx inputs stored in WRAPPER_LIBRARY_CABLESWIG_INPUTS.
IF(EXISTS "${WRAPPER_LIBRARY_SOURCE_DIR}/wrap_${module}.cmake")
INCLUDE_WRAP_CMAKE("${module}")
ENDIF(EXISTS "${WRAPPER_LIBRARY_SOURCE_DIR}/wrap_${module}.cmake")
ENDFOREACH(module)
# Now search for other wrap_*.cmake files to include
FILE(GLOB wrap_cmake_files "${WRAPPER_LIBRARY_SOURCE_DIR}/wrap_*.cmake")
# sort the list of files so we are sure to always get the same order on all system
# and for all builds. That's important for several reasons:
# - the order is important for the order of creation of python template
# - the typemaps files are always the same, and the rebuild can be avoided
SORT(sorted_cmake_files "${wrap_cmake_files}")
FOREACH(file ${sorted_cmake_files})
# get the module name from wrap_module.cmake
GET_FILENAME_COMPONENT(module "${file}" NAME_WE)
STRING(REGEX REPLACE "^wrap_" "" module "${module}")
# if the module is already in the list, it means that it is already included
# ... and do not include excluded modules
SET(will_include 1)
FOREACH(already_included ${WRAPPER_LIBRARY_GROUPS})
IF("${already_included}" STREQUAL "${module}")
SET(will_include 0)
ENDIF("${already_included}" STREQUAL "${module}")
ENDFOREACH(already_included)
IF(${will_include})
# Add the module name to the list. WRITE_MODULE_FILES uses this list
# to create the master library wrapper file.
SET(WRAPPER_LIBRARY_GROUPS ${WRAPPER_LIBRARY_GROUPS} "${module}")
INCLUDE_WRAP_CMAKE("${module}")
ENDIF(${will_include})
ENDFOREACH(file)
WRITE_MODULE_FILES()
ENDMACRO(WRAPPER_LIBRARY_CREATE_WRAP_FILES)
MACRO(INCLUDE_WRAP_CMAKE module)
# include a cmake module file and generate the associated wrap_*.cxx file.
# This basically sets the global vars that will be added to or modified
# by the commands in the included wrap_*.cmake module.
#
# Global vars used: none
# Global vars modified: WRAPPER_MODULE_NAME WRAPPER_TYPEDEFS
# WRAPPER_INCLUDE_FILES WRAPPER_AUTO_INCLUDE_HEADERS
# WRAPPER_DO_NOT_CREATE_CXX
MESSAGE(STATUS "${WRAPPER_LIBRARY_NAME}: Creating ${module} wrappers.")
# We run into some trouble if there's a module with the same name as the
# wrapper library. Fix this.
STRING(TOUPPER "${module}" upper_module)
STRING(TOUPPER "${WRAPPER_LIBRARY_NAME}" upper_lib)
IF("${upper_module}" STREQUAL "${upper_lib}")
SET(module "${module}_module")
ENDIF("${upper_module}" STREQUAL "${upper_lib}")
# preset the vars before include the file
SET(WRAPPER_MODULE_NAME "${module}")
SET(WRAPPER_TYPEDEFS)
SET(WRAPPER_FORCE_INSTANTIATE)
SET(WRAPPER_INCLUDE_FILES ${WRAPPER_DEFAULT_INCLUDE})
SET(WRAPPER_AUTO_INCLUDE_HEADERS ON)
SET(WRAPPER_DO_NOT_CREATE_CXX OFF)
# Now include the file.
INCLUDE("${WRAPPER_LIBRARY_SOURCE_DIR}/wrap_${module}.cmake")
# Write the file, inless the included cmake file told us not to.
# A file might declare WRAPPER_DO_NOT_CREATE_CXX if that cmake file
# provides a custom wrap_*.cxx file and manually appends it to the
# WRAPPER_LIBRARY_CABLESWIG_INPUTS list; thus that file would not
# need or want any cxx file generated.
IF(NOT WRAPPER_DO_NOT_CREATE_CXX)
WRITE_WRAP_CXX("wrap_${module}.cxx")
ENDIF(NOT WRAPPER_DO_NOT_CREATE_CXX)
ENDMACRO(INCLUDE_WRAP_CMAKE)
MACRO(WRITE_WRAP_CXX file_name)
# write the wrap_*.cxx file
#
# Global vars used: WRAPPER_INCLUDE_FILES WRAPPER_MODULE_NAME and WRAPPER_TYPEDEFS
# Global vars modified: none
# Create the '#include' statements.
SET(CONFIG_WRAPPER_INCLUDES)
FOREACH(inc ${WRAPPER_INCLUDE_FILES})
IF("${inc}" MATCHES "<.*>")
# if the include file is a <stdlib> include file, don't surround the name with qotes.
SET(include "${inc}")
ELSE("${inc}" MATCHES "<.*>")
SET(include "\"${inc}\"")
ENDIF("${inc}" MATCHES "<.*>")
SET(CONFIG_WRAPPER_INCLUDES "${CONFIG_WRAPPER_INCLUDES}#include ${include}\n")
ENDFOREACH(inc)
SET(CONFIG_WRAPPER_MODULE_NAME "${WRAPPER_MODULE_NAME}")
SET(CONFIG_WRAPPER_TYPEDEFS "${WRAPPER_TYPEDEFS}")
SET(CONFIG_WRAPPER_FORCE_INSTANTIATE "${WRAPPER_FORCE_INSTANTIATE}")
# Create the cxx file.
SET(cxx_file "${WRAPPER_LIBRARY_OUTPUT_DIR}/${file_name}")
CONFIGURE_FILE("${WRAP_ITK_CONFIG_DIR}/wrap_.cxx.in"
"${cxx_file}" @ONLY IMMEDIATE)
# And add the cxx file to the list of cableswig inputs.
SET(WRAPPER_LIBRARY_CABLESWIG_INPUTS
${WRAPPER_LIBRARY_CABLESWIG_INPUTS} "${cxx_file}")
ENDMACRO(WRITE_WRAP_CXX)
################################################################################
# Macros for writing the global module CableSwig inputs which specify all the
# groups to be bundled together into one module.
################################################################################
MACRO(WRITE_MODULE_FILES)
# Write the wrap_LIBRARY_NAME.cxx file which specifies all the wrapped groups.
MESSAGE(STATUS "${WRAPPER_LIBRARY_NAME}: Creating module wrapper files.")
SET(group_list "")
FOREACH(group_name ${WRAPPER_LIBRARY_GROUPS})
SET(group_list "${group_list} \"${group_name}\",\n")
ENDFOREACH(group_name ${group})
STRING(REGEX REPLACE ",\n$" "\n" group_list "${group_list}")
SET(CONFIG_GROUP_LIST "${group_list}")
# Create the cxx file.
SET(cxx_file "${WRAPPER_LIBRARY_OUTPUT_DIR}/wrap_${WRAPPER_LIBRARY_NAME}.cxx")
CONFIGURE_FILE("${WRAP_ITK_CONFIG_DIR}/wrap_ITK.cxx.in"
"${cxx_file}" @ONLY IMMEDIATE)
IF(WRAP_ITK_TCL)
WRITE_MODULE_FOR_LANGUAGE("Tcl")
ENDIF(WRAP_ITK_TCL)
IF(WRAP_ITK_PYTHON)
WRITE_MODULE_FOR_LANGUAGE("Python")
ENDIF(WRAP_ITK_PYTHON)
IF(WRAP_ITK_JAVA)
WRITE_MODULE_FOR_LANGUAGE("Java")
ENDIF(WRAP_ITK_JAVA)
IF(WRAP_ITK_PERL)
WRITE_MODULE_FOR_LANGUAGE("Perl")
ENDIF(WRAP_ITK_PERL)
ENDMACRO(WRITE_MODULE_FILES)
MACRO(WRITE_MODULE_FOR_LANGUAGE language)
# Write the language specific CableSwig input which declares which language is
# to be used and includes the general module cableswig input.
SET(CONFIG_LANGUAGE "${language}")
SET(CONFIG_MODULE_NAME ${WRAPPER_LIBRARY_NAME})
STRING(TOUPPER ${language} CONFIG_UPPER_LANG)
# Create the cxx file.
SET(cxx_file "${WRAPPER_LIBRARY_OUTPUT_DIR}/wrap_${WRAPPER_LIBRARY_NAME}${language}.cxx")
CONFIGURE_FILE("${WRAP_ITK_CONFIG_DIR}/wrap_ITKLang.cxx.in"
"${cxx_file}" @ONLY IMMEDIATE)
ENDMACRO(WRITE_MODULE_FOR_LANGUAGE)
################################################################################
# Macros to be used in the wrap_*.cmake files themselves.
# These macros specify that a class is to be wrapped, that certain itk headers
# are to be included, and what specific template instatiations are to be wrapped.
################################################################################
MACRO(WRAP_CLASS class)
# Wraps the c++ class 'class'. This parameter must be a fully-qualified c++
# name.
# The class will be named in the SWIG wrappers as the top-level namespace
# concatenated to the base class name. E.g. itk::Image -> itkImage or
# itk::Statistics::Sample -> itkSample.
# If the top-level namespace is 'itk' amd WRAPPER_AUTO_INCLUDE_HEADERS is ON
# then the appropriate itk header for this class will be included. Otherwise
# WRAP_INCLUDE should be manually called from the wrap_*.cmake file that calls
# this macro.
# Lastly, this class takes an optional 'wrap method' parameter. Valid values are:
# POINTER, POINTER_WITH_SUPERCLASS, POINTER_WITH_2_SUPERCLASSES, FORCE_INSTANTIATE
# and SELF.
#
# Global vars used: none
# Global vars modified: WRAPPER_INCLUDE_FILES
# drop the namespace prefix
IF("${class}" MATCHES "::")
# there's at least one namespace in the name
STRING(REGEX REPLACE ".*::" "" base_name "${class}")
STRING(REGEX REPLACE "^([^:]*::)?.+" "\\1" top_namespace "${class}")
STRING(REGEX REPLACE "::" "" top_namespace "${top_namespace}") # drop the :: from the namespace
SET(swig_name "${top_namespace}${base_name}")
ELSE("${class}" MATCHES "::")
# no namespaces
SET(swig_name "${class}")
ENDIF("${class}" MATCHES "::")
# Call the WRAP_NAMED_CLASS macro, including any optional arguments
WRAP_NAMED_CLASS("${class}" "${swig_name}" ${ARGN})
# and include the class's header
IF(WRAPPER_AUTO_INCLUDE_HEADERS)
WRAP_INCLUDE("${swig_name}.h")
ENDIF(WRAPPER_AUTO_INCLUDE_HEADERS)
ENDMACRO(WRAP_CLASS)
MACRO(WRAP_NAMED_CLASS class swig_name)
# Begin the wrapping of a new templated class. The 'class' parameter is a
# fully-qualified C++ type name, including the namespace. Between WRAP_CLASS
# and END_WRAP_CLASS various macros should be called to cause certain template
# instances to be automatically added to the wrap_*.cxx file. END_WRAP_CLASS
# actually parses through the template instaces that have been recorded and
# creates the content of that cxx file. WRAP_NON_TEMPLATE_CLASS should be used
# to create a definition for a non-templated class. (Note that internally,
# WRAP_NON_TEMPLATE_CLASS eventually calls this macro. This macro should never
# be called directly for a non-templated class though.)
#
# The second parameter of this macro is the name that the class should be given
# in SWIG (with template definitions providing additional mangled suffixes to this name)
#
# Lastly, this class takes an optional 'wrap method' parameter. Valid values are:
# POINTER and POINTER_WITH_SUPERCLASS.
# If no parameter is given, the class is simply wrapped as-is. If the parameter
# is "POINTER" then the class is wrapped and so is the SmartPointer template type
# that is typedef'd as class::Pointer.
# If POINTER_WITH_SUPERCLASS is given, class, class::Pointer, class::Superclass,
# and class::Superclass::Pointer are wrapped. This requires that the class
# has a typedef'd "Superclass" and that that superclass has Pointer and Self
# typedefs.
#
# Global vars used: none
# Global vars modified: WRAPPER_CLASS WRAPPER_TEMPLATES WRAPPER_INCLUDE_FILES
# WRAPPER_WRAP_METHOD WRAPPER_SWIG_NAME
# first, we must be sure the wrap method is valid
IF("${ARGC}" EQUAL 2)
# store the wrap method
SET(WRAPPER_WRAP_METHOD "")
ENDIF("${ARGC}" EQUAL 2)
IF("${ARGC}" EQUAL 3)
SET(WRAPPER_WRAP_METHOD "${ARGV2}")
SET(ok 0)
FOREACH(opt POINTER POINTER_WITH_SUPERCLASS POINTER_WITH_2_SUPERCLASSES FORCE_INSTANTIATE)
IF("${opt}" STREQUAL "${WRAPPER_WRAP_METHOD}")
SET(ok 1)
ENDIF("${opt}" STREQUAL "${WRAPPER_WRAP_METHOD}")
ENDFOREACH(opt)
IF(ok EQUAL 0)
MESSAGE(SEND_ERROR "WRAP_CLASS: Invalid option '${WRAPPER_WRAP_METHOD}'. Possible values are POINTER, POINTER_WITH_SUPERCLASS, POINTER_WITH_2_SUPERCLASSES and FORCE_INSTANTIATE")
ENDIF(ok EQUAL 0)
ENDIF("${ARGC}" EQUAL 3)
IF("${ARGC}" GREATER 3)
MESSAGE(SEND_ERROR "Too many arguments")
ENDIF("${ARGC}" GREATER 3)
SET(WRAPPER_CLASS "${class}")
SET(WRAPPER_SWIG_NAME "${swig_name}")
# clear the wrap parameters
SET(WRAPPER_TEMPLATES)
ENDMACRO(WRAP_NAMED_CLASS)
MACRO(WRAP_NON_TEMPLATE_CLASS class)
# Similar to WRAP_CLASS in that it generates typedefs for CableSwig input.
# However, since no templates need to be declared, there's no need for
# WRAP_CLASS ... (declare templates) .. END_WRAP_CLASS. Instead
# WRAP_NON_TEMPLATE_CLASS takes care of it all.
# A fully-qualified 'class' parameter is required as above. The swig name for
# this class is generated as in WRAP_CLASS.
# Lastly, this class takes an optional 'wrap method' parameter. Valid values are:
# POINTER and POINTER_WITH_SUPERCLASS.
WRAP_CLASS("${class}" ${ARGN})
ADD_ONE_TYPEDEF("${WRAPPER_WRAP_METHOD}" "${WRAPPER_CLASS}" "${WRAPPER_SWIG_NAME}")
ENDMACRO(WRAP_NON_TEMPLATE_CLASS class)
MACRO(WRAP_NAMED_NON_TEMPLATE_CLASS class swig_name)
# Similar to WRAP_NAMED_CLASS in that it generates typedefs for CableSwig input.
# However, since no templates need to be declared, there's no need for
# WRAP_CLASS ... (declare templates) .. END_WRAP_CLASS. Instead
# WRAP_NAMED_NON_TEMPLATE_CLASS takes care of it all.
# A fully-qualified 'class' parameter is required as above. The swig name for
# this class is provided by the second parameter.
# Lastly, this class takes an optional 'wrap method' parameter. Valid values are:
# POINTER and POINTER_WITH_SUPERCLASS.
WRAP_NAMED_CLASS("${class}" "${swig_name}" ${ARGN})
ADD_ONE_TYPEDEF("${WRAPPER_WRAP_METHOD}" "${WRAPPER_CLASS}" "${WRAPPER_SWIG_NAME}")
ENDMACRO(WRAP_NAMED_NON_TEMPLATE_CLASS class)
MACRO(WRAP_INCLUDE include_file)
# Add a header file to the list of files to be #included in the final
# cxx file. This list is actually processed in WRITE_WRAP_CXX.
#
# Global vars used: WRAPPER_INCLUDE_FILES
# Global vars modified: WRAPPER_INCLUDE_FILES
SET(already_included 0)
FOREACH(included ${WRAPPER_INCLUDE_FILES})
IF("${include_file}" STREQUAL "${included}")
SET(already_included 1)
ENDIF("${include_file}" STREQUAL "${included}")
ENDFOREACH(included)
IF(NOT already_included)
# include order IS important. Default values must be before the other ones
SET(WRAPPER_INCLUDE_FILES
${WRAPPER_INCLUDE_FILES}
${include_file}
)
ENDIF(NOT already_included)
ENDMACRO(WRAP_INCLUDE)
MACRO(END_WRAP_CLASS)
# Parse through the list of WRAPPER_TEMPLATES set up by the macros at the bottom
# of this file, turning them into proper C++ type definitions suitable for
# input to CableSwig. The C++ definitions are stored in WRAPPER_TYPEDEFS.
#
# Global vars used: WRAPPER_CLASS WRAPPER_WRAP_METHOD WRAPPER_TEMPLATES WRAPPER_SWIG_NAME
# Global vars modified: WRAPPER_TYPEDEFS
IF("${WRAPPER_TEMPLATES}" STREQUAL "")
# display a warning if the class is empty
MESSAGE("Warning: No template declared for ${WRAPPER_CLASS}. Perhaps should you turn on more WRAP_* options?")
ENDIF("${WRAPPER_TEMPLATES}" STREQUAL "")
# the regexp used to get the values separated by a #
SET(sharp_regexp "([0-9A-Za-z_]*)[ ]*#[ ]*(.*)")
FOREACH(wrap ${WRAPPER_TEMPLATES})
STRING(REGEX REPLACE "${sharp_regexp}" "\\1" mangled_suffix "${wrap}")
STRING(REGEX REPLACE "${sharp_regexp}" "\\2" template_params "${wrap}")
ADD_ONE_TYPEDEF("${WRAPPER_WRAP_METHOD}" "${WRAPPER_CLASS}" "${WRAPPER_SWIG_NAME}${mangled_suffix}" "${template_params}")
ENDFOREACH(wrap)
ENDMACRO(END_WRAP_CLASS)
MACRO(ADD_ONE_TYPEDEF wrap_method wrap_class swig_name)
# Add one typedef to WRAPPER_TYPEDEFS
# 'wrap_method' is the one of the valid WRAPPER_WRAP_METHODS from WRAP_CLASS,
# 'wrap_class' is the fully-qualified C++ name of the class
# 'swig_name' is what the swigged class should be called
# The optional last argument is the template parameters that should go between
# the < > brackets in the C++ template definition.
# Only pass 3 parameters to wrap a non-templated class
#
# Global vars used: none
# Global vars modified: WRAPPER_TYPEDEFS
# get the base C++ class name (no namespaces) from wrap_class:
STRING(REGEX REPLACE "(.*::)" "" base_name "${wrap_class}")
SET(wrap_pointer 0)
SET(template_parameters "${ARGV3}")
IF(template_parameters)
SET(full_class_name "${wrap_class}< ${template_parameters} >")
ELSE(template_parameters)
SET(full_class_name "${wrap_class}")
ENDIF(template_parameters)
# Add a typedef for the class. We have this funny looking full_name::base_name
# thing (it expands to, for example "typedef itk::Foo<baz, 2>::Foo"), to
# trick gcc_xml into creating code for the class. If we left off the trailing
# base_name, then gcc_xml wouldn't see the typedef as a class instantiation,
# and thus wouldn't create XML for any of the methods, etc.
IF("${wrap_method}" MATCHES "FORCE_INSTANTIATE")
SET(typedefs "typedef ${full_class_name} ${swig_name}")
# add a peace of code to for type instantiation
SET(WRAPPER_FORCE_INSTANTIATE "${WRAPPER_FORCE_INSTANTIATE} sizeof(${swig_name});\n")
ELSE("${wrap_method}" MATCHES "FORCE_INSTANTIATE")
SET(typedefs "typedef ${full_class_name}::${base_name} ${swig_name}")
ENDIF("${wrap_method}" MATCHES "FORCE_INSTANTIATE")
IF("${wrap_method}" MATCHES "POINTER")
# add a pointer typedef if we are so asked
SET(typedefs ${typedefs} "typedef ${full_class_name}::Pointer::SmartPointer ${swig_name}_Pointer")
ENDIF("${wrap_method}" MATCHES "POINTER")
IF("${wrap_method}" MATCHES "SUPERCLASS")
SET(typedefs ${typedefs} "typedef ${full_class_name}::Superclass::Self ${swig_name}_Superclass")
SET(typedefs ${typedefs} "typedef ${full_class_name}::Superclass::Pointer::SmartPointer ${swig_name}_Superclass_Pointer")
ENDIF("${wrap_method}" MATCHES "SUPERCLASS")
IF("${wrap_method}" MATCHES "2_SUPERCLASSES")
SET(typedefs ${typedefs} "typedef ${full_class_name}::Superclass::Superclass::Self ${swig_name}_Superclass_Superclass")
SET(typedefs ${typedefs} "typedef ${full_class_name}::Superclass::Superclass::Pointer::SmartPointer ${swig_name}_Superclass_Superclass_Pointer")
ENDIF("${wrap_method}" MATCHES "2_SUPERCLASSES")
# insert a blank line to separate the classes
SET(WRAPPER_TYPEDEFS "${WRAPPER_TYPEDEFS}\n")
FOREACH(typedef ${typedefs})
SET(WRAPPER_TYPEDEFS "${WRAPPER_TYPEDEFS} ${typedef};\n")
ENDFOREACH(typedef)
# Note: if there's no template_parameters set, this will just pass an empty
# list as the template_params parameter of LANGUAGE_SUPPORT_ADD_CLASS, as required
# in non-template cases.
LANGUAGE_SUPPORT_ADD_CLASS("${base_name}" "${wrap_class}" "${swig_name}" "${template_parameters}")
IF("${wrap_method}" MATCHES "POINTER")
LANGUAGE_SUPPORT_ADD_CLASS("SmartPointer" "itk::SmartPointer" "${swig_name}_Pointer" "${full_class_name}")
ENDIF("${wrap_method}" MATCHES "POINTER")
ENDMACRO(ADD_ONE_TYPEDEF)
################################################################################
# Macros which cause one or more template instantiations to be added to the
# WRAPPER_TEMPLATES list. This list is initialized by the macro WRAP_CLASS above,
# and used by the macro END_WRAP_CLASS to produce the wrap_xxx.cxx files with
# the correct templates. These cxx files serve as the CableSwig inputs.
################################################################################
MACRO(WRAP_TEMPLATE name types)
# This is the fundamental macro for adding a template to be wrapped.
# 'name' is a mangled suffix to be added to the class name (defined in WRAP_CLASS)
# to uniquely identify this instantiation.
# 'types' is a comma-separated list of the template parameters (in C++ form),
# some common parameters (e.g. for images) are stored in variables by
# WrapBasicTypes.cmake and WrapITKTypes.cmake.
#
# The format of the WRAPPER_TEMPLATES list is a series of "name # types" strings
# (because there's no CMake support for nested lists, name and types are
# separated out from the strings with a regex).
#
# Global vars used: WRAPPER_TEMPLATES
# Global vars modified: WRAPPER_TEMPLATES
SET(WRAPPER_TEMPLATES ${WRAPPER_TEMPLATES} "${name} # ${types}")
ENDMACRO(WRAP_TEMPLATE)
###################################
# Macros for wrapping image filters
###################################
# First, a set of convenience macros for wrapping an image filter with all
# user-selected image types of a given class. These macros take a 'param_count'
# parameter which indicates how many template parameters the current image filter
# takes. The parameters are filled with the exact same image type. To wrap image
# filters which take different image types as different template parameters, use
# WRAP_IMAGE_FILTER_TYPES or WRAP_IMAGE_FILTER_COMBINATIONS.
# These macros also take an optional second parameter which is a "dimensionality
# condition" to restrict the dimensions that theis filter will be instantiated
# for. The condition can either be a single number indicating the one dimension
# allowed, a list of dimensions that are allowed (either as a single ;-delimited
# string or just a set of separate parameters), or something of the form "n+"
# (where n is a number) indicating that instantiations are allowed for dimension
# n and above.
#
# E.g., if only WRAP_unsigned_char is selected and 2- and 3-dimensional images
# are selected, then WRAP_IMAGE_FILTER_USIGN_INT(2) will create instantiations for
# filter<itk::Image<unsigned char, 2>, itk::Image<unsigned char, 2> >
# and
# filter<itk::Image<unsigned char, 3>, itk::Image<unsigned char, 3> >
MACRO(WRAP_IMAGE_FILTER_ALL_TYPES param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_ALL_TYPES}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_ALL_TYPES)
MACRO(WRAP_IMAGE_FILTER_SCALAR param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_SCALAR}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_SCALAR)
MACRO(WRAP_IMAGE_FILTER_VECTOR param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_VECTOR}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_VECTOR)
MACRO(WRAP_IMAGE_FILTER_USIGN_INT param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_USIGN_INT}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_USIGN_INT)
MACRO(WRAP_IMAGE_FILTER_SIGN_INT param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_SIGN_INT}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_SIGN_INT)
MACRO(WRAP_IMAGE_FILTER_INT param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_INT}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_INT)
MACRO(WRAP_IMAGE_FILTER_REAL param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_REAL}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_REAL)
MACRO(WRAP_IMAGE_FILTER_RGB param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_RGB}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_RGB)
MACRO(WRAP_IMAGE_FILTER_RGBA param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_RGBA}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_RGBA)
MACRO(WRAP_IMAGE_FILTER_VECTOR_REAL param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_VECTOR_REAL}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_VECTOR_REAL)
MACRO(WRAP_IMAGE_FILTER_COV_VECTOR_REAL param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_COV_VECTOR_REAL}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_COV_VECTOR_REAL)
MACRO(WRAP_IMAGE_FILTER_COMPLEX_REAL param_count)
WRAP_IMAGE_FILTER("${WRAP_ITK_COMPLEX_REAL}" ${param_count} "${ARGN}")
ENDMACRO(WRAP_IMAGE_FILTER_COMPLEX_REAL)
MACRO(WRAP_IMAGE_FILTER param_types param_count)
# WRAP_IMAGE_FILTER is a more general macro for wrapping image filters that
# need one or more image parameters of the same type. The first parameter to this
# macro is a list of image pixel types for which filter instantiations should be
# created. The second is a 'param_count' parameter which controls how many image
# template parameters are created (see above). The optional third parameter is
# a dimensionality condition (see above also).
#
# E.g. WRAP_IMAGE_FILTER("${WRAP_ITK_ALL}" 2) will create template instantiations
# of the filter for every pixel type that the user has selected.
SET(have_dim_cond OFF)
IF(NOT "${ARGN}" STREQUAL "")
SET(have_dim_cond ON)
ENDIF(NOT "${ARGN}" STREQUAL "")
FOREACH(param_type ${param_types})
SET(param_list "")
FOREACH(i RANGE 1 ${param_count})
SET(param_list ${param_list} ${param_type})
ENDFOREACH(i)
IF(have_dim_cond)
WRAP_IMAGE_FILTER_TYPES(${param_list} "${ARGN}")
ELSE(have_dim_cond)
WRAP_IMAGE_FILTER_TYPES(${param_list})
ENDIF(have_dim_cond)
ENDFOREACH(param_type)
ENDMACRO(WRAP_IMAGE_FILTER)
MACRO(WRAP_IMAGE_FILTER_COMBINATIONS)
# WRAP_IMAGE_FILTER_COMBINATIONS takes a variable number of parameters. Each
# parameter is a list of image pixel types. Filter instantiations are created
# for every combination of different pixel types in different parameters.
# A dimensionality condition may be optionally specified as the first parameter.
#
# E.g. WRAP_IMAGE_FILTER_COMBINATIONS("UC;US" "UC;US") will create:
# filter<itk::Image<unsigned char, d>, itk::Image<unsigned char, d> >
# filter<itk::Image<unsigned char, d>, itk::Image<unsigned short, d> >
# filter<itk::Image<unsigned short, d>, itk::Image<unsigned char, d> >
# filter<itk::Image<unsigned short, d>, itk::Image<unsigned short, d> >
# where 'd' is the image dimension, for each selected image dimension.
# First, store the variable args in real varables, not the macro parameters.
# Parameters can't be looked up like this: ${ARGV${num}} because they are
# textually substituted before the macro is evaluated.
SET(arg0 ${ARGV0})
SET(arg1 ${ARGV1})
SET(arg2 ${ARGV2})
SET(arg3 ${ARGV3})
SET(arg4 ${ARGV4})
SET(arg5 ${ARGV5})
SET(arg6 ${ARGV6})
SET(arg7 ${ARGV7})
SET(arg8 ${ARGV8})
SET(arg9 ${ARGV9})
DECREMENT(last_arg_number ${ARGC})
# Now see if we have a dimension condition, and if so, note it and remove it
# from the list of args that we will process later
SET(have_dim_cond OFF)
SET(last_arg "${arg${last_arg_number}}")
IF("${last_arg}" MATCHES "^[0-9]")
# We have a dimensionality condition
SET(have_dim_cond ON)
DECREMENT(last_arg_number ${last_arg_number})
ENDIF("${last_arg}" MATCHES "^[0-9]")
# Build up a list of all of the combinations of all of the elements in each
# argument. Each combinarion is stored as a #-delimited list of pixel types.
# The #-delimiter is needed because CMake can't store nested lists.
# Also note the need to check for empty lists and note invalidity if so.
SET(all_args_valid ON)
IF(NOT arg0)
SET(all_args_valid OFF)
ELSE(NOT arg0)
SET(template_combinations ${arg0})
ENDIF(NOT arg0)
FOREACH(num RANGE 1 ${last_arg_number})
SET(types "${arg${num}}")
IF(NOT types)
SET(all_args_valid OFF)
ELSE(NOT types)
SET(temp "")
FOREACH(type_list ${template_combinations})
FOREACH(type ${types})
SET(temp ${temp} "${type_list}#${type}")
ENDFOREACH(type)
ENDFOREACH(type_list)
SET(template_combinations ${temp})
ENDIF(NOT types)
ENDFOREACH(num)
IF(all_args_valid)
FOREACH(param_set ${template_combinations})
# Each param_set is a #-delimited list of pixel types. First thing, we unpack
# param_set back to a CMake list (;-delimited). Then we instantiate the filter
# for that combination of image pixel types.
STRING(REPLACE "#" ";" param_list "${param_set}")
IF(have_dim_cond)
WRAP_IMAGE_FILTER_TYPES(${param_list} "${last_arg}")
ELSE(have_dim_cond)
WRAP_IMAGE_FILTER_TYPES(${param_list})
ENDIF(have_dim_cond)
ENDFOREACH(param_set)
ENDIF(all_args_valid)
ENDMACRO(WRAP_IMAGE_FILTER_COMBINATIONS)
MACRO(WRAP_IMAGE_FILTER_TYPES)
# WRAP_IMAGE_FILTER_TYPES creates template instantiations of the current image
# filter, for all the selected dimensions (or dimensions that meet the optional
# dimensionality condition). This macro takes a variable number of arguments,
# which should correspond to the image pixel types of the images in the filter's
# template parameter list. The optional dimensionality condition should be
# placed in the first parameter.
# First, store the variable args in real varables, not the macro parameters.
# Parameters can't be looked up like this: ${ARGV${num}} because they are
# textually substituted before the macro is evaluated.
SET(arg0 ${ARGV0})
SET(arg1 ${ARGV1})
SET(arg2 ${ARGV2})
SET(arg3 ${ARGV3})
SET(arg4 ${ARGV4})
SET(arg5 ${ARGV5})
SET(arg6 ${ARGV6})
SET(arg7 ${ARGV7})
SET(arg8 ${ARGV8})
SET(arg9 ${ARGV9})
DECREMENT(last_arg_number ${ARGC})
SET(last_arg "${arg${last_arg_number}}")
IF("${last_arg}" MATCHES "^[0-9]")
# We have a dimensionality condition
FILTER_DIMS(dims ${last_arg})
DECREMENT(last_arg_number ${last_arg_number})
ELSE("${last_arg}" MATCHES "^[0-9]")
SET(dims ${WRAP_ITK_DIMS})
ENDIF("${last_arg}" MATCHES "^[0-9]")
FOREACH(d ${dims})
SET(template_params "")
SET(mangled_name "")
SET(comma "") # Don't add a comma before the first template param!
FOREACH(num RANGE 0 ${last_arg_number})
SET(type "${arg${num}}")
IF("${WRAP_ITK_VECTOR}" MATCHES "(^|;)${type}(;|$)")
# if the type is a vector type with no dimension specified, make the
# vector dimension match the image dimension.
SET(type "${type}${d}")
ENDIF("${WRAP_ITK_VECTOR}" MATCHES "(^|;)${type}(;|$)")
SET(image_type ${ITKT_I${type}${d}})
SET(mangle_type ${ITKM_I${type}${d}})
IF(NOT DEFINED image_type)
MESSAGE(FATAL_ERROR "Wrapping ${WRAPPER_CLASS}: No image type for '${type}' pixels is known.")
ENDIF(NOT DEFINED image_type)
SET(template_params "${template_params}${comma}${image_type}")
SET(mangled_name "${mangled_name}${mangle_type}")
SET(comma ", ") # now add commas after the subsequent template params
ENDFOREACH(num)
WRAP_TEMPLATE("${mangled_name}" "${template_params}")
ENDFOREACH(d)
ENDMACRO(WRAP_IMAGE_FILTER_TYPES)
MACRO(FILTER_DIMS var_name dimension_condition)
# FILTER_DIMS processes a dimension_condition and returns a list of the dimensions
# that (a) meet the condition, and (b) were selected to be wrapped. Recall
# that the condition is either a CMake list of dimensions, or a string of the
# form "n+" where n is a number.
IF("${dimension_condition}" MATCHES "^[0-9]+\\+$")
# The condition is of the form "n+". Make a list of the
# selected wrapping dims that are >= that number.
STRING(REGEX REPLACE "^([0-9]+)\\+$" "\\1" min_dim "${dimension_condition}")
DECREMENT(max_disallowed ${min_dim})
SET(${var_name} "")
FOREACH(d ${WRAP_ITK_DIMS})
IF("${d}" GREATER "${max_disallowed}")
SET(${var_name} ${${var_name}} ${d})
ENDIF("${d}" GREATER "${max_disallowed}")
ENDFOREACH(d)
ELSE("${dimension_condition}" MATCHES "^[0-9]+\\+$")
# The condition is just a list of dims. Return the intersection of these
# dims with the selected ones.
INTERSECTION(${var_name} "${dimension_condition}" "${WRAP_ITK_DIMS}")
ENDIF("${dimension_condition}" MATCHES "^[0-9]+\\+$")
ENDMACRO(FILTER_DIMS)
|