Skip to content

Commit 0d1b919

Browse files
authored
Remove autofree-rvalue from strings and other classes (#19)
1 parent ee1d8b0 commit 0d1b919

12 files changed

+126
-274
lines changed

include/flc_map.i

-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
* String maps
2222
* ------------------------------------------------------------------------- */
2323

24-
%fortran_autofree_rvalue(std::map<std::string, int>);
25-
%fortran_autofree_rvalue(std::map<std::string, std::string>);
26-
2724
%include <std_string.i>
2825
%import "flc_string.i"
2926
%template(MapStringInt) std::map<std::string, int>;

include/flc_random.i

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
* ------------------------------------------------------------------------- */
2424

2525
%define %flc_random_engine(NAME, GENERATOR, RESULT_TYPE)
26-
%fortran_autofree_rvalue(std::GENERATOR);
2726
namespace std {
2827

2928
%rename(NAME) GENERATOR;

include/flc_set.i

-5
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,6 @@
7474
*/
7575
%define %specialize_std_set_pod(T)
7676

77-
// Automatically free temporary sets as appropriate
78-
%fortran_autofree_rvalue(std::set<T>);
79-
8077
namespace std {
8178
template<> class set<T> {
8279
%swig_std_set(T, std::less<T>, std::allocator<T>)
@@ -124,8 +121,6 @@ static bool flc_set_includes(const Set_t& left, const Set_t& right)
124121
* String sets
125122
* ------------------------------------------------------------------------- */
126123

127-
%fortran_autofree_rvalue(std::set<std::string>);
128-
129124
// Allow direct insertion of a wrapped std::string
130125
%extend std::set<std::string> {
131126
%apply SWIGTYPE& { const std::string& STR_CLASS };

include/flc_string.i

-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131
* String class definition
3232
* ------------------------------------------------------------------------- */
3333

34-
// Automatically free temporary strings as appropriate
35-
%fortran_autofree_rvalue(std::string);
36-
3734
namespace std {
3835
class string {
3936
public:

include/flc_vector.i

+12-11
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@
5858
*/
5959
%define %flc_template_std_vector_pod(NAME, T)
6060

61-
// Automatically free temporary vectors as appropriate
62-
%fortran_autofree_rvalue(std::vector<T>);
63-
6461
namespace std {
6562
template<> class vector<T> {
6663

@@ -79,24 +76,28 @@ namespace std {
7976
* Numeric vectors
8077
* ------------------------------------------------------------------------- */
8178

82-
%flc_template_std_vector_pod(VectorInt4, int32_t)
83-
%flc_template_std_vector_pod(VectorInt8, int64_t)
84-
%flc_template_std_vector_pod(VectorReal8, double)
79+
%flc_template_std_vector_pod(VectorInt4, int32_t)
80+
%flc_template_std_vector_pod(VectorInt8, int64_t)
81+
%flc_template_std_vector_pod(VectorReal8, double)
8582

8683
/* -------------------------------------------------------------------------
8784
* String vectors
8885
* ------------------------------------------------------------------------- */
8986

90-
%fortran_autofree_rvalue(std::vector<std::string>);
87+
%include <std_string.i>
88+
%import "flc_string.i"
89+
90+
%apply SWIGTYPE& { const std::string& value };
91+
9192
%extend std::vector<std::string> {
92-
void set_ref(size_type index, std::string& str) {
93+
void set_ref(size_type index, const std::string& value) {
9394
SWIG_check_range(index, $self->size(),
9495
"std::vector<std::string>::set_ref",
9596
return);
96-
(*$self)[index] = str;
97+
(*$self)[index] = value;
9798
}
9899
}
99100

100-
%include <std_string.i>
101-
%import "flc_string.i"
102101
%template(VectorString) std::vector<std::string>;
102+
103+
%clear const std::string& value;

src/flc_algorithmFORTRAN_wrap.cxx

-130
Original file line numberDiff line numberDiff line change
@@ -221,15 +221,6 @@ enum SwigMemFlags {
221221
"as a reference", RETURNNULL); \
222222
}
223223

224-
225-
namespace swig {
226-
enum AssignmentType {
227-
ASSIGNMENT_DEFAULT,
228-
ASSIGNMENT_NODESTRUCT,
229-
ASSIGNMENT_SMARTPTR
230-
};
231-
}
232-
233224
#define SWIGPOLICY_std_mt19937 swig::ASSIGNMENT_DEFAULT
234225
#define SWIGPOLICY_std_mt19937_64 swig::ASSIGNMENT_DEFAULT
235226

@@ -475,123 +466,6 @@ SWIGINTERN SwigClassWrapper SwigClassWrapper_uninitialized() {
475466
return result;
476467
}
477468

478-
479-
namespace swig {
480-
481-
template<class T, AssignmentType A>
482-
struct DestructorPolicy {
483-
static SwigClassWrapper destroy(SwigClassWrapper self) {
484-
delete static_cast<T*>(self.cptr);
485-
return SwigClassWrapper_uninitialized();
486-
}
487-
};
488-
template<class T>
489-
struct DestructorPolicy<T, ASSIGNMENT_NODESTRUCT> {
490-
static SwigClassWrapper destroy(SwigClassWrapper) {
491-
SWIG_exception_impl("assignment", SWIG_TypeError, "Invalid assignment: class type has private destructor", return SwigClassWrapper_uninitialized());
492-
}
493-
};
494-
}
495-
496-
497-
namespace swig {
498-
499-
SWIGINTERN SwigClassWrapper capture(SwigClassWrapper other) {
500-
other.cmemflags &= ~SWIG_MEM_RVALUE;
501-
return other;
502-
}
503-
504-
template<class T, AssignmentType A>
505-
struct AssignmentPolicy {
506-
static SwigClassWrapper destroy(SwigClassWrapper self) {
507-
return DestructorPolicy<T, A>::destroy(self);
508-
}
509-
static SwigClassWrapper alias(SwigClassWrapper other) {
510-
SwigClassWrapper self = other;
511-
self.cmemflags &= ~SWIG_MEM_OWN;
512-
return self;
513-
}
514-
static SwigClassWrapper move_alias(SwigClassWrapper self, SwigClassWrapper other) {
515-
if (self.cmemflags & SWIG_MEM_OWN) {
516-
destroy(self);
517-
}
518-
return capture(other);
519-
}
520-
static SwigClassWrapper copy_alias(SwigClassWrapper self, SwigClassWrapper other) {
521-
if (self.cmemflags & SWIG_MEM_OWN) {
522-
destroy(self);
523-
}
524-
return capture(other);
525-
}
526-
};
527-
528-
template<class T>
529-
struct AssignmentPolicy<T, ASSIGNMENT_SMARTPTR> {
530-
static SwigClassWrapper destroy(SwigClassWrapper self) {
531-
return DestructorPolicy<T, ASSIGNMENT_SMARTPTR>::destroy(self);
532-
}
533-
static SwigClassWrapper alias(SwigClassWrapper other) {
534-
SwigClassWrapper self;
535-
self.cptr = new T(*static_cast<T*>(other.cptr));
536-
self.cmemflags = other.cmemflags | SWIG_MEM_OWN;
537-
return self;
538-
}
539-
static SwigClassWrapper move_alias(SwigClassWrapper self, SwigClassWrapper other) {
540-
self = copy_alias(self, other);
541-
self.cmemflags = other.cmemflags & ~SWIG_MEM_RVALUE;
542-
destroy(other);
543-
return self;
544-
}
545-
static SwigClassWrapper copy_alias(SwigClassWrapper self, SwigClassWrapper other) {
546-
// LHS and RHS should both 'own' their shared pointers
547-
T *pself = static_cast<T*>(self.cptr);
548-
T *pother = static_cast<T*>(other.cptr);
549-
*pself = *pother;
550-
return self;
551-
}
552-
};
553-
554-
} // end namespace swig
555-
556-
template<class T, swig::AssignmentType A>
557-
SWIGINTERN void SWIG_assign(SwigClassWrapper* self, SwigClassWrapper other) {
558-
typedef swig::AssignmentPolicy<T, A> Policy_t;
559-
560-
if (self->cptr == NULL) {
561-
/* LHS is unassigned */
562-
if (other.cmemflags & SWIG_MEM_RVALUE) {
563-
/* Capture pointer from RHS, clear 'moving' flag */
564-
*self = swig::capture(other);
565-
} else {
566-
/* Aliasing another class; clear ownership or copy smart pointer */
567-
*self = Policy_t::alias(other);
568-
}
569-
} else if (other.cptr == NULL) {
570-
/* Replace LHS with a null pointer */
571-
*self = Policy_t::destroy(*self);
572-
} else if (self->cptr == other.cptr) {
573-
/* Self-assignment: ignore */
574-
} else if (other.cmemflags & SWIG_MEM_RVALUE) {
575-
/* Transferred ownership from a variable that's about to be lost.
576-
* Move-assign and delete the transient data */
577-
*self = Policy_t::move_alias(*self, other);
578-
} else {
579-
/* RHS shouldn't be deleted, alias to LHS */
580-
*self = Policy_t::copy_alias(*self, other);
581-
}
582-
}
583-
584-
template<class T, swig::AssignmentType A>
585-
SWIGINTERN void SWIG_free_rvalue(SwigClassWrapper other) {
586-
typedef swig::AssignmentPolicy<T, A> Policy_t;
587-
if (other.cmemflags & SWIG_MEM_RVALUE
588-
&& other.cmemflags & SWIG_MEM_OWN) {
589-
/* We own *and* are being passed an expiring value */
590-
Policy_t::destroy(other);
591-
}
592-
}
593-
594-
595469
extern "C" {
596470
SWIGEXPORT void _wrap_sort__SWIG_1(SwigArrayWrapper *farg1) {
597471
int32_t *arg1 = (int32_t *) 0 ;
@@ -1373,7 +1247,6 @@ SWIGEXPORT void _wrap_shuffle__SWIG_1(SwigClassWrapper *farg1, SwigArrayWrapper
13731247
arg2 = (int32_t *)farg2->data;
13741248
arg3 = farg2->size;
13751249
shuffle< int32_t >(*arg1,arg2,arg3);
1376-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg1);
13771250
}
13781251

13791252

@@ -1387,7 +1260,6 @@ SWIGEXPORT void _wrap_shuffle__SWIG_2(SwigClassWrapper *farg1, SwigArrayWrapper
13871260
arg2 = (int64_t *)farg2->data;
13881261
arg3 = farg2->size;
13891262
shuffle< int64_t >(*arg1,arg2,arg3);
1390-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg1);
13911263
}
13921264

13931265

@@ -1401,7 +1273,6 @@ SWIGEXPORT void _wrap_shuffle__SWIG_3(SwigClassWrapper *farg1, SwigArrayWrapper
14011273
arg2 = (double *)farg2->data;
14021274
arg3 = farg2->size;
14031275
shuffle< double >(*arg1,arg2,arg3);
1404-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg1);
14051276
}
14061277

14071278

@@ -1415,7 +1286,6 @@ SWIGEXPORT void _wrap_shuffle__SWIG_4(SwigClassWrapper *farg1, SwigArrayWrapper
14151286
arg2 = (void **)farg2->data;
14161287
arg3 = farg2->size;
14171288
shuffle< void * >(*arg1,arg2,arg3);
1418-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg1);
14191289
}
14201290

14211291

src/flc_randomFORTRAN_wrap.cxx

-6
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,6 @@ SWIGEXPORT void _wrap_uniform_int_distribution__SWIG_1(int32_t const *farg1, int
636636
arg4 = (int32_t *)farg4->data;
637637
arg5 = farg4->size;
638638
uniform_int_distribution< int32_t,std::mt19937 >(arg1,arg2,*arg3,arg4,arg5);
639-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
640639
}
641640

642641

@@ -654,7 +653,6 @@ SWIGEXPORT void _wrap_uniform_int_distribution__SWIG_2(int64_t const *farg1, int
654653
arg4 = (int64_t *)farg4->data;
655654
arg5 = farg4->size;
656655
uniform_int_distribution< int64_t,std::mt19937 >(arg1,arg2,*arg3,arg4,arg5);
657-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
658656
}
659657

660658

@@ -672,7 +670,6 @@ SWIGEXPORT void _wrap_uniform_real_distribution(double const *farg1, double cons
672670
arg4 = (double *)farg4->data;
673671
arg5 = farg4->size;
674672
uniform_real_distribution< double,std::mt19937 >(arg1,arg2,*arg3,arg4,arg5);
675-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
676673
}
677674

678675

@@ -690,7 +687,6 @@ SWIGEXPORT void _wrap_normal_distribution(double const *farg1, double const *far
690687
arg4 = (double *)farg4->data;
691688
arg5 = farg4->size;
692689
normal_distribution< double,std::mt19937 >(arg1,arg2,*arg3,arg4,arg5);
693-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
694690
}
695691

696692

@@ -708,7 +704,6 @@ SWIGEXPORT void _wrap_discrete_distribution__SWIG_1(SwigArrayWrapper *farg1, Swi
708704
arg4 = (int32_t *)farg4->data;
709705
arg5 = farg4->size;
710706
discrete_distribution< int32_t,std::mt19937 >((double const *)arg1,arg2,*arg3,arg4,arg5);
711-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
712707
}
713708

714709

@@ -726,7 +721,6 @@ SWIGEXPORT void _wrap_discrete_distribution__SWIG_2(SwigArrayWrapper *farg1, Swi
726721
arg4 = (int64_t *)farg4->data;
727722
arg5 = farg4->size;
728723
discrete_distribution< int64_t,std::mt19937 >((double const *)arg1,arg2,*arg3,arg4,arg5);
729-
SWIG_free_rvalue< std::mt19937, SWIGPOLICY_std_mt19937 >(*farg3);
730724
}
731725

732726

0 commit comments

Comments
 (0)