-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcintegrator.cpp
More file actions
205 lines (167 loc) · 6.84 KB
/
cintegrator.cpp
File metadata and controls
205 lines (167 loc) · 6.84 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
/*
Copyright (c) 2013, <copyright holder> <email>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY <copyright holder> <email> ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <copyright holder> <email> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include <cassert>
#include "cintegrator.h"
#if HAVE_ZMQ
#include "zmqnetworkinterface.h"
#endif
#include "integrator.h"
#include "objectcomminterface.h"
#include "callback.h"
#include "speculationtimecalculationstrategy.h"
using namespace sim_comm;
std::string myName;
std::map<std::string,ObjectCommInterface *> registeredInterfaces;
void fenix_initialize(int *arc,char ***argv)
{
}
void fenix_finalize(){
}
void timeStepStart(TIME currentTime)
{
Integrator::timeStepStart(currentTime);
}
uint8_t isFinished()
{
return (uint8_t)Integrator::isFinished();
}
void initIntegratorGracePeriod(enum time_metric simTimeStep,
TIME packetLostPeriod, TIME initialTime){
//MpiNetworkInterface *comm = new MpiNetworkInterface(MPI_COMM_WORLD, false);
ZmqNetworkInterface *comm = new ZmqNetworkInterface(false);
Integrator::initIntegratorGracePeriod(comm,simTimeStep,packetLostPeriod,initialTime);
}
void initIntegratorOptimisticConstant(time_metric simTimeStep,
TIME packetLostPeriod, TIME initialTime, TIME specTime)
{
//MpiNetworkInterface *comm = new MpiNetworkInterface(MPI_COMM_WORLD, false);
ZmqNetworkInterface *comm = new ZmqNetworkInterface(false);
ConstantSpeculationTimeStrategy *st=new ConstantSpeculationTimeStrategy(simTimeStep,specTime);
Integrator::initIntegratorOptimistic(comm,simTimeStep,packetLostPeriod,initialTime,specTime,st);
}
void initIntegratorOptimisticInfinity(time_metric simTimeStep, TIME packetLostPeriod, TIME initialTime)
{
ZmqNetworkInterface *comm=new ZmqNetworkInterface(false);
InfinitySpeculationTimeStrategy *st=new InfinitySpeculationTimeStrategy();
Integrator::initIntegratorOptimistic(comm,simTimeStep,packetLostPeriod,initialTime,0,st);
}
//void initIntegratorOptimisticLowOverhead(time_metric simTimeStep,
// TIME packetLostPeriod, TIME initialTime, TIME specTime){
// ZmqNetworkInterface *comm=new ZmqNetworkInterface(false);
// InfinitySpeculationTimeStrategy *st=new InfinitySpeculationTimeStrategy();
// Integrator::initIntegratorOptimisticLowOverhead(comm,simTimeStep,packetLostPeriod,initialTime,specTime,st);
//}
//void initIntegratorOptimisticLowOverheadComm(time_metric simTimeStep,
// TIME packetLostPeriod, TIME initialTime, TIME specTime){
// ZmqNetworkInterface *comm=new ZmqNetworkInterface(true);
// InfinitySpeculationTimeStrategy *st=new InfinitySpeculationTimeStrategy();
// Integrator::initIntegratorOptimisticCommLowOverhead(
// comm,
// simTimeStep,
// packetLostPeriod,
// initialTime,
// specTime,
// st);
//}
void initIntegratorOptimisticIncreasing(time_metric simTimeStep,
TIME packetLostPeriod, TIME initialTime, TIME specTime)
{
ZmqNetworkInterface *comm = new ZmqNetworkInterface(false);
IncreasingSpeculationTimeStrategy *st=new IncreasingSpeculationTimeStrategy(simTimeStep,specTime);
Integrator::initIntegratorOptimistic(comm,simTimeStep,packetLostPeriod,initialTime,specTime,st);
}
void initIntegratorConservativeSleepingTick(enum time_metric simTimeStep,
TIME packetLostPeriod, TIME initialTime,int numberofpowersims)
{
//MpiNetworkInterface *comm = new MpiNetworkInterface(MPI_COMM_WORLD, false);
ZmqNetworkInterface *comm = new ZmqNetworkInterface(false);
Integrator::initIntegratorConservativeSleepingTick(comm,simTimeStep,packetLostPeriod,initialTime,numberofpowersims);
}
void initIntegrator(const char* configfile, TIME currentTime)
{
Integrator::initIntegrator(configfile,currentTime);
}
void registerObject(const char* name)
{
ObjectCommInterface *com=Integrator::getCommInterface(name);
myName= std::string(name);
registeredInterfaces.insert(pair<std::string,ObjectCommInterface*>(myName,com));
}
void sendMesg(char *from,char *destination,char* msg, int size,int networked,TIME currentTime)
{
string fromstr(from);
string tostr(destination);
ObjectCommInterface *com=registeredInterfaces[fromstr];
//msgobj->setDelayThroughComm(false);
Message *msgobj=new Message(fromstr,tostr,currentTime,(uint8_t *)msg,size);
bool networkedflag = networked > 0 ? true : false;
msgobj->setDelayThroughComm(networkedflag);
com->send(msgobj);
}
void receive(char *from,char** buff, int* size)
{
string fromstr(from);
ObjectCommInterface *com=registeredInterfaces[fromstr];
if(com->hasMoreMessages()){
Message *msg=com->getNextInboxMessage();
char* buff2=new char[msg->getSize()];
memcpy(buff2,msg->getData(),msg->getSize());
*buff=buff2;
*size=msg->getSize();
delete msg;
}
else{
*buff=NULL;
}
}
void finalizeRegistrations()
{
Integrator::finalizeRegistrations();
}
void setregistercallback(TIME (*callback)())
{
CallBack<TIME,empty,empty,empty,empty> *cb=CreateCallback(callback);
Integrator::setTimeCallBack(cb);
}
void stopIntegrator()
{
Integrator::stopIntegrator();
}
TIME getNextTime(TIME currentTime, TIME nextTime)
{
return Integrator::getNextTime(currentTime,nextTime);
}
void setOffset(TIME initialTime)
{
Integrator::setOffset(initialTime);
}
void registerObjectWithBufferStrategy(char* name, short int bufferType)
{
BufferStrategyType type=static_cast<BufferStrategyType>(bufferType);
ObjectCommInterface *com=Integrator::getCommInterface(name,type);
myName= std::string(name);
registeredInterfaces.insert(pair<std::string,ObjectCommInterface*>(myName,com));
}