@@ -314,3 +314,194 @@ function(install_rust_static_library TARGET)
314314 DESTINATION ${ARG_INSTALL_DIR}
315315 )
316316endfunction ()
317+
318+ # This function creates C++ bindings using the [cxx] crate.
319+ #
320+ # Original function found here: https://github.com/corrosion-rs/corrosion/blob/master/cmake/Corrosion.cmake#L1390
321+ # Simplified for use as part of RustStaticLibrary module. License below.
322+ #
323+ # MIT License
324+ #
325+ # Copyright (c) 2018 Andrew Gaspar
326+ #
327+ # Permission is hereby granted, free of charge, to any person obtaining a copy
328+ # of this software and associated documentation files (the "Software"), to deal
329+ # in the Software without restriction, including without limitation the rights
330+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
331+ # copies of the Software, and to permit persons to whom the Software is
332+ # furnished to do so, subject to the following conditions:
333+ #
334+ # The above copyright notice and this permission notice shall be included in all
335+ # copies or substantial portions of the Software.
336+ #
337+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
338+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
339+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
340+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
341+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
342+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
343+ # SOFTWARE.
344+ #
345+ # The rules approximately do the following:
346+ # - Check which version of `cxx` the Rust crate depends on.
347+ # - Check if the exact same version of `cxxbridge-cmd` is installed
348+ # - If not, create a rule to build the exact same version of `cxxbridge-cmd`.
349+ # - Create rules to run `cxxbridge` and generate
350+ # - The `rust/cxx.h` header
351+ # - A header and source file for the specified CXX_BRIDGE_FILE.
352+ # - The generated sources (and header include directories) are added to the
353+ # `${TARGET}` CMake library target.
354+ #
355+ # ```cmake
356+ # rust_cxx_bridge(<TARGET> <CXX_BRIDGE_FILE> [CRATE <CRATE_NAME>])
357+ # ```
358+ #
359+ # Parameters:
360+ # - TARGET:
361+ # Name of the target name. The target that the bridge will be included with.
362+ # - CXX_BRIDGE_FILE:
363+ # Name of the file that include the cxxbridge (e.g., "src/ffi.rs").
364+ # - CRATE_NAME:
365+ # Name of the crate. This parameter is optional. If unspecified, it will
366+ # fallback to `${TARGET}`.
367+ #
368+ function (rust_cxx_bridge TARGET CXX_BRIDGE_FILE)
369+ fb_cmake_parse_args(ARG "" "CRATE" "" "${ARGN} " )
370+
371+ if (DEFINED ARG_CRATE)
372+ set (crate_name "${ARG_CRATE} " )
373+ else ()
374+ set (crate_name "${TARGET} " )
375+ endif ()
376+
377+ execute_process (
378+ COMMAND "${CARGO_COMMAND} " tree -i cxx --depth=0
379+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
380+ RESULT_VARIABLE cxx_version_result
381+ OUTPUT_VARIABLE cxx_version_output
382+ )
383+
384+ if (NOT "${cxx_version_result} " EQUAL "0" )
385+ message (FATAL_ERROR "Crate ${crate_name} does not depend on cxx." )
386+ endif ()
387+ if (cxx_version_output MATCHES "cxx v([0-9]+.[0-9]+.[0-9]+)" )
388+ set (cxx_required_version "${CMAKE_MATCH_1} " )
389+ else ()
390+ message (
391+ FATAL_ERROR
392+ "Failed to parse cxx version from cargo tree output: `cxx_version_output`" )
393+ endif ()
394+
395+ # First check if a suitable version of cxxbridge is installed
396+ find_program (INSTALLED_CXXBRIDGE cxxbridge PATHS "$ENV{HOME} /.cargo/bin/" )
397+ mark_as_advanced (INSTALLED_CXXBRIDGE)
398+ if (INSTALLED_CXXBRIDGE)
399+ execute_process (
400+ COMMAND "${INSTALLED_CXXBRIDGE} " --version
401+ OUTPUT_VARIABLE cxxbridge_version_output
402+ )
403+ if (cxxbridge_version_output MATCHES "cxxbridge ([0-9]+.[0-9]+.[0-9]+)" )
404+ set (cxxbridge_version "${CMAKE_MATCH_1} " )
405+ else ()
406+ set (cxxbridge_version "" )
407+ endif ()
408+ endif ()
409+
410+ set (cxxbridge "" )
411+ if (cxxbridge_version)
412+ if (cxxbridge_version VERSION_EQUAL cxx_required_version)
413+ set (cxxbridge "${INSTALLED_CXXBRIDGE} " )
414+ if (NOT TARGET "cxxbridge_v${cxx_required_version} " )
415+ # Add an empty target.
416+ add_custom_target ("cxxbridge_v${cxx_required_version} " )
417+ endif ()
418+ endif ()
419+ endif ()
420+
421+ # No suitable version of cxxbridge was installed,
422+ # so use custom target to install correct version.
423+ if (NOT cxxbridge)
424+ if (NOT TARGET "cxxbridge_v${cxx_required_version} " )
425+ add_custom_command (
426+ OUTPUT
427+ "${CMAKE_BINARY_DIR} /cxxbridge_v${cxx_required_version} /bin/cxxbridge"
428+ COMMAND
429+ "${CMAKE_COMMAND} " -E make_directory
430+ "${CMAKE_BINARY_DIR} /cxxbridge_v${cxx_required_version} "
431+ COMMAND
432+ "${CMAKE_COMMAND} " -E remove -f "${CMAKE_CURRENT_SOURCE_DIR} /Cargo.lock"
433+ COMMAND
434+ "${CARGO_COMMAND} " install cxxbridge-cmd
435+ --version "${cxx_required_version} "
436+ --root "${CMAKE_BINARY_DIR} /cxxbridge_v${cxx_required_version} "
437+ --quiet
438+ # todo: use --target-dir to potentially reuse artifacts
439+ COMMENT "Installing cxxbridge (version ${cxx_required_version} )"
440+ )
441+ add_custom_target (
442+ "cxxbridge_v${cxx_required_version} "
443+ DEPENDS
444+ "${CMAKE_BINARY_DIR} /cxxbridge_v${cxx_required_version} /bin/cxxbridge"
445+ )
446+ endif ()
447+ set (
448+ cxxbridge
449+ "${CMAKE_BINARY_DIR} /cxxbridge_v${cxx_required_version} /bin/cxxbridge"
450+ )
451+ endif ()
452+
453+ add_library (${crate_name} STATIC )
454+ target_include_directories (
455+ ${crate_name}
456+ PUBLIC
457+ $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR} >
458+ $<INSTALL_INTERFACE:include >
459+ )
460+
461+ file (MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR} /rust" )
462+ add_custom_command (
463+ OUTPUT "${CMAKE_CURRENT_BINARY_DIR} /rust/cxx.h"
464+ COMMAND "${cxxbridge} "
465+ --header --output "${CMAKE_CURRENT_BINARY_DIR} /rust/cxx.h"
466+ DEPENDS "cxxbridge_v${cxx_required_version} "
467+ COMMENT "Generating rust/cxx.h header"
468+ )
469+
470+ get_filename_component (filename_component ${CXX_BRIDGE_FILE} NAME )
471+ get_filename_component (directory_component ${CXX_BRIDGE_FILE} DIRECTORY )
472+ set (directory "" )
473+ if (directory_component)
474+ set (directory "${directory_component} " )
475+ endif ()
476+
477+ set (cxx_header ${directory} /${filename_component} .h)
478+ set (cxx_source ${directory} /${filename_component} .cc)
479+ set (rust_source_path "${CMAKE_CURRENT_SOURCE_DIR} /${CXX_BRIDGE_FILE} " )
480+
481+ file (
482+ MAKE_DIRECTORY
483+ "${CMAKE_CURRENT_BINARY_DIR} /${directory_component} "
484+ )
485+
486+ add_custom_command (
487+ OUTPUT
488+ "${CMAKE_CURRENT_BINARY_DIR} /${cxx_header} "
489+ "${CMAKE_CURRENT_BINARY_DIR} /${cxx_source} "
490+ COMMAND
491+ ${cxxbridge} ${rust_source_path}
492+ --header --output "${CMAKE_CURRENT_BINARY_DIR} /${cxx_header} "
493+ COMMAND
494+ ${cxxbridge} ${rust_source_path}
495+ --output "${CMAKE_CURRENT_BINARY_DIR} /${cxx_source} "
496+ --include "${cxx_header} "
497+ DEPENDS "cxxbridge_v${cxx_required_version} " "${rust_source_path} "
498+ COMMENT "Generating cxx bindings for crate ${crate_name} "
499+ )
500+
501+ target_sources (${crate_name}
502+ PRIVATE
503+ "${CMAKE_CURRENT_BINARY_DIR} /${cxx_header} "
504+ "${CMAKE_CURRENT_BINARY_DIR} /rust/cxx.h"
505+ "${CMAKE_CURRENT_BINARY_DIR} /${cxx_source} "
506+ )
507+ endfunction ()
0 commit comments