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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
#ifndef Rcpp_hpp
#define Rcpp_hpp
#include <iostream>
#ifdef USING_QUANTLIB
#include <ql/quantlib.hpp>
using namespace QuantLib;
#else
#include <sstream>
#include <string>
#include <list>
#include <map>
#endif
#include <stdexcept>
#include <vector>
using namespace std;
#include <R.h>
#include <Rinternals.h>
#ifdef BUILDING_DLL
#define RcppExport extern "C" __declspec(dllexport)
#else
#define RcppExport extern "C"
#endif
#ifndef USING_QUANTLIB
#define RCPP_DATE_OPS
#endif
char *copyMessageToR(const char* const mesg);
class RcppDate {
private:
void mdy2jdn();
void jdn2mdy();
int month, day, year;
int jdn;
public:
static const int Jan1970Offset;
RcppDate() { month=1, day=1, year=1970; mdy2jdn(); }
RcppDate(int Rjdn) { jdn = Rjdn+Jan1970Offset; jdn2mdy(); }
RcppDate(int month_, int day_, int year_) : month(month_),
day(day_),
year(year_) {
if(month < 1 || month > 12 || day < 1 || day > 31)
throw std::range_error("RcppDate: invalid date");
mdy2jdn();
}
int getMonth() const { return month; }
int getDay() const { return day; }
int getYear() const { return year; }
int getJDN() const { return jdn; }
#ifdef RCPP_DATE_OPS
friend RcppDate operator+(const RcppDate &date, int offset);
friend int operator-(const RcppDate& date1, const RcppDate& date2);
friend bool operator<(const RcppDate &date1, const RcppDate& date2);
friend bool operator>(const RcppDate &date1, const RcppDate& date2);
friend bool operator==(const RcppDate &date1, const RcppDate& date2);
friend bool operator>=(const RcppDate &date1, const RcppDate& date2);
friend bool operator<=(const RcppDate &date1, const RcppDate& date2);
#endif
friend std::ostream& operator<<(std::ostream& os, const RcppDate& date);
#ifdef USING_QUANTLIB
RcppDate(Date dateQL);
operator Date() const;
#endif
};
class RcppParams {
public:
RcppParams(SEXP params);
void checkNames(char *inputNames[], int len);
double getDoubleValue(string name);
int getIntValue(string name);
string getStringValue(string name);
bool getBoolValue(string name);
RcppDate getDateValue(string name);
private:
map<string, int> pmap;
SEXP _params;
};
enum ColType { COLTYPE_DOUBLE, COLTYPE_INT, COLTYPE_STRING,
COLTYPE_FACTOR, COLTYPE_LOGICAL, COLTYPE_DATE };
class ColDatum {
public:
ColDatum() {
level = 0;
}
~ColDatum() {
if(type == COLTYPE_FACTOR) {
delete [] levelNames;
}
}
ColDatum(const ColDatum& datum) {
s = datum.s;
x = datum.x;
i = datum.i;
type = datum.type;
level = datum.level;
numLevels = datum.numLevels;
d = datum.d;
if(type == COLTYPE_FACTOR) {
levelNames = new string[numLevels];
for(int i = 0; i < numLevels; i++)
levelNames[i] = datum.levelNames[i];
}
}
ColType getType() const { return type; }
void setDoubleValue(double val) { x = val; type = COLTYPE_DOUBLE; }
void setIntValue(int val) { i = val; type = COLTYPE_INT; }
void setLogicalValue(int val) {
if(val != 0 && val != 1)
throw std::range_error("ColDatum: logical values must be 0/1.");
i = val; type = COLTYPE_LOGICAL;
}
void setStringValue(string val) { s = val; type = COLTYPE_STRING; }
void setDateValue(RcppDate date) {
d = date;
type = COLTYPE_DATE;
}
void setFactorValue(string *names, int numNames, int factorLevel) {
if(factorLevel < 1 || factorLevel > numNames)
throw range_error("setFactorValue: factor level out of range");
level = factorLevel;
numLevels = numNames;
levelNames = new string[numLevels];
for(int i = 0; i < numLevels; i++)
levelNames[i] = names[i];
type = COLTYPE_FACTOR;
}
double getDoubleValue() { return x; }
int getIntValue() { return i; }
int getLogicalValue() { return i; }
string getStringValue() { return s; }
RcppDate getDateValue() {return d; }
double getDateRCode() {
return (double)(d.getJDN() - RcppDate::Jan1970Offset);
}
int getFactorNumLevels() { return numLevels; }
int getFactorLevel() { return level; }
string *getFactorLevelNames() { return levelNames; }
string getFactorLevelName() { return levelNames[level-1];}
private:
ColType type;
string s;
double x;
int i;
int level;
int numLevels;
string *levelNames;
RcppDate d;
};
class RcppFrame {
vector<string> colNames_;
vector<vector<ColDatum> > table;
public:
RcppFrame(SEXP df);
RcppFrame(vector<string> colNames) {
if(colNames.size() == 0)
throw std::range_error("RcppFrame::RcppFrame: zero length colNames");
colNames_ = colNames;
}
vector<string>& getColNames() { return colNames_; }
vector<vector<ColDatum> >& getTableData() { return table; }
void addRow(vector<ColDatum> rowData) {
if(rowData.size() != colNames_.size())
throw std::range_error("RcppFrame::addRow: incorrect row length.");
if(table.size() > 0) {
for(int i = 0; i < (int)colNames_.size(); i++) {
if(rowData[i].getType() != table[0][i].getType()) {
ostringstream oss;
oss << "RcppFrame::addRow: incorrect data type at posn "
<< i;
throw std::range_error(oss.str());
}
}
}
table.push_back(rowData);
}
};
class RcppNamedList {
public:
RcppNamedList(SEXP theList) {
if(!isNewList(theList))
throw std::range_error("RcppNamedList: non-list passed to constructor");
len = length(theList);
names = getAttrib(theList, R_NamesSymbol);
namedList = theList;
}
string getName(int i) {
if(i < 0 || i >= len) {
std::ostringstream oss;
oss << "RcppNamedList::getName: index out of bounds: " << i;
throw std::range_error(oss.str());
}
return string(CHAR(STRING_ELT(names,i)));
}
double getValue(int i) {
if(i < 0 || i >= len) {
std::ostringstream oss;
oss << "RcppNamedList::getValue: index out of bounds: " << i;
throw std::range_error(oss.str());
}
SEXP elt = VECTOR_ELT(namedList, i);
if(isReal(elt))
return REAL(elt)[0];
else if(isInteger(elt))
return (double)INTEGER(elt)[0];
else
throw std::range_error("RcppNamedList: contains non-numeric value");
return 0;
}
int getLength() { return len; }
private:
int len;
SEXP namedList;
SEXP names;
};
template <typename T>
class RcppVector {
public:
RcppVector(SEXP vec);
RcppVector(int len);
int getLength() { return len; }
inline T& operator()(int i) {
if(i < 0 || i >= len) {
std::ostringstream oss;
oss << "RcppVector: subscript out of range: " << i;
throw std::range_error(oss.str());
}
return v[i];
}
T *cVector();
vector<T> stlVector();
private:
int len;
T *v;
};
class RcppStringVector {
public:
RcppStringVector(SEXP vec);
~RcppStringVector() {
delete [] v;
}
inline string& operator()(int i) {
if(i < 0 || i >= length) {
std::ostringstream oss;
oss << "RcppStringVector: subscript out of range: " << i;
throw std::range_error(oss.str());
}
return v[i];
}
int size() { return length; }
private:
string *v;
int length;
};
class RcppDateVector {
public:
RcppDateVector(SEXP vec);
~RcppDateVector() {
delete [] v;
}
inline RcppDate& operator()(int i) {
if(i < 0 || i >= length) {
std::ostringstream oss;
oss << "RcppDateVector: subscript out of range: " << i;
throw std::range_error(oss.str());
}
return v[i];
}
int size() { return length; }
private:
RcppDate *v;
int length;
};
template <typename T>
class RcppMatrix {
public:
RcppMatrix(SEXP mat);
RcppMatrix(int nx, int ny);
int getDim1() { return dim1; }
int getDim2() { return dim2; }
inline T& operator()(int i, int j) {
if(i < 0 || i >= dim1 || j < 0 || j >= dim2) {
std::ostringstream oss;
oss << "RcppMatrix: subscripts out of range: " << i << ", " << j;
throw std::range_error(oss.str());
}
return a[i][j];
}
T **cMatrix();
vector<vector<T> > stlMatrix();
private:
int dim1, dim2;
T **a;
};
class RcppResultSet {
public:
RcppResultSet() { numProtected = 0; }
void add(string, double);
void add(string, int);
void add(string, string);
void add(string, double *, int);
void add(string, int *, int);
void add(string, double **, int, int);
void add(string, int **, int, int);
void add(string, RcppDate&);
void add(string, RcppDateVector&);
void add(string, RcppStringVector&);
void add(string, vector<double>&);
void add(string, vector<int>&);
void add(string, vector<vector<double> >&);
void add(string, vector<vector<int> >&);
void add(string, vector<string>&);
void add(string, RcppVector<int>&);
void add(string, RcppVector<double>&);
void add(string, RcppMatrix<int>&);
void add(string, RcppMatrix<double>&);
void add(string, RcppFrame&);
void add(string, SEXP, bool isProtected);
SEXP getReturnList();
private:
int numProtected;
list<pair<string,SEXP> > values;
};
#endif
|