-
-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathModule.cpp
More file actions
245 lines (197 loc) · 5.7 KB
/
Copy pathModule.cpp
File metadata and controls
245 lines (197 loc) · 5.7 KB
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
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
// jedit: :folding=explicit:
//
// Module.cpp: Rcpp R/C++ interface class library -- module unit tests
//
// Copyright (C) 2013 - 2015 Dirk Eddelbuettel and Romain Francois
//
// This file is part of Rcpp.
//
// Rcpp 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 2 of the License, or
// (at your option) any later version.
//
// Rcpp 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 Rcpp. If not, see <http://www.gnu.org/licenses/>.
#include <Rcpp.h>
using namespace Rcpp;
std::string hello() {
return "hello";
}
int bar(int x) {
return x*2;
}
double foo(int x, double y) {
return x * y;
}
void bla() {
Rprintf("hello\\n");
}
void bla1(int x) {
Rprintf("hello (x = %d)\\n", x);
}
void bla2(int x, double y) {
Rprintf("hello (x = %d, y = %5.2f)\\n", x, y);
}
int test_reference(std::vector<double>& ref) {
return ref.size();
}
int test_const_reference(const std::vector<double>& ref) {
return ref.size();
}
int test_const(const std::vector<double> ref) {
return ref.size();
}
class ModuleWorld {
public:
ModuleWorld() : msg("hello") {}
void set(std::string msg_) { this->msg = msg_; }
void set_ref(std::string& msg_) { this->msg = msg_; }
void set_const_ref(const std::string& msg_) { this->msg = msg_; }
std::string greet() { return msg; }
private:
std::string msg;
};
void clearWorld(ModuleWorld* w) {
w->set("");
}
class ModuleNum{
public:
ModuleNum() : x(0.0), y(0) {};
double getX() const { return x; }
void setX(double value) { x = value; }
int getY() { return y; }
private:
double x;
int y;
};
class ModuleNumber{
public:
ModuleNumber() : x(0.0), y(0) {};
double x;
int y;
};
class ModuleRandomizer {
public:
// Randomizer() : min(0), max(1) {}
ModuleRandomizer(double min_, double max_) : min(min_), max(max_) {}
NumericVector get(int n) {
RNGScope scope;
return runif(n, min, max);
}
private:
double min, max;
};
RCPP_EXPOSED_CLASS(ModuleTest)
class ModuleTest {
public:
double value;
ModuleTest(double v) : value(v) {}
private:
// hiding those on purpose
// we work by reference or pointers here. Not by copy.
ModuleTest(const ModuleTest& other);
ModuleTest& operator=(const ModuleTest&);
};
double Test_get_x_const_ref(const ModuleTest& x) {
return x.value;
}
double Test_get_x_ref(ModuleTest& x) {
return x.value;
}
double Test_get_x_const_pointer(const ModuleTest* x) {
return x->value;
}
double Test_get_x_pointer(ModuleTest* x) {
return x->value;
}
class ModuleGadget {
public:
ModuleGadget() {}
// void overload: forces dispatch through class_::invoke(), which
// wraps method results as list(voidness, result)
void value(int x) {
(void) x;
}
// non-void overload: nothing protects the raw SEXP result while
// class_::invoke() allocates the result list
SEXP value() {
SEXP x = Rf_allocVector(REALSXP, 3);
REAL(x)[0] = 1;
REAL(x)[1] = 2;
REAL(x)[2] = 3;
return x;
}
};
RCPP_MODULE(demoModule) {
function("hello", &hello);
function("bar" , &bar );
function("foo" , &foo );
function("bla" , &bla );
function("bla1" , &bla1 );
function("bla2" , &bla2 );
function("test_reference", test_reference);
function("test_const_reference", test_const_reference);
function("test_const", test_const);
class_<ModuleTest>("ModuleTest")
.constructor<double>()
;
class_<ModuleWorld>("ModuleWorld")
.constructor()
.method("greet", &ModuleWorld::greet)
.method("set", &ModuleWorld::set)
.method("set_ref", &ModuleWorld::set_ref)
.method("set_const_ref", &ModuleWorld::set_const_ref)
.method("clear", &clearWorld)
;
class_<ModuleNum>("ModuleNum")
.constructor()
// read and write property
.property("x", &ModuleNum::getX, &ModuleNum::setX)
// read-only property
.property("y", &ModuleNum::getY)
;
class_<ModuleNumber>("ModuleNumber")
.constructor()
// read and write data member
.field("x", &ModuleNumber::x)
// read only data member
.field_readonly("y", &ModuleNumber::y)
;
function("Test_get_x_const_ref", Test_get_x_const_ref);
function("Test_get_x_ref", Test_get_x_ref);
function("Test_get_x_const_pointer", Test_get_x_const_pointer);
function("Test_get_x_pointer", Test_get_x_pointer);
class_<ModuleRandomizer>("ModuleRandomizer")
// No default: .default_constructor()
.constructor<double,double>()
.method("get" , &ModuleRandomizer::get)
;
class_<ModuleGadget>("ModuleGadget")
.constructor()
.method("value", static_cast<void (ModuleGadget::*)(int)>(&ModuleGadget::value))
.method("value", static_cast<SEXP (ModuleGadget::*)()>(&ModuleGadget::value))
;
}
// [[Rcpp::export]]
double attr_Test_get_x_const_ref(const ModuleTest& x) {
return x.value;
}
// [[Rcpp::export]]
double attr_Test_get_x_ref(ModuleTest& x) {
return x.value;
}
// [[Rcpp::export]]
double attr_Test_get_x_const_pointer(const ModuleTest* x) {
return x->value;
}
// [[Rcpp::export]]
double attr_Test_get_x_pointer(ModuleTest* x) {
return x->value;
}