-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLoggingHelper.cpp
284 lines (223 loc) · 8.87 KB
/
LoggingHelper.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
#include "LoggingHelper.hpp"
#include <rtt/transports/corba/TaskContextProxy.hpp>
#include <rtt/OperationCaller.hpp>
#include <rtt/types/TypekitRepository.hpp>
#include <rtt/plugin/PluginLoader.hpp>
#include "LoggerProxy.hpp"
#include "CorbaNameService.hpp"
#include <lib_config/Bundle.hpp>
#include "Spawner.hpp"
#include "PluginHelper.hpp"
#include <boost/filesystem.hpp>
using namespace orocos_cpp;
using namespace libConfig;
LoggingHelper::LoggingHelper() : DEFAULT_LOG_BUFFER_SIZE(100)
{
}
bool LoggingHelper::logTasks()
{
return logTasks(std::map<std::string, bool>(), true);
}
bool LoggingHelper::logTasks(const std::map<std::string, bool> &loggingEnabledTaskMap, bool logAll)
{
Spawner &spawner(Spawner::getInstace());
std::vector<const Deployment *> depls = spawner.getRunningDeployments();
RTT::plugin::PluginLoader loader;
if(!RTT::types::TypekitRepository::hasTypekit("rtt-types"))
PluginHelper::loadTypekitAndTransports("rtt-types");
for(const Deployment *dpl: depls)
{
//load all needed typekits
for(const std::string &tk: dpl->getNeededTypekits())
{
if(!RTT::types::TypekitRepository::hasTypekit(tk))
{
std::cout << "Warning, we are missing the typekit " << tk << " loading it " << std::endl;
PluginHelper::loadTypekitAndTransports(tk);
}
if(!RTT::types::TypekitRepository::hasTypekit(tk))
{
std::cout << "Load failed" << std::endl;
}
}
for(const std::string &task: dpl->getTaskNames())
{
//don't log the logger :-)
if(task == dpl->getLoggerName())
continue;
if(logAll)
{
RTT::corba::TaskContextProxy *proxy = RTT::corba::TaskContextProxy::Create(task, false);
logAllPorts(proxy, dpl->getLoggerName(), std::vector< std::string >(), false);
delete proxy;
}
else
{
auto it = loggingEnabledTaskMap.find(task);
if(it != loggingEnabledTaskMap.end() && it->second)
{
RTT::corba::TaskContextProxy *proxy = RTT::corba::TaskContextProxy::Create(task, false);
logAllPorts(proxy, dpl->getLoggerName(), std::vector< std::string >(), false);
delete proxy;
}
else
{
std::cout << "Logging for task " << task << " not enabled." << std::endl;
}
}
}
}
return false;
}
bool LoggingHelper::logTasks(const std::vector< std::string >& excludeList)
{
Spawner &spawner(Spawner::getInstace());
std::vector<const Deployment *> depls = spawner.getRunningDeployments();
RTT::plugin::PluginLoader loader;
if(!RTT::types::TypekitRepository::hasTypekit("rtt-types"))
PluginHelper::loadTypekitAndTransports("rtt-types");
for(const Deployment *dpl: depls)
{
//load all needed typekits
for(const std::string &tk: dpl->getNeededTypekits())
{
if(!RTT::types::TypekitRepository::hasTypekit(tk))
{
std::cout << "Warning, we are missing the typekit " << tk << " loading it " << std::endl;
PluginHelper::loadTypekitAndTransports(tk);
}
if(!RTT::types::TypekitRepository::hasTypekit(tk))
{
std::cout << "Load failed" << std::endl;
}
}
for(const std::string &task: dpl->getTaskNames())
{
//don't log the logger :-)
if(task == dpl->getLoggerName())
continue;
auto it = std::find(excludeList.begin(), excludeList.end(), task);
if(it == excludeList.end())
{
RTT::corba::TaskContextProxy *proxy = RTT::corba::TaskContextProxy::Create(task, false);
logAllPorts(proxy, dpl->getLoggerName(), excludeList, false);
delete proxy;
}
else
{
std::cout << "Logging for task " << task << " not enabled." << std::endl;
}
}
}
return false;
}
bool LoggingHelper::logAllPorts(RTT::TaskContext* givenContext, const std::string& loggerName, const std::vector< std::string > excludeList, bool loadTypekits)
{
Bundle &bundle(Bundle::getInstance());
return logAllPorts(givenContext, loggerName, bundle.getLogDirectory(), excludeList, loadTypekits);
}
bool LoggingHelper::logAllPorts(RTT::TaskContext* givenContext, const std::string& loggerName, const std::string& log_directory,
const std::vector< std::string > excludeList, bool loadTypekits)
{
RTT::TaskContext* context = givenContext;
std::string taskName = context->getName();
std::cout << "Tryingt to get Proxy for " << loggerName << std::endl;
if(loadTypekits)
{
PluginHelper::loadTypekitAndTransports("rtt-types");
RTT::OperationCaller<std::string ()> getModelName(context->getOperation("getModelName"));
std::string modelName = getModelName();
std::string componentName = modelName.substr(0, modelName.find_first_of(':'));
std::vector<std::string> neededTks = PluginHelper::getNeededTypekits(componentName);
for(const std::string &tk: neededTks)
{
PluginHelper::loadTypekitAndTransports(tk);
}
//ugly, but only way I see to ensure that all ports get created
context = RTT::corba::TaskContextProxy::Create(taskName, false);
}
LoggerProxy *logger;
try{
logger = new LoggerProxy(loggerName, false);
} catch (...)
{
throw std::runtime_error("Error, could not contact the logger " + loggerName);
}
std::cout << "Managed to get Proxy for " << loggerName << std::endl;
auto ports = context->ports()->getPorts();
std::vector<RTT::base::OutputPortInterface *> outPorts;
for(RTT::base::PortInterface *port: ports)
{
RTT::base::OutputPortInterface *outPort;
outPort = dynamic_cast<RTT::base::OutputPortInterface *>(port);
if(!outPort)
continue;
std::string name = taskName + "." + outPort->getName();
if(std::find( excludeList.begin(), excludeList.end(), name) != excludeList.end())
{
std::cout << "logAllPorts: Excluding port " << name << " on task " << context->getName() << std::endl;
continue;
}
//check if port allready exists
RTT::base::PortInterface *loggerPort = logger->getPort(name);
if(loggerPort)
{
RTT::base::InputPortInterface *inputPort = dynamic_cast<RTT::base::InputPortInterface *>(loggerPort);
if(inputPort)
{
outPorts.push_back(outPort);
}
continue;
}
std::cout << "Create Logging Port for " << name << std::endl;
if(!logger->createLoggingPort(name, outPort->getTypeInfo()->getTypeName()))
{
std::cout << "logAllPorts: Error, failed to create port " << name << std::endl;
return false;
}
outPorts.push_back(outPort);
}
logger->synchronize();
for(RTT::base::OutputPortInterface *outPort: outPorts)
{
//go save and disconnect everyone before doing the connection
//we assume that we got exclusive control over the logger
RTT::base::PortInterface *loggerPort = logger->getPort(taskName + "." + outPort->getName());
if(!loggerPort)
{
throw std::runtime_error("Error, port created on logger could not be aquired");
}
loggerPort->disconnect();
RTT::ConnPolicy policy = RTT::ConnPolicy::buffer(DEFAULT_LOG_BUFFER_SIZE);
policy.init = true;
if(!outPort->connectTo(loggerPort, policy))
{
throw std::runtime_error("Error, could not connect port to logger");
}
}
if(logger->isRunning())
return true;
int log_file_id = 0;
std::string log_path(log_directory + "/" + loggerName + "." + std::to_string(log_file_id) + ".log");
while(boost::filesystem::exists(log_path))
{
log_path = std::string(log_directory + "/" + loggerName + "." + std::to_string(++log_file_id) + ".log");
}
logger->file.set(log_path);
if(!logger->configure())
{
std::cout << "Failed to configure logger" << std::endl;
return false;
}
if(!logger->start())
{
std::cout << "Failed to start logger for " + taskName << std::endl;
return false;
}
if(givenContext != context)
{
delete context;
}
delete logger;
return true;
}