Releases

Notes to help migrate between releases.

Unreleased

v0.14.0

  • This is the last version to support Python 2.7. Future minimum will be 3.7.

New Features

  • Move default statements and helpers to the file fc-statements.json. See Statements and Helpers. This makes it possible to change wrapper code by editing a JSON file instead of the Python source.

  • Most uses of RuntimeError have been replace by error handling which will report as many errors as possible before quiting.

  • Remove the assumption that there is only one template argument for types. This worked for std::vector but is now generalized. This required adding the format field targs which is a list of objects for template arguments. Used in the format fields as {targs[0].cxx_type} to access the type of the first template argument. Option typemap_sgroup allows futher control of which statement group is selected to use with a type. Function and class declarations always allowed multiple template arguments.

  • C wrappers can now be generated independent of Fortran wrappers instead of just as a side effect of creating Fortran Wrappers. Shroud will not generate a C wrapper (option c_wrap=True) when language is c.

  • Support recursive structs. Allows trees to be build in structs.

  • Add getter/setter for struct pointer fields in a struct.

  • Parse multiple declarators for a declaration in a struct. ex. struct name {int i, j;};

  • Add format fields F_name_typedef and C_name_typedef to name a typedef for Fortran or C.

  • Add intent attribute to a function’s PASS argument. If the C++ function is const set to intent(IN). Otherwise, set to ``intent(INOUT).

  • Added attribute +operator(assignment) to add a Fortran assignment overload.

  • Added attribute +constfunc to tell Shroud a member function is const even if the const keyword is not used. This will ensure that the shadow argument is intent(in).

  • Added attribute +funptr. Uses type(C_FUNPTR) for function pointer arguments.

  • Added fmtdict field to Fortran and C statement groups. Similar to fmtdict already in the Python statement groups. It allows format fields to be set explicitly in the statement group to override the any defaults.

  • Added options to control default behavior for dereferencing pointers. These options can be used instead of explicitly setting deref attribute to change the default on each decl lines: F_deref_arg_array, F_deref_arg_character, F_deref_arg_implied_array, F_deref_arg_scalar, F_deref_func_array, F_deref_func_character, F_deref_func_implied_array, F_deref_func_scalar.

Changes to YAML input

  • Renamed the +free_pattern attribute to +destructor_name. The values is looked up in the new destructors section of the YAML file instead of the patterns section. Current use of +free_pattern is still supported but will create a warning message in the logfile. The old usage will be removed in a future version.

declarations:
- decl: char *getName() +destructor_name(free_getName)

destructors:
   free_getName: |
      decref(ptr);
  • Create an abstract interface for typedef statements which are function pointers. Previously, only function pointers arguments were supported.

  • Attribute +allocatable is now +deref(allocatable). This avoids setting +allocatable inconsistent with +deref.

  • Rename some fields in Statements to allow C and Fortran entries to exist in the same group by consistently using a c_, i_ or f_ prefix. This allows a single group to contains all the fields used for more complex conversions making it easier to follow the flow.

    This will change the name of fields in fstatements in an input YAML file. These are used to changed the default behavior of a wrapper.

    Shroud will print a warning and use the new name. To remove the warning, update the YAML file.

c statements

Old Name

New Name

c_arg_decl

c_prototype

c_helper

helper

arg_call

c_arg_call

pre_call

c_pre_call

call

c_call

post_call

c_post_call

final

c_final

ret

c_return

temps

c_temps

local

c_local

f_arg_decl

i_dummy_decl

f_result_decl

i_result_decl

f_result_var

i_result_var

f_module

i_module

f_import

i_import

f statements

Old Name

New Name

need_wrapper

f_need_wrapper

arg_name

f_dummy_arg

arg_decl

f_dummy_decl

arg_c_call

f_arg_call

declare

f_local_decl

pre_call

f_pre_call

call

f_call

post_call

f_post_call

result

f_result_var

temps

f_temps

local

f_local

f_helper

helper

fstatements:
  c:
    return_type: long
    ret:
    - return SHT_arg_cdesc->size;
  c_buf:
    return_type: long
    ret:
    - return SHT_arg_cdesc->size;
  f:
    result: num
    f_module:
      iso_c_binding: ["C_LONG"]
    declare:
    -  "integer(C_LONG) :: {F_result}"
    call:
    -  "{F_result} = {F_C_call}({F_arg_c_call})"

