Skip to content

Commit 0ada9ff

Browse files
authored
Compatibility changes for SWIG-Fortran (#31)
* Replace deleted '{}' syntax in typemap attributes * Add deleted <cctypes> * Use global-namespace size_t (no change) * Update wrapper code with latest version
1 parent 82c78fc commit 0ada9ff

16 files changed

+546
-538
lines changed

include/flc_algorithm.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef int index_int;
7070

7171
// Give it a particularly named type in the Fortran proxy code.
7272
%apply int { index_int };
73-
%typemap(ftype, in={integer(INDEX_INT), intent(in)}) index_int
73+
%typemap(ftype, in="integer(INDEX_INT), intent(in)") index_int
7474
%{integer(INDEX_INT)%}
7575

7676
// Apply array-to-C translation for numeric values

include/flc_string.i

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
// Typemap to convert positions from npos -> 0 and 1-offset otherwise. Similar
2424
// to
25-
%apply int FORTRAN_INT { std::size_t POSITION };
26-
%typemap(out, noblock=1) std::size_t POSITION {
25+
%apply int FORTRAN_INT { size_t POSITION };
26+
%typemap(out, noblock=1) size_t POSITION {
2727
$result = ($1 == std::string::npos ? 0 : $1 + 1);
2828
}
2929

@@ -50,7 +50,7 @@ class string {
5050
%apply int FORTRAN_INT {size_type};
5151

5252
// - Use fortran indexing (and 0 for not found) for search
53-
%apply std::size_t POSITION {size_type find};
53+
%apply size_t POSITION {size_type find};
5454

5555
// - Allow access as an array view
5656
%apply SWIGTYPE& { string& view };
@@ -134,6 +134,10 @@ class string {
134134
}
135135
}
136136

137+
%fragment("<cctype>", "header") %{
138+
#include <cctype>
139+
%}
140+
137141
%fragment("flc_has_junk", "header",
138142
fragment="<cctype>", fragment="<algorithm>") %{
139143
SWIGINTERN bool flc_has_junk(const std::string& s, size_t pos) {

src/flc.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
! This file was automatically generated by SWIG (http://www.swig.org).
2-
! Version 4.0.2+fortran
2+
! Version 4.1.0+fortran
33
!
44
! Do not make changes to this file unless you know what you are doing--modify
55
! the SWIG interface file instead.

src/flcFORTRAN_wrap.cxx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.2+fortran
3+
* Version 4.1.0+fortran
44
*
55
* This file is not intended to be easily readable and contains a number of
66
* coding conventions designed to improve portability and efficiency. Do not make
@@ -226,7 +226,7 @@ SWIGEXPORT void SWIG_store_exception(const char* decl, int errcode, const char *
226226
if (!(EXPR)) { SWIG_exception_impl("$decl", SWIG_ValueError, MSG, RETURNNULL); }
227227

228228

229-
#define SWIGVERSION 0x040002
229+
#define SWIGVERSION 0x040100
230230
#define SWIG_VERSION SWIGVERSION
231231

232232

@@ -286,10 +286,10 @@ SWIGEXPORT const char* flc_get_serr() {
286286
#include <string>
287287

288288

289-
#include <cctype>
289+
extern "C" {
290+
290291

291292

292-
extern "C" {
293293
// Call this function before any new action
294294
SWIGEXPORT void SWIG_check_unhandled_exception_impl(const char* decl) {
295295
if (flc_ierr != 0) {

src/flc_algorithm.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
! This file was automatically generated by SWIG (http://www.swig.org).
2-
! Version 4.0.2+fortran
2+
! Version 4.1.0+fortran
33
!
44
! Do not make changes to this file unless you know what you are doing--modify
55
! the SWIG interface file instead.

src/flc_algorithmFORTRAN_wrap.cxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.2+fortran
3+
* Version 4.1.0+fortran
44
*
55
* This file is not intended to be easily readable and contains a number of
66
* coding conventions designed to improve portability and efficiency. Do not make
@@ -242,7 +242,7 @@ enum SwigMemFlags {
242242
if (!(EXPR)) { SWIG_exception_impl("$decl", SWIG_ValueError, MSG, RETURNNULL); }
243243

244244

245-
#define SWIGVERSION 0x040002
245+
#define SWIGVERSION 0x040100
246246
#define SWIG_VERSION SWIGVERSION
247247

248248

src/flc_map.f90

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
! This file was automatically generated by SWIG (http://www.swig.org).
2-
! Version 4.0.2+fortran
2+
! Version 4.1.0+fortran
33
!
44
! Do not make changes to this file unless you know what you are doing--modify
55
! the SWIG interface file instead.
@@ -110,7 +110,7 @@ function swigc_MapIntInt_size(farg1) &
110110
use, intrinsic :: ISO_C_BINDING
111111
import :: swigclasswrapper
112112
type(SwigClassWrapper), intent(in) :: farg1
113-
integer(C_LONG) :: fresult
113+
integer(C_SIZE_T) :: fresult
114114
end function
115115

116116
subroutine swigc_MapIntInt_clear(farg1) &
@@ -127,7 +127,7 @@ function swigc_MapIntInt_erase(farg1, farg2) &
127127
import :: swigclasswrapper
128128
type(SwigClassWrapper), intent(in) :: farg1
129129
integer(C_INT), intent(in) :: farg2
130-
integer(C_LONG) :: fresult
130+
integer(C_SIZE_T) :: fresult
131131
end function
132132

133133
function swigc_MapIntInt_count(farg1, farg2) &
@@ -137,7 +137,7 @@ function swigc_MapIntInt_count(farg1, farg2) &
137137
import :: swigclasswrapper
138138
type(SwigClassWrapper), intent(in) :: farg1
139139
integer(C_INT), intent(in) :: farg2
140-
integer(C_LONG) :: fresult
140+
integer(C_SIZE_T) :: fresult
141141
end function
142142

143143
function swigc_MapIntInt_insert(farg1, farg2, farg3) &
@@ -208,7 +208,7 @@ function swigc_MapStringInt_size(farg1) &
208208
use, intrinsic :: ISO_C_BINDING
209209
import :: swigclasswrapper
210210
type(SwigClassWrapper), intent(in) :: farg1
211-
integer(C_LONG) :: fresult
211+
integer(C_SIZE_T) :: fresult
212212
end function
213213

214214
subroutine swigc_MapStringInt_clear(farg1) &
@@ -226,7 +226,7 @@ function swigc_MapStringInt_erase(farg1, farg2) &
226226
import :: swigarraywrapper
227227
type(SwigClassWrapper), intent(in) :: farg1
228228
type(SwigArrayWrapper) :: farg2
229-
integer(C_LONG) :: fresult
229+
integer(C_SIZE_T) :: fresult
230230
end function
231231

232232
function swigc_MapStringInt_count(farg1, farg2) &
@@ -237,7 +237,7 @@ function swigc_MapStringInt_count(farg1, farg2) &
237237
import :: swigarraywrapper
238238
type(SwigClassWrapper), intent(in) :: farg1
239239
type(SwigArrayWrapper) :: farg2
240-
integer(C_LONG) :: fresult
240+
integer(C_SIZE_T) :: fresult
241241
end function
242242

243243
function swigc_MapStringInt_insert(farg1, farg2, farg3) &
@@ -311,7 +311,7 @@ function swigc_MapStringString_size(farg1) &
311311
use, intrinsic :: ISO_C_BINDING
312312
import :: swigclasswrapper
313313
type(SwigClassWrapper), intent(in) :: farg1
314-
integer(C_LONG) :: fresult
314+
integer(C_SIZE_T) :: fresult
315315
end function
316316

317317
subroutine swigc_MapStringString_clear(farg1) &
@@ -329,7 +329,7 @@ function swigc_MapStringString_erase(farg1, farg2) &
329329
import :: swigarraywrapper
330330
type(SwigClassWrapper), intent(in) :: farg1
331331
type(SwigArrayWrapper) :: farg2
332-
integer(C_LONG) :: fresult
332+
integer(C_SIZE_T) :: fresult
333333
end function
334334

335335
function swigc_MapStringString_count(farg1, farg2) &
@@ -340,7 +340,7 @@ function swigc_MapStringString_count(farg1, farg2) &
340340
import :: swigarraywrapper
341341
type(SwigClassWrapper), intent(in) :: farg1
342342
type(SwigArrayWrapper) :: farg2
343-
integer(C_LONG) :: fresult
343+
integer(C_SIZE_T) :: fresult
344344
end function
345345

346346
function swigc_MapStringString_insert(farg1, farg2, farg3) &
@@ -437,7 +437,7 @@ function swigf_MapIntInt_size(self) &
437437
use, intrinsic :: ISO_C_BINDING
438438
integer :: swig_result
439439
class(MapIntInt), intent(in) :: self
440-
integer(C_LONG) :: fresult
440+
integer(C_SIZE_T) :: fresult
441441
type(SwigClassWrapper) :: farg1
442442

443443
farg1 = self%swigdata
@@ -459,7 +459,7 @@ subroutine swigf_MapIntInt_erase(self, x, swig_result)
459459
class(MapIntInt), intent(in) :: self
460460
integer(C_INT), intent(in) :: x
461461
integer, intent(out), optional :: swig_result
462-
integer(C_LONG) :: fresult
462+
integer(C_SIZE_T) :: fresult
463463
type(SwigClassWrapper) :: farg1
464464
integer(C_INT) :: farg2
465465

@@ -478,7 +478,7 @@ function swigf_MapIntInt_count(self, x) &
478478
integer :: swig_result
479479
class(MapIntInt), intent(in) :: self
480480
integer(C_INT), intent(in) :: x
481-
integer(C_LONG) :: fresult
481+
integer(C_SIZE_T) :: fresult
482482
type(SwigClassWrapper) :: farg1
483483
integer(C_INT) :: farg2
484484

@@ -595,7 +595,7 @@ function swigf_MapStringInt_size(self) &
595595
use, intrinsic :: ISO_C_BINDING
596596
integer :: swig_result
597597
class(MapStringInt), intent(in) :: self
598-
integer(C_LONG) :: fresult
598+
integer(C_SIZE_T) :: fresult
599599
type(SwigClassWrapper) :: farg1
600600

601601
farg1 = self%swigdata
@@ -635,7 +635,7 @@ subroutine swigf_MapStringInt_erase(self, x, swig_result)
635635
class(MapStringInt), intent(in) :: self
636636
character(len=*), target :: x
637637
integer, intent(out), optional :: swig_result
638-
integer(C_LONG) :: fresult
638+
integer(C_SIZE_T) :: fresult
639639
type(SwigClassWrapper) :: farg1
640640
character(kind=C_CHAR), dimension(:), allocatable, target :: farg2_temp
641641
type(SwigArrayWrapper) :: farg2
@@ -655,7 +655,7 @@ function swigf_MapStringInt_count(self, x) &
655655
integer :: swig_result
656656
class(MapStringInt), intent(in) :: self
657657
character(len=*), target :: x
658-
integer(C_LONG) :: fresult
658+
integer(C_SIZE_T) :: fresult
659659
type(SwigClassWrapper) :: farg1
660660
character(kind=C_CHAR), dimension(:), allocatable, target :: farg2_temp
661661
type(SwigArrayWrapper) :: farg2
@@ -776,7 +776,7 @@ function swigf_MapStringString_size(self) &
776776
use, intrinsic :: ISO_C_BINDING
777777
integer :: swig_result
778778
class(MapStringString), intent(in) :: self
779-
integer(C_LONG) :: fresult
779+
integer(C_SIZE_T) :: fresult
780780
type(SwigClassWrapper) :: farg1
781781

782782
farg1 = self%swigdata
@@ -798,7 +798,7 @@ subroutine swigf_MapStringString_erase(self, x, swig_result)
798798
class(MapStringString), intent(in) :: self
799799
character(len=*), target :: x
800800
integer, intent(out), optional :: swig_result
801-
integer(C_LONG) :: fresult
801+
integer(C_SIZE_T) :: fresult
802802
type(SwigClassWrapper) :: farg1
803803
character(kind=C_CHAR), dimension(:), allocatable, target :: farg2_temp
804804
type(SwigArrayWrapper) :: farg2
@@ -818,7 +818,7 @@ function swigf_MapStringString_count(self, x) &
818818
integer :: swig_result
819819
class(MapStringString), intent(in) :: self
820820
character(len=*), target :: x
821-
integer(C_LONG) :: fresult
821+
integer(C_SIZE_T) :: fresult
822822
type(SwigClassWrapper) :: farg1
823823
character(kind=C_CHAR), dimension(:), allocatable, target :: farg2_temp
824824
type(SwigArrayWrapper) :: farg2

0 commit comments

Comments
 (0)