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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/*
Copyright (C) 2000, 2001, 2002 RiskMap srl
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it under the
terms of the QuantLib license. You should have received a copy of the
license along with this program; if not, please email ferdinando@ametrano.net
The license is also available online at http://quantlib.org/html/license.html
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 license for more details.
*/
// $Id: MarketElements.i,v 1.17 2002/03/05 16:58:17 lballabio Exp $
#ifndef quantlib_market_elements_i
#define quantlib_market_elements_i
%include Observer.i
%include Null.i
%include Functions.i
%{
using QuantLib::MarketElement;
using QuantLib::Handle;
using QuantLib::RelinkableHandle;
typedef Handle<MarketElement> MarketElementHandle;
typedef RelinkableHandle<MarketElement> MarketElementRelinkableHandle;
%}
// Python market element class
%typemap(python,in) PyObject* pyMarketElement {
$target = $source;
}
%{
// its C++ wrapper
class PyMarketElement : public MarketElement {
public:
PyMarketElement(PyObject* pyMarketElement)
: pyMarketElement_(pyMarketElement) {
/* make sure the Python object stays alive
as long as we need it */
Py_XINCREF(pyMarketElement_);
}
PyMarketElement(const PyMarketElement& me)
: pyMarketElement_(me.pyMarketElement_) {
/* make sure the Python object stays alive
as long as we need it */
Py_XINCREF(pyMarketElement_);
}
PyMarketElement& operator=(const PyMarketElement& me) {
if ((this != &me) && (pyMarketElement_ != me.pyMarketElement_)) {
Py_XDECREF(pyMarketElement_);
pyMarketElement_ = me.pyMarketElement_;
Py_XINCREF(pyMarketElement_);
}
return *this;
}
~PyMarketElement() {
// now it can go as far as we are concerned
Py_XDECREF(pyMarketElement_);
}
double value() const {
PyObject* pyResult =
PyObject_CallMethod(pyMarketElement_,"value",NULL);
QL_ENSURE(pyResult != NULL,
"failed to call value() on Python market element");
double result = PyFloat_AsDouble(pyResult);
Py_XDECREF(pyResult);
return result;
}
private:
PyObject* pyMarketElement_;
};
%}
// Export handle
%name(MarketElement) class MarketElementHandle : public ObservableHandle {
public:
// no constructor - forbid explicit construction
~MarketElementHandle();
};
// replicate the MarketElement interface
%addmethods MarketElementHandle {
MarketElementHandle(PyObject* pyMarketElement) {
return new MarketElementHandle(new PyMarketElement(pyMarketElement));
}
double value() {
return (*self)->value();
}
bool __nonzero__() {
return !self->isNull();
}
void notifyObservers() {
(*self)->notifyObservers();
}
}
AllowNoneAsInput(MarketElementHandle,MarketElement);
// export relinkable handle
%name(MarketElementHandle) class MarketElementRelinkableHandle {
public:
MarketElementRelinkableHandle(MarketElementHandle h);
~MarketElementRelinkableHandle();
void linkTo(MarketElementHandle);
};
%addmethods MarketElementRelinkableHandle {
bool __nonzero__() {
return !self->isNull();
}
}
// actual market elements
%{
using QuantLib::SimpleMarketElement;
typedef Handle<SimpleMarketElement> SimpleMarketElementHandle;
%}
// Fake inheritance between Handles
%name(SimpleMarketElement)
class SimpleMarketElementHandle : public MarketElementHandle {
public:
// constructor redefined below
~SimpleMarketElementHandle();
};
%addmethods SimpleMarketElementHandle {
SimpleMarketElementHandle(double value) {
return new SimpleMarketElementHandle(
new SimpleMarketElement(value));
}
void setValue(double value) {
(*self)->setValue(value);
}
}
%{
using QuantLib::DerivedMarketElement;
using QuantLib::CompositeMarketElement;
typedef Handle<DerivedMarketElement<PyUnaryFunction> >
DerivedMarketElementHandle;
typedef Handle<CompositeMarketElement<PyBinaryFunction> >
CompositeMarketElementHandle;
%}
%name(DerivedMarketElement)
class DerivedMarketElementHandle : public MarketElementHandle {
public:
// constructor redefined below
~DerivedMarketElementHandle();
};
%addmethods DerivedMarketElementHandle {
DerivedMarketElementHandle(MarketElementRelinkableHandle h,
PyObject* pyFunction) {
return new DerivedMarketElementHandle(
new DerivedMarketElement<PyUnaryFunction>(
h,PyUnaryFunction(pyFunction)));
}
}
%name(CompositeMarketElement)
class CompositeMarketElementHandle : public MarketElementHandle {
public:
// constructor redefined below
~CompositeMarketElementHandle();
};
%addmethods CompositeMarketElementHandle {
CompositeMarketElementHandle(MarketElementRelinkableHandle h1,
MarketElementRelinkableHandle h2,
PyObject* pyFunction) {
return new CompositeMarketElementHandle(
new CompositeMarketElement<PyBinaryFunction>(
h1,h2,PyBinaryFunction(pyFunction)));
}
}
#endif
|