is now:

fstatements:
  c:
    c_return_type: long
    c_return:
    - return SHT_arg_cdesc->size;
    i_result_var: num
  f:
    c_return_type: long
    c_return:
    - return SHT_arg_cdesc->size;
    i_result_var: num
    f_result_var: num
    f_module:
      iso_c_binding: ["C_LONG"]
    f_dummy_decl:
    -  "integer(C_LONG) :: {f_result_var}"
    f_call:
    -  "{f_result_var} = {f_call_function}({F_arg_c_call})"
  • Likewise, some fields were renamed for Typemaps.

The f_c_ prefix was changed to i_. First, to have a consistent single character prefix. Next, to avoid finding f_c_ when searching for c_.

Old Name

New Name

f_c_module

i_module

f_c_module_line

i_module

f_c_type

i_type

none

i_kind

none

i_module_name

  • Renamed format fields

Old Name

New Name

f_type_module

typemap.f_module_name

F_pure_clause

f_pure_clause

F_result_clause

f_result_clause

F_result

f_result_var

F_result_ptr

removed Use a f_local variable.

F_C_arguments

i_arguments

F_C_call

f_call_function

F_C_name

i_name_function

F_C_subprogram

i_subprogram

F_C_pure_clause

i_pure_clause

F_C_result_clause

i_result_clause

none

i_kind

none

i_module_name

none

i_suffix

f_array_allocate

gen.f_allocate_shape

f_array_shape

gen.c_f_pointer_shape

f_cdesc_shape

gen.f_cdesc_shape

cfi_type

typemap.cfi_type

sh_type

typemap.sh_type

size

f_size

  • Renamed option fields

Old Name

New Name

F_C_name_template

i_name_function_template

F_flatten_namespace

flatten_namespace

  • Added format field i_suffix. Used in format fields C_name_template and i_name_file_template to allow Fortran wrapper to call a C function with additional mangling such as *C_cfi_suffix and C_bufferify_suffix. Previously this was appended directly to format field *function_suffix. If C_name_template or i_name_function_template are explicitly set in the YAML file then *i_suffix should be included in the value.

  • Removed format field F_string_result_as_arg. This modified the wrapper to treat the char * function result as an argument. The wrapper would then copy into the CHARACTER argument provided in the call. This functionality has been expanded to support the deref attribute. The argument may now be a ALLOCATABLE, POINTER or type(C_PTR) using +deref(allocatable), +deref(pointer), or *+deref(raw). The option F_result_as_arg is the name of the argument if none is provided with the funcarg attribute. The original YAML needs to be changed to the second block.

- decl: const char *getConstCharPtrAsCopyArg()
  format:
    F_string_result_as_arg: output
- decl: const char *getConstCharPtrAsCopyArg() +funcarg(output)+deref(copy)
option:
  F_result_as_arg: output
- decl: const char *getConstCharPtrAsCopyArg() +funcarg+deref(copy)
  • The c_helper and f_helper statement fields are merged into helper. A helper may have a C and Fortran part. This required the helper to be listed twice. Now it only needs to be listed once. The helpers may have a c_fmtname and f_fmtname field that is used to identify the C and Fortran functions created by the helper. The format fields are used in the statement group. For example, the statement will call the function added by the helper.

  • Renamed format fields hnamefunc. These fields were added from the statement fields helper (was c_helper and f_helper), each a blank delimited list of names. A format field was added for each name with a 0-based suffix corresponding to the position in the list. Now, the format fields have the prefix of c_helper_ or f_helper_ followed by the helpers name. For example, f_helper_copy_array. This makes it easier to match the corresponding helper and will help when using statement mixin groups since the order of names will no longer matter.

  • Changed statement fields helper (was c_helper and f_helper) from a blank delimited list, into a YAML list. If they are used in a fstatements section of a YAML file, they will need to be changed. This makes them more consistent with f_temps and c_temps which are also list of names.

    For example, from generic.yaml

-      c_helper: ShroudTypeDefines
+      helper:
+      - ShroudTypeDefines
  • Renamed some helpers to have more consistent names. Now the helpers and the function it defines may have different names. Use snake case for all helpers names (before about half used camel case). Continue to use camel case for function names. Remove Shroud from the helper name since that’s redundant. Rename some functions from Str to Char to make clear when it’s dealing with C++ types char vs std::string.

