1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* Copyright (C) 2018 Felix Salfelder
* Author: Felix Salfelder <felix@salfelder.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*------------------------------------------------------------------
*/
%module(directors="0", allprotected="1") m_wave
// %feature("director") WAVE;
%{
#include "m_wave_.h"
#include <e_base.h>
%}
%include std_pair.i
%include std_deque.i
typedef std::pair<double, double> DPAIR; // swig says this is redundant
// but it's not!
%template() std::pair<double,double>;
%template(PairDeque) std::deque<std::pair<double,double> >;
%inline %{
class StopIterator {};
class WaveIterator {
public:
WaveIterator(WAVE::const_iterator _cur, WAVE::const_iterator _end)
: cur(_cur), end(_end) {
}
WaveIterator* __iter__()
{ untested();
return this;
}
WAVE::const_iterator cur;
WAVE::const_iterator end;
};
%}
class WAVE {
public:
// typedef std::deque<DPAIR>::iterator iterator;
typedef std::deque<DPAIR>::const_iterator const_iterator;
explicit WAVE(double d=0);
explicit WAVE(const WAVE&);
~WAVE() {}
WAVE& set_delay(double d);
WAVE& initialize();
WAVE& push(double t, double v);
FPOLY1 v_out(double t)const;
double v_reflect(double t, double v_total)const;
WAVE& operator+=(const WAVE& x);
WAVE& operator+=(double x);
WAVE& operator*=(const WAVE& x);
WAVE& operator*=(double x);
const_iterator begin()const {return _w.begin();}
const_iterator end()const {return _w.end();}
};
%include "exception.i"
// python2
%exception WaveIterator::next {
try {
$action // calls %extend function next() below
} catch (StopIterator){
PyErr_SetString(PyExc_StopIteration, "End of iterator");
return NULL;
}
}
// python3
%exception WaveIterator::__next__ {
try {
$action // calls %extend function next() below
} catch (StopIterator){
PyErr_SetString(PyExc_StopIteration, "End of iterator");
return NULL;
}
}
%extend WaveIterator {
DPAIR const& __next__()
{
if ($self->cur != $self->end) {
return *$self->cur++;
}else{
throw StopIterator();
}
}
// python2
DPAIR const& next()
{
if ($self->cur != $self->end) {
return *$self->cur++;
}else{
throw StopIterator();
}
}
}
%extend WAVE {
WaveIterator __iter__() {
return WaveIterator($self->begin(), $self->end());
}
};
|