Newer
Older
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
//# MACScheduler.cc: Implementation of the MAC Scheduler task
//#
//# Copyright (C) 2002-2004
//# ASTRON (Netherlands Foundation for Research in Astronomy)
//# P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl
//#
//# This program 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.
//#
//# This program 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 this program; if not, write to the Free Software
//# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//#
//# $Id$
#include <lofar_config.h>
#include <Common/LofarLogger.h>
#include <boost/shared_array.hpp>
#include <APS/ParameterSet.h>
#include <GCF/GCF_PVString.h>
#include <GCF/GCF_PVDouble.h>
#include <GCF/GCF_PVInteger.h>
#include <GCF/PAL/GCF_PVSSInfo.h>
#include "APL/APLCommon/APLUtilities.h"
#include "APL/APLCommon/APLCommonExceptions.h"
#include <LogicalDeviceState.h>
#include "MACSchedulerDefines.h"
#include "MACScheduler.h"
using namespace LOFAR::GCF::Common;
using namespace LOFAR::GCF::TM;
using namespace LOFAR::GCF::PAL;
using namespace LOFAR::OTDB;
using namespace std;
namespace LOFAR {
using namespace APLCommon;
using namespace ACC::APS;
namespace MCU {
//
// MACScheduler()
//
MACScheduler::MACScheduler() :
GCFTask ((State)&MACScheduler::initial_state,string(MS_TASKNAME)),
PropertySetAnswerHandlerInterface(),
itsPropertySetAnswer(*this),
itsPropertySet (),
// itsVISDclientPorts (),
// itsVIparentPortName (string("VIparent_server")),
// itsVIparentPort (*this, m_VIparentPortName, GCFPortInterface::MSPP, LOGICALDEVICE_PROTOCOL),
// itsVIclientPorts (),
// itsconnectedVIclientPorts(),
itsObsCntlrMap (),
itsSDclientPort (0),
itsLDserverPort (0),
itsSecondTimer (0),
itsSDretryTimer (0),
itsQueuePeriod (0),
itsClaimPeriod (0),
itsOTDBconnection (0),
itsOTDBpollInterval (0),
itsNextOTDBpolltime (0)
{
LOG_TRACE_OBJ ("MACscheduler construction");
#ifndef USE_PVSSPORT
LOG_WARN("Using GCFTCPPort in stead of GCFPVSSPort");
#endif
// Log the protocols I use.
registerProtocol(LOGICALDEVICE_PROTOCOL, LOGICALDEVICE_PROTOCOL_signalnames);
registerProtocol(STARTDAEMON_PROTOCOL, STARTDAEMON_PROTOCOL_signalnames);
// Readin some parameters from the ParameterSet.
itsOTDBpollInterval = globalParameterSet()->getTime("OTDBpollInterval");
itsQueuePeriod = globalParameterSet()->getTime("QueuePeriod");
itsClaimPeriod = globalParameterSet()->getTime("ClaimPeriod");
}
//
// ~MACScheduler()
//
MACScheduler::~MACScheduler()
{
LOG_TRACE_OBJ ("~MACscheduler");
if (itsPropertySet) {
itsPropertySet->setValue(string(PVSSNAME_FSM_STATE),GCFPVString("down"));
itsPropertySet->disable();
}
if (itsOTDBconnection) {
delete itsOTDBconnection;
}
if (itsSDclientPort) {
itsSDclientPort->close();
delete itsSDclientPort;
}
}
//
// handlePropertySetAnswer(answer)
//
void MACScheduler::handlePropertySetAnswer(GCFEvent& answer)
{
switch(answer.signal) {
case F_MYPS_ENABLED: {
GCFPropSetAnswerEvent* pPropAnswer=static_cast<GCFPropSetAnswerEvent*>(&answer);
if(pPropAnswer->result != GCF_NO_ERROR) {
LOG_ERROR(formatString("%s : PropertySet %s NOT ENABLED",
getName().c_str(), pPropAnswer->pScope));
}
break;
}
case F_PS_CONFIGURED:
{
GCFConfAnswerEvent* pConfAnswer=static_cast<GCFConfAnswerEvent*>(&answer);
if(pConfAnswer->result == GCF_NO_ERROR) {
LOG_DEBUG(formatString("%s : apc %s Loaded",
getName().c_str(), pConfAnswer->pApcName));
//apcLoaded();
}
else {
LOG_ERROR(formatString("%s : apc %s NOT LOADED",
getName().c_str(), pConfAnswer->pApcName));
}
break;
}
case F_VGETRESP:
case F_VCHANGEMSG: {
// check which property changed
GCFPropValueEvent* pPropAnswer=static_cast<GCFPropValueEvent*>(&answer);
// TODO: implement something usefull.
// change of queueTime
if ((strstr(pPropAnswer->pPropName, MS_PROPSET_NAME) != 0) &&
(pPropAnswer->pValue->getType() == LPT_INTEGER)) {
uint32 newVal = (uint32) ((GCFPVInteger*)pPropAnswer->pValue)->getValue();
if (strstr(pPropAnswer->pPropName, PVSSNAME_MS_QUEUEPERIOD) != 0) {
LOG_INFO_STR ("Changing QueuePeriod from " << itsQueuePeriod <<
" to " << newVal);
itsQueuePeriod = newVal;
}
else if (strstr(pPropAnswer->pPropName, PVSSNAME_MS_CLAIMPERIOD) != 0) {
LOG_INFO_STR ("Changing ClaimPeriod from " << itsClaimPeriod <<
" to " << newVal);
itsClaimPeriod = newVal;
}
}
break;
}
default:
break;
}
}
//
// initial_state(event, port)
//
// Setup all connections.
//
GCFEvent::TResult MACScheduler::initial_state(GCFEvent& event, GCFPortInterface& /*port*/)
{
GCFEvent::TResult status = GCFEvent::HANDLED;
switch (event.signal) {
case F_INIT:
break;
case F_ENTRY: {
// Get access to my own propertyset.
itsPropertySet = GCFMyPropertySetPtr(new GCFMyPropertySet(MS_PROPSET_NAME,
MS_PROPSET_TYPE,
PS_CAT_PERMANENT,
&itsPropertySetAnswer));
itsPropertySet->enable();
// update PVSS.
itsPropertySet->setValue(string(PVSSNAME_FSM_STATE),GCFPVString("initial"));
itsPropertySet->setValue(string(PVSSNAME_FSM_ERROR),GCFPVString(""));
// Try to connect to the SAS database.
ACC::APS::ParameterSet* pParamSet = ACC::APS::globalParameterSet();
string username = pParamSet->getString("OTDBusername");
string DBname = pParamSet->getString("OTDBdatabasename");
string password = pParamSet->getString("OTDBpassword");
itsOTDBconnection= new OTDBconnection(username, DBname, password);
ASSERTSTR (itsOTDBconnection, "Memory allocation error (OTDB)");
ASSERTSTR (itsOTDBconnection->connect(),
"Unable to connect to database " << DBname << " using " <<
username << "," << password);
// Connect to local startDaemon
itsSDclientPort = new GCFTCPPort(*this,
"StartDaemon",
GCFPortInterface::SAP,
STARTDAEMON_PROTOCOL);
ASSERTSTR(itsSDclientPort, "Unable to allocate a port for the StartDaemon");
itsSDclientPort->open(); // may result in CONN or DISCONN event
}
break;
case F_CONNECTED: // must be from SDclient port.
if (itsSDclientPort->isConnected()) { // connected with SD!
itsSDclientPort->cancelTimer(itsSDretryTimer); // cancel retry timer
TRAN(MACScheduler::recover_state); // go to next state.
}
break;
case F_DISCONNECTED: // must be from SDclient port.
if (!itsSDclientPort->isConnected()) { // connection with SD failed
// tell PVSS what my problem is
itsPropertySet->setValue(string(PVSSNAME_FSM_ERROR),
GCFPVString("Waiting for StartDaemon"));
itsSDretryTimer = itsSDclientPort->setTimer(1.0); // retry in 1 second.
}
break;
case F_TIMER: // must be from SDclient port.
if (!itsSDclientPort->isConnected()) { // really not connected?
itsSDclientPort->open(); // try again
}
break;
default:
LOG_DEBUG_STR ("MACScheduler(" << getName() << ")::initial_state, default");
status = GCFEvent::NOT_HANDLED;
break;
}
return (status);
}
//
// recover_state(event, port)
//
// Read last PVSS states, compare those to the SAS states and try to
// recover to the last situation.
//
GCFEvent::TResult MACScheduler::recover_state(GCFEvent& event, GCFPortInterface& port)
{
GCFEvent::TResult status = GCFEvent::HANDLED;
switch (event.signal) {
case F_INIT:
break;
case F_ENTRY: {
// update PVSS
itsPropertySet->setValue(string(PVSSNAME_FSM_STATE),GCFPVString("recover"));
itsPropertySet->setValue(string(PVSSNAME_FSM_ERROR),GCFPVString(""));
// open server port for ObservationControllers
itsLDserverPort = new GCFTCPPort(*this,
"ObsControllers",
GCFPortInterface::MSPP,
LOGICALDEVICE_PROTOCOL);
itsLDserverPort->open(); // LDprotocol server port
//
// TODO: do recovery
TRAN(MACScheduler::active_state);
break;
}
default:
LOG_DEBUG(formatString("MACScheduler(%s)::recover_state, default",getName().c_str()));
status = GCFEvent::NOT_HANDLED;
break;
}
return (status);
}
//
// active_state(event, port)
//
// Normal operation state. Check OTDB every OTDBpollInterval seconds and control
// the running observations.
//
GCFEvent::TResult MACScheduler::active_state(GCFEvent& event, GCFPortInterface& port)
{
GCFEvent::TResult status = GCFEvent::HANDLED;
switch (event.signal) {
case F_INIT:
break;
case F_ENTRY: {
// update PVSS
itsPropertySet->setValue(string(PVSSNAME_FSM_STATE),GCFPVString("active"));
itsPropertySet->setValue(string(PVSSNAME_FSM_ERROR),GCFPVString(""));
// Timers must be connected to ports, so abuse serverPort for second timer.
itsSecondTimer = itsLDserverPort->setTimer(1L);
break;
}
case F_ACCEPT_REQ: {
// Should be from a just started ObservationController.
ASSERTSTR(port.getProtocol() == LOGICALDEVICE_PROTOCOL,
"AcceptReq on port " << port.getName());
// accept connection and add port to port-vector
GCFTCPPort* client(new GCFTCPPort);
// reminder: init (task, name, type, protocol [,raw])
client->init(*this, "newObsCntlr", GCFPortInterface::SPP,
LOGICALDEVICE_PROTOCOL);
itsLDserverPort->accept(*client);
itsObsCntlrPorts.push_back(client); // save client port in stack
break;
}
case F_CONNECTED:
// Should be from the (lost) connection with the SD
_connectedHandler(port);
break;
case F_DISCONNECTED:
// Can be from StartDaemon or ObsController.
// StartDaemon: trouble! Try to reconnect asap.
// ObsController: ok when obs is finished, BIG TROUBLE when not!
_disconnectedHandler(port);
break;
case F_TIMER: { // secondTimer or reconnectTimer.
GCFTimerEvent& timerEvent=static_cast<GCFTimerEvent&>(event);
if (timerEvent.id == itsSecondTimer) {
// time to poll the OTDB?
if (time(0) >= itsNextOTDBpolltime) {
_doOTDBcheck();
// reinit polltime.
itsNextOTDBpolltime = time(0) + itsOTDBpollInterval;
}
itsSecondTimer = port.setTimer(1.0);
}
// a connection was lost and a timer was set to try to reconnect.
// else if (...) {
// TODO
// map timer to port
// port.open();
// }
break;
}
case LOGICALDEVICE_CONNECT: {
// An ObsCntlr has started and reports that it is started
LOGICALDEVICEConnectEvent connectEvent(event);
GCFTCPPort* portPtr(static_cast<GCFTCPPort*>(&port));
// copy name of controller to portname
// does not exist! portPtr->setName(connectEvent.nodeId);
// construct a controller object.
ObsCntlr_t controller;
controller.treeID = atol(connectEvent.nodeId.c_str());
controller.port = portPtr;
controller.state = LogicalDeviceState::CONNECTED;
// add it to the map
// TODO:
// report to ObsCntlr that he is registered.
LOGICALDEVICEConnectedEvent connectedEvent;
connectedEvent.result = LD_RESULT_NO_ERROR;
port.send(connectedEvent);
break;
}
case LOGICALDEVICE_SCHEDULED: {
LOGICALDEVICEScheduledEvent scheduledEvent(event);
// ...
break;
}
case LOGICALDEVICE_SCHEDULECANCELLED: {
LOGICALDEVICESchedulecancelledEvent schedulecancelledEvent(event);
// ...
break;
}
case LOGICALDEVICE_CLAIMED: {
LOGICALDEVICEClaimedEvent claimedEvent(event);
// ...
break;
}
case LOGICALDEVICE_PREPARED: {
LOGICALDEVICEPreparedEvent preparedEvent(event);
// ...
break;
}
case LOGICALDEVICE_RESUMED: {
LOGICALDEVICEResumedEvent resumedEvent(event);
// ...
break;
}
case LOGICALDEVICE_SUSPENDED: {
LOGICALDEVICESuspendedEvent suspendedEvent(event);
// ...
break;
}
case LOGICALDEVICE_RELEASED: {
LOGICALDEVICEReleasedEvent releasedEvent(event);
// ...
break;
}
case LOGICALDEVICE_FINISH: {
LOGICALDEVICEFinishEvent finishEvent(event);
// ...
break;
}
case STARTDAEMON_SCHEDULED:
{
STARTDAEMONScheduledEvent scheduledEvent(event);
// ...
break;
}
default:
LOG_DEBUG(formatString("MACScheduler(%s)::active_state, default",
getName().c_str()));
status = GCFEvent::NOT_HANDLED;
break;
}
return (status);
}
//
// _doOTDBcheck
//
// Check if a new action should be taken based on the contents of OTDB and our own
// administration.
//
void MACScheduler::_doOTDBcheck()
{
}
//
// readObservationParameters(ObsTreeID)
//
// Ask the OTDB to create an ParameterSet of the given Tree.
//
boost::shared_ptr<ACC::APS::ParameterSet>
MACScheduler::readObservationParameters(OTDB::treeIDType ObsTreeID)
{
// Convert treeId to nodeID of top node.
TreeMaintenance tm(itsOTDBconnection);
OTDBnode topNode = tm.getTopNode(ObsTreeID);
LOG_INFO_STR(topNode);
// construct the filename
string tempFileName = string(LOFAR_SHARE_LOCATION) + "/Obs_" + toString(ObsTreeID);
// read the parameterset from the database:
LOG_INFO(formatString("Exporting tree %d to '%s'",
ObsTreeID, tempFileName.c_str()));
if (!tm.exportTree(ObsTreeID, topNode.nodeID(), tempFileName)) {
THROW(APLCommon::OTDBException, string("Unable to export tree ") +
toString(ObsTreeID) + " to " + tempFileName);
}
// read file into ParameterSet
boost::shared_ptr<ACC::APS::ParameterSet> ps;
ps.reset(new ACC::APS::ParameterSet(tempFileName));
// createChildsSections (tm, ObsTreeID, topNode.nodeID(), string(""), ps);
return (ps);
}
#if 0
//
// _schedule (rootID, port)
//
// One way or another they start an observation by creating and modifying a
// parameterSet, allocation beams?? and sending one startDaemon a schedule event.
//
void MACScheduler::_schedule(const string& VIrootID, GCFPortInterface* /*port*/)
{
string shareLocation = _getShareLocation(); //REO
try {
boost::shared_ptr<ACC::APS::ParameterSet> ps = _readParameterSet(VIrootID);
// replace the parent port (assigned by the ServiceBroker)
unsigned int parentPort = itsVIparentPort.getPortNumber();
ACC::APS::KVpair kvPair(string("parentPort"),(int)parentPort);
ps->replace(kvPair);
// get some parameters and write it to the allocated CCU
string allocatedCCU = ps->getString("allocatedCCU");
string viName = ps->getString("name");
string parameterFileName = viName + string(".param");
// make all relative times absolute
// _convertRelativeTimes(ps);
string ldTypeString = ps->getString("logicalDeviceType");
TLogicalDeviceTypes ldTypeRoot = APLUtilities::convertLogicalDeviceType(ldTypeString);
bool allocationOk = true;
TSASResult sasResult(SAS_RESULT_NO_ERROR);
#if 0
// find the subbands allocations in VI sections
vector<string> childKeys = ps->getStringVector("childs");
for(vector<string>::iterator childsIt=childKeys.begin();
allocationOk && childsIt!=childKeys.end();++childsIt) {
string ldTypeString = ps->getString(*childsIt + ".logicalDeviceType");
TLogicalDeviceTypes ldType = APLUtilities::convertLogicalDeviceType(ldTypeString);
if(ldType == LDTYPE_VIRTUALINSTRUMENT) { //REO
// allocate beamlets for VI's
allocationOk = _allocateBeamlets(VIrootID, ps, *childsIt);
if(!allocationOk) {
sasResult = SAS_RESULT_ERROR_BEAMLET_ALLOCATION_FAILED;
}
else {
allocationOk = _allocateLogicalSegments(VIrootID, ps, *childsIt);
if(!allocationOk) {
sasResult = SAS_RESULT_ERROR_LOGICALSEGMENT_ALLOCATION_FAILED;
}
}
}
}
if(!allocationOk) {
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = sasResult;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
else
#endif
{
string tempFileName = APLUtilities::getTempFileName();
ps->writeFile(tempFileName);
APLUtilities::remoteCopy(tempFileName,allocatedCCU,shareLocation+parameterFileName);
remove(tempFileName.c_str());
// send the schedule event to the VI-StartDaemon on the CCU
STARTDAEMONScheduleEvent sdScheduleEvent;
sdScheduleEvent.logicalDeviceType = ldTypeRoot;
sdScheduleEvent.taskName = viName;
sdScheduleEvent.fileName = parameterFileName;
TStringRemotePortMap::iterator it = itsVISDclientPorts.find(allocatedCCU);
if(it != itsVISDclientPorts.end()) {
it->second->send(sdScheduleEvent);
}
else {
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_VI_NOT_FOUND;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
}
catch(Exception& e) {
LOG_FATAL(formatString("Error reading schedule parameters: %s",e.message().c_str()));
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_UNSPECIFIED;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
catch(exception& e) {
LOG_FATAL(formatString("Error reading schedule parameters: %s",e.what()));
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_UNSPECIFIED;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
//
// _updateSchedule(rootVI, port)
//
void MACScheduler::_updateSchedule(const string& VIrootID, GCFPortInterface* port)
{
string shareLocation = _getShareLocation();
// search the port of the VI
try
{
boost::shared_ptr<ACC::APS::ParameterSet> ps = _readParameterSet(VIrootID);
// replace the parent port (assigned by the ServiceBroker)
unsigned int parentPort = itsVIparentPort.getPortNumber();
ACC::APS::KVpair kvPair(string("parentPort"),(int)parentPort);
ps->replace(kvPair);
string allocatedCCU = ps->getString("allocatedCCU");
string viName = ps->getString("name");
string parameterFileName = viName + string(".param");
// make all relative times absolute
_convertRelativeTimes(ps);
string tempFileName = APLUtilities::getTempFileName();
ps->writeFile(tempFileName);
APLUtilities::remoteCopy(tempFileName,allocatedCCU,shareLocation+parameterFileName);
remove(tempFileName.c_str());
// send a SCHEDULE message
TStringRemotePortMap::iterator it = itsconnectedVIclientPorts.find(viName);
if(it != itsconnectedVIclientPorts.end()) {
LOGICALDEVICEScheduleEvent scheduleEvent;
scheduleEvent.fileName = parameterFileName;
it->second->send(scheduleEvent);
}
else {
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_VI_NOT_FOUND;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
catch(Exception& e) {
LOG_FATAL(formatString("Error reading schedule parameters: %s",e.message().c_str()));
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_UNSPECIFIED;
sasResponseEvent.VIrootID = VIrootID;
if(port != 0) {
port->send(sasResponseEvent);
}
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
//
// _cancelSchedule(rootVI, port)
//
void MACScheduler::_cancelSchedule(const string& VIrootID, GCFPortInterface* /*port*/)
{
string shareLocation = _getShareLocation(); //REO
// search the port of the VI
try {
boost::shared_ptr<ACC::APS::ParameterSet> ps = _readParameterSet(VIrootID);
string viName = ps->getString("name");
// send a CANCELSCHEDULE message
TStringRemotePortMap::iterator it = itsconnectedVIclientPorts.find(viName);
if(it != itsconnectedVIclientPorts.end()) {
LOGICALDEVICECancelscheduleEvent cancelScheduleEvent;
it->second->send(cancelScheduleEvent);
}
else {
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_VI_NOT_FOUND;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
catch(Exception& e)
{
LOG_FATAL(formatString("Error reading schedule parameters: %s",e.message().c_str()));
SASResponseEvent sasResponseEvent;
sasResponseEvent.result = SAS_RESULT_ERROR_UNSPECIFIED;
itsPropertySet->setValue(string(MS_PROPNAME_STATUS),GCFPVInteger(sasResponseEvent.result));
}
}
//
// _isServerPort(server, port)
//
bool MACScheduler::_isServerPort(const GCFPortInterface& server,
const GCFPortInterface& port) const
{
return (&port == &server); // comparing two pointers. yuck?
}
//
// _isVISDclientPort(port, visd)
//
bool MACScheduler::_isVISDclientPort(const GCFPortInterface& port,
string& visd) const
{
bool found=false;
TStringRemotePortMap::const_iterator it=itsVISDclientPorts.begin();
while(!found && it != itsVISDclientPorts.end()) {
found = (&port == it->second.get()); // comparing two pointers. yuck?
if(found) {
visd = it->first;
}
++it;
}
return (found);
}
//
// _isVIclientPort(port)
//
bool MACScheduler::_isVIclientPort(const GCFPortInterface& port) const
{
bool found=false;
TRemotePortVector::const_iterator it=itsVIclientPorts.begin();
while(!found && it != itsVIclientPorts.end()) {
found = (&port == (*it).get()); // comparing two pointers. yuck?
++it;
}
return (found);
}
//
// _getVInameFromPort(port)
//
string MACScheduler::_getVInameFromPort(const GCF::TM::GCFPortInterface& port) const
{
string viName("");
if(_isVIclientPort(port)) {
bool found = false;
TStringRemotePortMap::const_iterator it = itsconnectedVIclientPorts.begin();
while(!found && it != itsconnectedVIclientPorts.end()) {
found = (&port == it->second.get());
if(found) {
viName = it->first;
}
++it;
}
}
return (viName);
}
#endif
//
// _connectedHandler(port)
//
void MACScheduler::_connectedHandler(GCFPortInterface& port)
{
}
//
// _disconnectedHandler(port)
//
void MACScheduler::_disconnectedHandler(GCFPortInterface& port)
{
string visd;
port.close();
#if 0
if(_isServerPort(itsVIparentPort,port)) {
LOG_FATAL("VI parent server closed");
itsVIparentPort.open(); // server closed? reopen it
}
else if(_isVISDclientPort(port,visd)) {
LOG_FATAL(formatString("VI Startdaemon port disconnected: %s",visd.c_str()));
port.setTimer(3L);
}
else if(_isVIclientPort(port)) {
LOG_FATAL("VI client port disconnected");
// do something with the nodeId?
}
#endif
}
};
};