f statements

Old Name

New Name

ShroudStrAlloc

char_alloc

ShroudStrArrayAlloc

char_array_alloc

ShroudStrArrayFree

char_array_free

ShroudStrBlankFill

char_blank_fill

ShroudStrCopy

char_copy

ShroudStrFree

char_free

ShroudStrToArray

string_to_cdesc

ShroudTypeDefines

type_defines

  • Renamed some format fields to allow more control of argument names in wrappers. The C wrapper continues to use c_var and cxx_var. The Fortran wrapper continues to use f_var, but if a different argument is needed to be passed to the C wrapper it is now fc_var instead of c_var. The interface uses i_var instead of reusing c_var. Remove format field F_C_var since it is redundant with i_var.

  • Changes for enumerations

    • Add option F_enum_type to define the kind of the Fortran parameter for the enumeration values.

    • Renamed format field C_enum to C_enum_type. Likewise, option C_enum_template is now C_enum_type_template.

    • Added option F_name_enum_template to compute format field F_name_enum. Define format fields C_name_api and F_name_api to replace format fields enum_lower and enum_upper.

    • Replaced format fields enum_member_lower and enum_member_upper with C_name_api and F_name_api (controlled by options C_API_case and F_API_case.

    • The Fortran wrapper creates an integer, parameter for the kind of the enumeration parameters.

  • The deref attribute is no longer applied to the C wrapper. When the function result had +deref(scalar) on a pointer result, a scalar was returned. The C wrapper will now return a pointer giving it the same prototype as the C++ library function.

  • Moved the C wrapper’s C_declarations splicer earlier in the file before any other generated splicer code. It is intended to contain code which is needed by any following splicers. It was being written before the enum and typedef splicers, which was too late.

Fixed

  • Fixed the case of mixing default arguments with fortran_generic. The fortran_generic will restore arguments in the Fortran wrapper which were being trimmed by default arguments.

  • Define the typemap f_cast field for typedefs to use the typedef name instead of the type name. This make the use of the typedef in the Fortran wrapper explicit.

    From example, tutorial.yaml declaration typedef int EnumTypeID changes from int({f_var}, C_INT) to int({f_var}, enum_type_id).

  • Changed Fortran wrapper with argument similar to char **arg+deref(allocatable)+dimension(nstrs)+intent(out)+len(20). The actual argument must now be declared as CHARACTER(len=:) instead of CHARACTER(len=20). This is required to pass the argument directly to C using CFI which will allocate the argument. Removed the need for the f_char_len format field.

  • Fix memory management errors by overloading the assignment operator to keep track of memory ownership. Shroud now produced code similar what swig-fortran creates. gfortran 13 fixed the use of the final subroutine to be correct with respect to the standard. The previous scheme relied on the incorrect behavior which caused the shared.yaml test to fail on the use of std::shared_ptr.

    This also fixes a problem with a possible double free:

type(class1) obj0, obj1
! Test generic constructor. Allocates new memory.
obj0 = class1()
obj1 = obj0       ! Create alias
call obj1%delete
call obj0%delete  ! obj0 has already been released
  • Fixes to splicer names to use the correct namespace component.

v0.13.0

Changes

  • Some generated wrapper names have been changed to be more consistent. Added format field F_name_api. It is controlled by option F_API_case which may be set to lower, upper, underscore or preserve. Uses of format field underscore_name should be changed to F_name_api. It’s often used in name options such as F_name_impl_template and F_name_generic_template.

    Likewise, C API names are controlled by option C_name_api. The default is preserve. The previous behavior can be restored by setting option C_API_case to underscore.

    F_API_case defaults to underscore since Fortran is case insensitive. F_C_case defaults to preserve to make the C API closer to the C++ API.

  • Changed the name of C and Python function splicer to use function_name instead of underscore_name to correspond to C++ library names.

  • The C_memory_dtor_function is now written to the utility file, C_impl_utility. This function contains code to delete memory from shadow classes. Previously it was written to file C_impl_filename. In addition, some helper functions are also written into this file. This may require changes to Makefiles to ensure this file is compiled.

  • A single capsule derived type is created in the Fortran wrapper instead of one per class. This is considered an implementation detail and a user of the wrapper will not access them directly. However, it may show up in splicer code. It is used to pass values from the Fortran wrapper to the C wrapper. The old type names may of been referenced in explicit splicer code. In that case the name will need to be changed. The format field F_capsule_data_type_class is replaced by F_capsule_data_type. The C wrapper continues to create a capsule struct for each class as a form of type safety in the C API.

  • Class instance arguments which are passed by value will now pass the shadow type by reference. This allows the addr and idtor fields to be changed if necessary by the C wrapper.

  • Replaced the additional_interfaces splicer with additional_declarations. This new splicer is outside of an interface block and can be used to add add a generic interface that could not be added to additional_interfaces. Existing additional_interfaces splicers can be converted to additional_declarations by wrapping the splicer with INTERFACE/END INTERFACE.

New Features

  • Added support for C++ class inheritance. See Class Inheritance

  • Added the ability to treat a struct as a class. See Object-oriented C

  • Added the ability to declare members of a struct on individual decl lines in the YAML file similar to how class members are defined. Before the struct was defined in a single decl:.

  • Allow structs to be templated.

  • Added the ability to declare variables using the enum keyword. C++ creates a type for each enumeration.

  • Generate generic interface which allows a scalar or array to be passed for an argument.

  • Process assumed-rank dimension attribute, dimension(..). Create a generic interface using scalar and each rank.

  • Added some support for Futher Interoperability with C. Used when option F_CFI is True (C/Fortran Interoperability).

  • Support deref(pointer) for char * and std::string functions. Requires at least gfortran 6.1.0

  • Added option F_trim_char_in. Controls where CHARACTER arguments are NULL terminated. If True then terminated in Fortran else in C.

  • Added attribute +blanknull to convert a blank Fortran string into a NULL pointer instead of a 1-d buffer with '/0'. Used with const char * arguments. This can be defaulted to True with the F_blanknull option.

  • Added file_code dictionary to input YAML file. It contains directives to add header file and USE statements into generated files. These are collated with headers and USE statements added by typemaps, statements and helpers to avoid duplication.

  • Allow typemaps with base as integer and real to be added to the input YAML file. This allows kind parameters to be defined via splicers then used by a typemap. i.e. integer(INDEXTYPE)

  • Added option C_shadow_result. If true, the C wrapper will return a pointer to the capsule holding the function result. The capsule is also passed as an argument. If false the function is void.

  • The getter for a class member function will return a Fortran pointer if the dimension attribute is added to the declaration. Likewise, the setter will expect an array of the same rank as dimension. Getter and setters will also be generated for struct fields which are pointers to native types. Option F_struct_getter_setter can be used to control their creation.

  • Added ability to add splicer to typedef declarations. For example, to use the C preprocessor to set the type of the typedef. See typedefs.yaml for an example.

  • Added support for out arguments which return a reference to a std::vector or pointer to an array of std::string.

  • Create C and Fortran wrappers for typedef statements. Before typedef was treated as an alias. typedef int TypeID would substitute integer(C_INT) for every use of TypeID in the Fortran wrapper. Now a parameter is created: integer, parameter :: type_id = C_INT. Used as: integer(type_id) :: arg.

Fixed

  • Order of header files in cxx_header is preserved in the generated code.

  • Create a generic interface even if only one decl is in the fortran_generic list.

  • generic_function now creates a C wrapper for each Fortran wrapper. This causes each Fortran interface to bind to a different C function which fixes a compile error with xlf.

  • Add generic interfaces for class methods. Generic functions where only being added to the type-bound procedures. class_generic(obj) now works instead of only obj%generic().

  • Add continuations on Fortran IMPORT statements.

  • Support an array of pointers - void **addr+rank(1).

  • Fix Fortran wrapper for intent(INOUT) for void **.

  • Promote wrap options (ex wrap_fortran) up to container when True (library, class, namespace). This allows wrap_fortran to be False at the global level and set True on a function and get a wrapper. Before a False at the global level would never attempt to do any wrapping.

  • Better support for std::vector with pointer template arguments. For examples, <const double *>.

  • Parse class, struct and enum as part of declaration. This allows typedef struct tag name to be parsed properly.

  • Create type table earlier in parse. This allows recursive structs such as struct point { struct point *next; } to be parsed.

  • Fixed issues in converting function names from CamelCase

    • Remove redundant underscore Create_Cstruct_as_class was c_create__cstruct_as_class now c_create_cstruct_as_class

    • Add missing underscore AFunction was afunction now a_function.