! FILE: c_interface_module.f90 ! PURPOSE: Supplement ISO-C-Binding to provide type aliases and interfaces ! to common ISO-C string functions to aid working with strings. ! AUTHOR: Joseph M. Krahn ! STATUS: Still in development. Reasonably complete, but somewhat limited testing. ! ! The idea is to provide type aliases for all ISO-C types, so that the ! Fortran interface code more explicitly defines the actual C interface. ! This should be updated to support F2008 variable-length allocatable ! strings. ! ! Entity names all have the "C_" prefix, as with ISO-C-Binding, with a ! few exceptions. ! ! Sourced from: http://fortranwiki.org/fortran/show/c_interface_module ! ! One FORALL statement reverted to a DO loop to avoid a gfortran 4.9.2 ICE ! module C_interface_module use, intrinsic :: ISO_C_Binding, & ! C type aliases for pointer derived types: C_ptr => C_ptr , & C_char_ptr => C_ptr, & C_const_char_ptr => C_ptr, & C_void_ptr => C_ptr, & C_const_void_ptr => C_ptr implicit none public !---------------------------------------------------------------------------- ! C type aliases for intrinsic type KIND parameters: ! NOTE: a C enum may not always be a standard C int integer, parameter :: C_enum = C_int ! Defining off_t is difficult, because it may depend on "LARGEFILE" selection. ! integer, parameter :: C_off_t = ?? ! C string terminator alais using the 3-letter ASCII name. ! The C_ prefix is not used because it is just an ASCII character. character(len=1,kind=C_char), parameter :: NUL = C_NULL_char ! NOTE: In C, "char" is distinct from "signed char", unlike integers. ! The plain "char" type is specific for text/string values, whereas ! "signed char" should indicate 1-byte integer data. ! ! Most ISO-C systems have wide chars "wchar_t", but Fortran compilers ! have limited support for different character kinds. UTF encoding ! adds more complexity. This should be updated as Fortran compilers ! include support for more character types. ! ! Fortran does not (yet) support unsigned types. integer, parameter :: & C_unsigned = C_int, & C_unsigned_short = C_short, & C_unsigned_long = C_long, & C_unsigned_long_long = C_long_long, & C_unsigned_char = C_signed_char, & C_ssize_t = C_size_t, & C_uint8_t = C_int8_t, & C_uint16_t = C_int16_t, & C_uint32_t = C_int32_t, & C_uint64_t = C_int64_t, & C_uint_least8_t = C_int_least8_t, & C_uint_least16_t = C_int_least16_t, & C_uint_least32_t = C_int_least32_t, & C_uint_least64_t = C_int_least64_t, & C_uint_fast8_t = C_int_fast8_t, & C_uint_fast16_t = C_int_fast16_t, & C_uint_fast32_t = C_int_fast32_t, & C_uint_fast64_t = C_int_fast64_t, & C_uintmax_t = C_intmax_t ! Note: ptrdiff_t cannot be reliably defined from other types. ! When practical, it is larger than a pointer because it benefits ! from the full unsigned range in both positive and negative directions. ! Integer versions including 'int', where the 'int' is optional: integer, parameter :: & C_short_int = C_short, & C_long_int = C_long, & C_long_long_int = C_long_long, & C_unsigned_int = C_unsigned, & C_unsigned_short_int = C_short, & C_unsigned_long_int = C_long, & C_unsigned_long_long_int = C_long_long interface C_F_string module procedure C_F_string_ptr module procedure C_F_string_chars end interface C_F_string interface F_C_string module procedure F_C_string_ptr module procedure F_C_string_chars end interface F_C_string !======================================================================= ! Some useful ISO C library string functions from ! These are based on GCC header sections marked as NAMESPACE_STD interface ! Copy N bytes of SRC to DEST, no aliasing or overlapping allowed. ! extern void *memcpy (void *dest, const void *src, size_t n); function C_memcpy(dest, src, n) result(result) bind(C,name="memcpy") import C_void_ptr, C_size_t type(C_void_ptr) :: result type(C_void_ptr), value, intent(in) :: dest ! target=intent(out) type(C_void_ptr), value, intent(in) :: src ! target=intent(in) integer(C_size_t), value, intent(in) :: n end function C_memcpy ! Copy N bytes of SRC to DEST, guaranteeing correct behavior for overlapping strings. !extern void *memmove (void *dest, const void *src, size_t n) function C_memmove(dest, src, n) result(result) bind(C,name="memmove") import C_void_ptr, C_size_t type(C_void_ptr) :: result type(C_void_ptr), value, intent(in) :: dest ! target=intent(out) type(C_void_ptr), value, intent(in) :: src integer(C_size_t), value, intent(in) :: n end function C_memmove ! Set N bytes of S to C. !extern void *memset (void *s, int c, size_t n) function C_memset(s, c, n) result(result) bind(C,name="memset") import C_void_ptr, C_int, C_size_t type(C_void_ptr) :: result type(C_void_ptr), value, intent(in) :: s ! target=intent(out) integer(C_int), value, intent(in) :: c integer(C_size_t), value, intent(in) :: n end function C_memset ! Compare N bytes of S1 and S2. !extern int memcmp (const void *s1, const void *s2, size_t n) pure function C_memcmp(s1, s2, n) result(result) bind(C,name="memcmp") import C_int, C_void_ptr, C_size_t integer(C_int) :: result type(C_void_ptr), value, intent(in) :: s1 type(C_void_ptr), value, intent(in) :: s2 integer(C_size_t), value, intent(in) :: n end function C_memcmp ! Search N bytes of S for C. !extern void *memchr (const void *s, int c, size_t n) pure function C_memchr(s, c, n) result(result) bind(C,name="memchr") import C_void_ptr, C_int, C_size_t type(C_void_ptr) :: result type(C_void_ptr), value, intent(in) :: s integer(C_int), value, intent(in) :: c integer(C_size_t), value, intent(in) :: n end function C_memchr ! Copy SRC to DEST. !extern char *strcpy (char *dest, const char *src) function C_strcpy(dest, src) result(result) bind(C,name="strcpy") import C_char_ptr, C_size_t type(C_char_ptr) :: result type(C_char_ptr), value, intent(in) :: dest ! target=intent(out) type(C_char_ptr), value, intent(in) :: src end function C_strcpy ! Copy no more than N characters of SRC to DEST. !extern char *strncpy (char *dest, const char *src, size_t n) function C_strncpy(dest, src, n) result(result) bind(C,name="strncpy") import C_char_ptr, C_size_t type(C_char_ptr) :: result type(C_char_ptr), value, intent(in) :: dest ! target=intent(out) type(C_char_ptr), value, intent(in) :: src integer(C_size_t), value, intent(in) :: n end function C_strncpy ! Append SRC onto DEST. !extern char *strcat (char *dest, const char *src) function C_strcat(dest, src) result(result) bind(C,name="strcat") import C_char_ptr, C_size_t type(C_char_ptr) :: result type(C_char_ptr), value, intent(in) :: dest ! target=intent(out) type(C_char_ptr), value, intent(in) :: src end function C_strcat ! Append no more than N characters from SRC onto DEST. !extern char *strncat (char *dest, const char *src, size_t n) function C_strncat(dest, src, n) result(result) bind(C,name="strncat") import C_char_ptr, C_size_t type(C_char_ptr) :: result type(C_char_ptr), value, intent(in) :: dest ! target=intent(out) type(C_char_ptr), value, intent(in) :: src integer(C_size_t), value, intent(in) :: n end function C_strncat ! Compare S1 and S2. !extern int strcmp (const char *s1, const char *s2) pure function C_strcmp(s1, s2) result(result) bind(C,name="strcmp") import C_int, C_char_ptr, C_size_t integer(C_int) :: result type(C_char_ptr), value, intent(in) :: s1 type(C_char_ptr), value, intent(in) :: s2 end function C_strcmp ! Compare N characters of S1 and S2. !extern int strncmp (const char *s1, const char *s2, size_t n) pure function C_strncmp(s1, s2, n) result(result) bind(C,name="strncmp") import C_int, C_char_ptr, C_size_t integer(C_int) :: result type(C_char_ptr), value, intent(in) :: s1 type(C_char_ptr), value, intent(in) :: s2 integer(C_size_t), value, intent(in) :: n end function C_strncmp ! Return the length of S. !extern size_t strlen (const char *s) pure function C_strlen(s) result(result) bind(C,name="strlen") import C_char_ptr, C_size_t integer(C_size_t) :: result type(C_char_ptr), value, intent(in) :: s !character(len=*), intent(in) end function C_strlen end interface ! End of !========================================================================= ! Standard ISO-C malloc routines: interface ! void *calloc(size_t nmemb, size_t size); type(C_void_ptr) function C_calloc(nmemb, size) bind(C,name="calloc") import C_void_ptr, C_size_t integer(C_size_t), value, intent(in) :: nmemb, size end function C_calloc ! void *malloc(size_t size); type(C_void_ptr) function C_malloc(size) bind(C,name="malloc") import C_void_ptr, C_size_t integer(C_size_t), value, intent(in) :: size end function C_malloc ! void free(void *ptr); subroutine C_free(ptr) bind(C,name="free") import C_void_ptr type(C_void_ptr), value, intent(in) :: ptr end subroutine C_free ! void *realloc(void *ptr, size_t size); type(C_void_ptr) function C_realloc(ptr,size) bind(C,name="realloc") import C_void_ptr, C_size_t type(C_void_ptr), value, intent(in) :: ptr integer(C_size_t), value, intent(in) :: size end function C_realloc end interface interface assignment(=) module procedure F_string_assign_C_string end interface assignment(=) !========================================================================== contains ! HACK: For some reason, C_associated was not defined as pure. pure logical function C_associated_pure(ptr) result(associated) type(C_ptr), intent(in) :: ptr integer(C_intptr_t) :: iptr iptr = transfer(ptr,iptr) associated = (iptr /= 0) end function C_associated_pure ! Set a fixed-length Fortran string to the value of a C string. subroutine F_string_assign_C_string(F_string, C_string) character(len=*), intent(out) :: F_string type(C_ptr), intent(in) :: C_string character(len=1,kind=C_char), pointer :: p_chars(:) integer :: i if (.not. C_associated(C_string) ) then F_string = ' ' else call C_F_pointer(C_string,p_chars,[huge(0)]) i=1 do while(p_chars(i)/=NUL .and. i<=len(F_string)) F_string(i:i) = p_chars(i) i=i+1 end do if (i