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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
/********************************************
copyright 1999 McMillan Enterprises, Inc.
www.mcmillan-inc.com
modified for weave by eric jones
*********************************************/
#if !defined(SEQUENCE_H_INCLUDED_)
#define SEQUENCE_H_INCLUDED_
#include <string>
#include <complex>
#include "object.h"
namespace py {
//---------------------------------------------------------------------------
// !! This isn't being picked up out of object.h for some reason, so I'll
// !! redeclare it.
//---------------------------------------------------------------------------
void fail(PyObject*, const char* msg);
//---------------------------------------------------------------------------
// base class for list and tuple objects.
//---------------------------------------------------------------------------
class sequence : public object
{
public:
//-------------------------------------------------------------------------
// constructors
//-------------------------------------------------------------------------
sequence() : object() {};
sequence(const sequence& other) : object(other) {};
sequence(PyObject* obj) : object(obj) {
_violentTypeCheck();
};
//-------------------------------------------------------------------------
// destructors
//-------------------------------------------------------------------------
virtual ~sequence() {}
//-------------------------------------------------------------------------
// operator=
//-------------------------------------------------------------------------
virtual sequence& operator=(const sequence& other) {
grab_ref(other);
return *this;
};
/*virtual*/ sequence& operator=(const object& other) {
grab_ref(other);
_violentTypeCheck();
return *this;
};
//-------------------------------------------------------------------------
// type checking.
//-------------------------------------------------------------------------
virtual void _violentTypeCheck() {
if (!PySequence_Check(_obj)) {
grab_ref(0);
fail(PyExc_TypeError, "Not a sequence");
}
};
//-------------------------------------------------------------------------
// operator+ -- concatenation
//-------------------------------------------------------------------------
sequence operator+(const sequence& rhs) const {
PyObject* rslt = PySequence_Concat(_obj, rhs);
if (rslt==0)
fail(PyExc_TypeError, "Improper rhs for +");
return lose_ref(rslt);
};
//-------------------------------------------------------------------------
// count -- count the number of objects in a sequence.
//-------------------------------------------------------------------------
int count(const object& value) const {
int rslt = PySequence_Count(_obj, value);
if (rslt == -1)
fail(PyExc_RuntimeError, "failure in count");
return rslt;
};
int count(int value) const {
object val = value;
return count(val);
};
int count(double value) const {
object val = value;
return count(val);
};
int count(const char* value) const {
object val = value;
return count(val);
};
int count(const std::string& value) const {
object val = value.c_str();
return count(val);
};
//-------------------------------------------------------------------------
// set_item -- virtual so that set_item for tuple and list use
// type specific xxx_SetItem function calls.
//-------------------------------------------------------------------------
virtual void set_item(int ndx, object& val) {
int rslt = PySequence_SetItem(_obj, ndx, val);
if (rslt==-1)
fail(PyExc_IndexError, "Index out of range");
};
//-------------------------------------------------------------------------
// operator[] -- non-const version defined in list and tuple sub-types.
//-------------------------------------------------------------------------
object operator [] (int i) {
PyObject* o = PySequence_GetItem(_obj, i);
// don't throw error for when [] fails because it might be on left hand
// side (a[0] = 1). If the sequence was just created, it will be filled
// with NULL values, and setting the values should be ok. However, we
// do want to catch index errors that might occur on the right hand side
// (obj = a[4] when a has len==3).
if (!o) {
if (PyErr_ExceptionMatches(PyExc_IndexError))
throw 1;
}
return lose_ref(o);
};
//-------------------------------------------------------------------------
// slice -- handles slice operations.
// !! NOT TESTED
//-------------------------------------------------------------------------
sequence slice(int lo, int hi) const {
PyObject* o = PySequence_GetSlice(_obj, lo, hi);
if (o == 0)
fail(PyExc_IndexError, "could not obtain slice");
return lose_ref(o);
};
//-------------------------------------------------------------------------
// in -- find whether a value is in the given sequence.
// overloaded to handle the standard types used in weave.
//-------------------------------------------------------------------------
bool in(const object& value) const {
int rslt = PySequence_In(_obj, value);
if (rslt==-1)
fail(PyExc_RuntimeError, "problem in in");
return (rslt==1);
};
bool in(int value) const {
object val = value;
return in(val);
};
bool in(double value) const {
object val = value;
return in(val);
};
bool in(const std::complex<double>& value) const {
object val = value;
return in(val);
};
bool in(const char* value) const {
object val = value;
return in(val);
};
bool in(const std::string& value) const {
object val = value.c_str();
return in(val);
};
//-------------------------------------------------------------------------
// index -- find whether a value is in the given sequence.
// overloaded to handle the standard types used in weave.
//-------------------------------------------------------------------------
int index(const object& value) const {
int rslt = PySequence_Index(_obj, value);
if (rslt==-1)
fail(PyExc_IndexError, "value not found");
return rslt;
};
int index(int value) const {
object val = value;
return index(val);
};
int index(double value) const {
object val = value;
return index(val);
};
int index(const std::complex<double>& value) const {
object val = value;
return index(val);
};
int index(const char* value) const {
object val = value;
return index(val);
};
int index(const std::string& value) const {
object val = value;
return index(val);
};
//-------------------------------------------------------------------------
// len, length, size -- find the length of the sequence.
// version inherited from py::object ok.
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
// operator* -- repeat a list multiple times.
//-------------------------------------------------------------------------
sequence operator * (int count) const {
PyObject* rslt = PySequence_Repeat(_obj, count);
if (rslt==0)
fail(PyExc_RuntimeError, "sequence repeat failed");
return lose_ref(rslt);
};
};
//---------------------------------------------------------------------------
// indexed_ref -- return reference obj when operator[] is used as an lvalue.
//
// list and tuple objects return this for non-const calls to operator[].
// It is similar to object::keyed_ref, except that it stores an integer
// index instead of py::object key.
//---------------------------------------------------------------------------
class indexed_ref : public object
{
sequence& _parent;
int _ndx;
public:
indexed_ref(PyObject* obj, sequence& parent, int ndx)
: object(obj), _parent(parent), _ndx(ndx) { };
virtual ~indexed_ref() {};
indexed_ref& operator=(const object& other) {
grab_ref(other);
_parent.set_item(_ndx, *this);
return *this;
};
indexed_ref& operator=(int other) {
object oth = other;
return operator=(oth);
};
indexed_ref& operator=(double other) {
object oth = other;
return operator=(oth);
};
indexed_ref& operator=(const std::complex<double>& other) {
object oth = other;
return operator=(oth);
};
indexed_ref& operator=(const char* other) {
object oth = other;
return operator=(oth);
};
indexed_ref& operator=(const std::string& other) {
object oth = other;
return operator=(oth);
};
indexed_ref& operator=( const indexed_ref& other ) {
object oth = other;
return operator=( oth );
}
};
} // namespace py
#endif // PWOSEQUENCE_H_INCLUDED_
|