forked from AndySomogyi/sbmlsolver
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathrrc_cpp_support.cpp
358 lines (309 loc) · 8.39 KB
/
rrc_cpp_support.cpp
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
#pragma hdrstop
#include <string>
#include <iostream>
#include <sstream>
#include <fstream>
#include "rrException.h"
#include "rrc_cpp_support.h"
#include "rrc_types.h"
#include "rrc_utilities.h"
#include "rrStringUtils.h"
#include "rrRoadRunner.h"
#include "rrRoadRunnerData.h"
namespace rrc
{
using namespace rr;
void setError(const string& err)
{
if(gLastError)
{
rr::freeText(gLastError);
}
gLastError = rr::createText(err);
}
RoadRunner* castToRoadRunner(RRHandle handle)
{
RoadRunner* rr = (RoadRunner*) handle;
if(rr) //Will only fail if handle is NULL...
{
return rr;
}
else
{
Exception ex("Failed to cast to a valid RoadRunner handle");
throw(ex);
}
}
RRDoubleMatrix* createMatrix(const ls::DoubleMatrix* mat)
{
if(!mat)
{
return NULL;
}
RRDoubleMatrixPtr matrix = new RRDoubleMatrix;
matrix->RSize = mat->RSize();
matrix->CSize = mat->CSize();
int dim = matrix->RSize * matrix->CSize;
if(dim)
{
matrix->Data = new double[mat->RSize()*mat->CSize()];
}
else
{
delete matrix;
return NULL;
}
int index = 0;
for(u_int row = 0; row < mat->RSize(); row++)
{
for(u_int col = 0; col < mat->CSize(); col++)
{
matrix->Data[index++] = (*mat)(row,col);
}
}
return matrix;
}
DoubleMatrix* createMatrix(const rrc::RRDoubleMatrixPtr mat)
{
if(!mat)
{
return NULL;
}
DoubleMatrix *matrix = new DoubleMatrix(mat->RSize, mat->CSize);
int index = 0;
for(u_int row = 0; row < mat->RSize; row++)
{
for(u_int col = 0; col < mat->CSize; col++)
{
(*matrix)(row,col) = mat->Data[index++];
}
}
return matrix;
}
RRComplexMatrix* createMatrix(const ls::ComplexMatrix* mat)
{
if(!mat)
{
return NULL;
}
RRComplexMatrixPtr matrix = new RRComplexMatrix;
matrix->RSize = mat->RSize();
matrix->CSize = mat->CSize();
int dim = matrix->RSize * matrix->CSize;
if(dim)
{
matrix->Data = new RRComplex[mat->RSize()*mat->CSize()];
}
else
{
delete matrix;
return NULL;
}
int index = 0;
for(u_int row = 0; row < mat->RSize(); row++)
{
for(u_int col = 0; col < mat->CSize(); col++)
{
matrix->Data[index].re = std::real((*mat)(row,col));
matrix->Data[index].imag = std::imag((*mat)(row,col));
index++;
}
}
return matrix;
}
vector<double> createVector(const RRVector* vec)
{
vector<double> aVec;
if(!vec)
{
return aVec;
}
aVec.resize(vec->Count);
for(int i = 0; i < aVec.size(); i++)
{
aVec[i] = vec->Data[i];
}
return aVec;
}
RRVector* createVector(const vector<double>& vec)
{
RRVector* aVec = new RRVector;
aVec->Count = static_cast<int>(vec.size());
if(aVec->Count)
{
aVec->Data = new double[aVec->Count];
}
for(int i = 0; i < aVec->Count; i++)
{
aVec->Data[i] = vec[i];
}
return aVec;
}
RRComplexVector* createVector(const vector<ls::Complex>& vec)
{
RRComplexVector* aVec = new RRComplexVector;
aVec->Count = static_cast<int>(vec.size());
if(aVec->Count)
{
aVec->Data = new RRComplex[aVec->Count];
}
for(int i = 0; i < aVec->Count; i++)
{
aVec->Data[i].re = real(vec[i]);
aVec->Data[i].imag = imag(vec[i]);
}
return aVec;
}
bool copyVector(const RRVector* src, vector<double>& dest)
{
if(!src)
{
return false;
}
dest.resize(src->Count);
for(int i = 0; i < src->Count; i++)
{
dest[i] = src->Data[i];
}
return true;
}
RRStringArrayPtr createList(const rrc::StringList& sList)
{
// if(!sList.Count())
// {
// return NULL;
// }
RRStringArray* list = new RRStringArray;
list->Count = sList.Count();
if (list->Count) {
list->String = new char *[list->Count];
for(int i = 0; i < list->Count; i++)
{
list->String[i] = rr::createText(sList[i]);
}
}
else
list->String = NULL;
return list;
}
//RRList* createList(const ArrayList& aList)
//{
// if(!aList.Count())
// {
// return NULL;
// }
//
// RRListItemPtr myItem;
// // Setup a RRStringArrayList structure from aList
// RRListHandle theList = createRRList();
//
// int itemCount = aList.Count();
// for(int i = 0; i < itemCount; i++)
// {
//// //Have to figure out subtype of item
//// ArrayListItem<string>* ptr = const_cast< ArrayListItemBase<string>* >(*aList[i]);
//// if(ptr->mValue)
//// {
//// string item = *ptr->mValue;
//// char* str = (char *) new char[item.size() + 1];
//// strcpy(str, item.c_str());
//// myItem = createStringItem (str);
//// addItem (theList, &myItem);
//// }
//// else if(ptr->mLinkedList)
//// {
//// //ArrayListItem<ArrayList2Item>* listItem = dynamic_cast<ArrayListItem<ArrayList2Item>*>(ptr);
//// RRListHandle myList = createList (*(ptr->mLinkedList));
////
//// RRListItemPtr myListItem = createListItem (myList);
//// addItem (theList, &myListItem);
////
//// }
// }
// return theList;
//}
RRList* createArrayList(const rrc::ArrayList& aList)
{
if(!aList.Count())
{
return NULL;
}
RRListItemPtr myItem;
// Setup a RRStringArrayList structure from aList
RRListPtr theList = createRRList();
int itemCount = aList.Count();
for(int i = 0; i < itemCount; i++)
{
//Have to figure out subtype of item
ArrayListItemBase* ptr = const_cast<ArrayListItemBase*>(&aList[i]);
if(dynamic_cast<ArrayListItem<int>*>(ptr))
{
int val = (int) *(dynamic_cast<ArrayListItem<int>*>(ptr));
myItem = createIntegerItem (val);
addItem (theList, &myItem);
}
else if(dynamic_cast<ArrayListItem<double>*>(ptr))
{
double val = (double) *(dynamic_cast<ArrayListItem<double>*>(ptr));
myItem = createDoubleItem (val);
addItem (theList, &myItem);
}
else if(dynamic_cast<ArrayListItem<string>*>(ptr))
{
string item = (string) *(dynamic_cast<ArrayListItem<string>*>(ptr));
char* str = (char *) new char[item.size() + 1];
strcpy (str, item.c_str());
myItem = createStringItem (str);
addItem (theList, &myItem);
}
else if(dynamic_cast<ArrayListItem<StringList>*>(ptr))
{
StringList list = (StringList) *(dynamic_cast<ArrayListItem<StringList>*>(ptr));
ArrayList aList;
for(int i = 0; i < list.Count(); i++)
{
aList.Add(list[i]);
}
RRListPtr myList = createArrayList (aList);
myItem = createListItem(myList);
addItem (theList, &myItem);
}
else if(dynamic_cast<ArrayListItem<ArrayList>*>(ptr))
{
ArrayList list = (ArrayList) *(dynamic_cast<ArrayListItem<ArrayList>*>(ptr));
RRListPtr myList = createArrayList (list);
RRListItemPtr myListItem = createListItem (myList);
addItem (theList, &myListItem);
}
}
return theList;
}
RRCDataPtr createRRCData(const RoadRunner& tmp)
{
// TODO make roadrunner const correct
RoadRunner& r = const_cast<RoadRunner&>(tmp);
RRCData* rrCData = new RRCData;
memset(rrCData, 0, sizeof(RRCData));
// create columns info
const std::vector<SelectionRecord> &selections = r.getSelections();
rrCData->ColumnHeaders = new char*[selections.size()];
for(int i = 0; i < selections.size(); ++i)
{
rrCData->ColumnHeaders[i] = rr::createText(selections[i].to_string());
}
const DoubleMatrix& result = *r.getSimulationData();
rrCData->RSize = result.RSize();
rrCData->CSize = result.CSize();
int size = rrCData->RSize*rrCData->CSize;
rrCData->Data = new double[size];
int index = 0;
for(int row = 0; row < rrCData->RSize; row++)
{
for(int col = 0; col < rrCData->CSize; col++)
{
rrCData->Data[index++] = result(row, col);
}
}
return rrCData;
}
}