source: trunk/FACT++/src/fscctrl.cc@ 11837

Last change on this file since 11837 was 11835, checked in by tbretz, 14 years ago
Fixed a bug in a format string.
File size: 23.9 KB
Line 
1#include <functional>
2
3#include "Dim.h"
4#include "Event.h"
5#include "Shell.h"
6#include "StateMachineDim.h"
7#include "Connection.h"
8#include "Configuration.h"
9#include "Console.h"
10#include "Converter.h"
11
12#include "tools.h"
13
14namespace ba = boost::asio;
15namespace bs = boost::system;
16namespace dummy = ba::placeholders;
17
18using namespace std;
19
20// ------------------------------------------------------------------------
21
22class ConnectionFSC : public Connection
23{
24 boost::asio::streambuf fBuffer;
25
26 bool fIsVerbose;
27 bool fDump;
28
29 ofstream fDumpStream;
30
31protected:
32
33 virtual void UpdateTemp(float, const vector<float> &)
34 {
35 }
36
37 virtual void UpdateHum(float, const vector<float>&)
38 {
39 }
40
41 virtual void UpdateVolt(float, const vector<float>&)
42 {
43 }
44
45 virtual void UpdateCur(float, const vector<float>&)
46 {
47 }
48
49 /*
50 virtual void UpdateError()
51 {
52 if (!fIsVerbose)
53 return;
54
55 Out() << endl << kRed << "Error received:" << endl;
56 Out() << fError;
57 if (fIsHexOutput)
58 Out() << Converter::GetHex<uint16_t>(fError, 16) << endl;
59 }
60*/
61
62 void Dump(const string &str)
63 {
64 if (!fDumpStream.is_open())
65 {
66 fDumpStream.open("socket_dump-fsc.txt", ios::app);
67 if (!fDumpStream)
68 {
69 //ostringstream str;
70 //str << "Open file " << name << ": " << strerror(errno) << " (errno=" << errno << ")";
71 //Error(str);
72
73 return;
74 }
75 }
76
77 fDumpStream << str << endl;
78 }
79
80private:
81 //
82 // From: http://de.wikipedia.org/wiki/Pt100
83 //
84 double GetTempPT1000(double R) const
85 {
86 const double R0 = 1000; // 1kOhm
87
88 const double a = 3.85e-3;
89
90 return (R/R0 - 1)/a;
91 }
92
93
94 void HandleReceivedData(const bs::error_code& err, size_t bytes_received, int /*type*/)
95 {
96 // Do not schedule a new read if the connection failed.
97 if (bytes_received==0 || err)
98 {
99 if (err==ba::error::eof)
100 Warn("Connection closed by remote host (FTM).");
101
102 // 107: Transport endpoint is not connected (bs::error_code(107, bs::system_category))
103 // 125: Operation canceled
104 if (err && err!=ba::error::eof && // Connection closed by remote host
105 err!=ba::error::basic_errors::not_connected && // Connection closed by remote host
106 err!=ba::error::basic_errors::operation_aborted) // Connection closed by us
107 {
108 ostringstream str;
109 str << "Reading from " << URL() << ": " << err.message() << " (" << err << ")";// << endl;
110 Error(str);
111 }
112 PostClose(err!=ba::error::basic_errors::operation_aborted);
113 return;
114 }
115
116 if (fIsVerbose)
117 Out() << kBold << "Received (" << bytes_received << " bytes):" << endl;
118
119 /*
120 "status: 00000538 \n"
121 "time_s: 764.755 \n"
122 "VOLTAGES \n"
123 " \n"
124 "enable:11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 00001111 \n"
125 " done:11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 00001111 \n"
126 "values:0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00 0 0 0 0 0 0 0 0 \n"
127 "RESISTANCES \n"
128 " \n"
129 "enable:11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 \n"
130 " done:11111111 11111111 11111111 11111111 11111111 11111111 11111111 11111111 \n"
131 "values: \n"
132 "1000.16 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
133 "3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
134 "1197.07 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
135 " 558.59 677.92 817.26 989.39 1200.35 1503.06 1799.90 2204.18 \n"
136 "3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
137 "3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
138 "3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
139 "3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 3199.99 \n"
140 "end.\n";
141 */
142/*
143 const unsigned int TIME_OFF = 3;
144 const unsigned int VOLT_OFF = 30;
145 const unsigned int CURR_OFF = 70;
146 const unsigned int HUMI_OFF = 110;
147 const unsigned int TEMP_OFF = 134;
148 */
149
150 if (fDump)
151 {
152 ostringstream msg;
153 msg << "--- " << Time().GetAsStr() << " --- received " << bytes_received << " bytes.";
154 Dump(msg.str());
155 }
156
157
158 istream is(&fBuffer);
159
160 int state = 0;
161 bool values = false;
162
163 vector<int> volt;
164 vector<float> resist;
165 int status=-1;
166 float time=0;
167
168 string buffer;
169 while (getline(is, buffer, '\n'))
170 {
171 if (fIsVerbose)
172 Out() << buffer << endl;
173 if (fDump)
174 Dump(buffer);
175
176 buffer = Tools::Trim(buffer);
177
178 if (buffer.empty())
179 continue;
180
181 if (buffer.substr(0, 4)=="end.")
182 break;
183
184 if (buffer.substr(0, 8)=="status: ")
185 {
186 status = stoi(buffer.substr(8));
187 continue;
188 }
189
190 if (buffer.substr(0, 8)=="time_s: ")
191 {
192 time = stof(buffer.substr(8));
193 continue;
194 }
195
196 if (buffer.substr(0, 8)=="VOLTAGES")
197 {
198 state = 1;
199 continue;
200 }
201
202 if (buffer.substr(0, 11)=="RESISTANCES")
203 {
204 state = 2;
205 continue;
206 }
207
208 if (state==1 && buffer.substr(0, 7)=="values:")
209 {
210 istringstream in(buffer.substr(7));
211 while (1)
212 {
213 int v;
214 in >> v;
215 if (!in)
216 break;
217
218 volt.push_back(v);
219 }
220 continue;
221 }
222
223 if (state==2 && buffer.substr(0, 7)=="values:")
224 {
225 values = true;
226 continue;
227 }
228
229 if (state==2 && !values)
230 continue;
231
232 istringstream in(buffer);
233 while (1)
234 {
235 float f;
236 in >> f;
237 if (!in)
238 break;
239
240 resist.push_back(f);
241 }
242 }
243
244 int mapv[] =
245 {
246 0, 24, 16, 8,
247 1, 25, 17, 9,
248 2, 26, 18, 10,
249 //
250 3, 27, 19, 11,
251 4, 28, 20, 12,
252 5, 29, 21, 13,
253 //
254 32, 36, 33, 34, 37, 38,
255 //
256 -1
257 };
258
259
260 int mapc[] =
261 {
262 40, 64, 56, 48,
263 41, 65, 57, 49,
264 42, 66, 58, 50,
265 //
266 43, 67, 59, 51,
267 44, 68, 60, 52,
268 45, 69, 61, 53,
269 //
270 72, 76, 73, 74, 77, 78,
271 //
272 -1
273 };
274
275
276 int maprh[] =
277 {
278 80, 81, 82, 83, -1
279 };
280
281 int offrh[] =
282 {
283 821, 822, 816, 822,
284 };
285
286 int mapt[] =
287 {
288 0, 1, 2, 3, 4, 5, 6, 56, 57, 58, 59, 60,
289 61, 62, 32, 33, 34, 35, 36, 63, 37, 38, 39, 24,
290 25, 26, 27, 28, 29, 30, 31,
291 //
292 8, 9, 48, 49, 40, 41, 16, 17,
293 //
294 10, 11, 50, 51, 42, 43, 18, 19, 12, 52, 20, 44,
295 //
296 13, 21, 45, 53,
297 //
298 14, 15, 46, 47,
299 //
300 -1
301 };
302
303 vector<float> voltages;
304 vector<float> currents;
305 vector<float> humidities;
306 vector<float> temperatures;
307
308 for (int *pv=mapv; *pv>0; pv++)
309 voltages.push_back(volt[*pv]);
310
311 for (int *pc=mapc; *pc>0; pc++)
312 currents.push_back(volt[*pc]*5);
313
314 for (int idx=0; idx<4; idx++)
315 {
316 voltages[idx +8] *= -1;
317 voltages[idx+20] *= -1;
318 currents[idx +8] *= -1;
319 currents[idx+20] *= -1;
320 }
321 voltages[27] *= -1;
322 voltages[29] *= -1;
323 currents[27] *= -1;
324 currents[29] *= -1;
325
326 int idx=0;
327 for (int *ph=maprh; *ph>0; ph++, idx++)
328 humidities.push_back((volt[*ph]-offrh[idx])*0.0313);
329
330 for (int *pt=mapt; *pt>0; pt++)
331 temperatures.push_back(resist[*pt]>800&&resist[*pt]<2000 ? GetTempPT1000(resist[*pt]) : 0);
332
333 // 0 = 3-(3+0)%4
334 // 3 = 3-(3+1)%4
335 // 2 = 3-(3+2)%4
336 // 1 = 3-(3+3)%4
337
338 /*
339 index unit offset scale crate for board:
340 0 mV 0 1 0 FAD
341 24 mV 0 1 1 FAD
342 16 mV 0 1 2 FAD
343 8 mV 0 1 3 FAD
344
345 1 mV 0 1 0 FAD
346 25 mV 0 1 1 FAD
347 17 mV 0 1 2 FAD
348 9 mV 0 1 3 FAD
349
350 2 mV 0 -1 0 FAD
351 26 mV 0 -1 1 FAD
352 18 mV 0 -1 2 FAD
353 10 mV 0 -1 3 FAD
354
355 --
356
357 3 mV 0 1 0 FPA
358 27 mV 0 1 1 FPA
359 19 mV 0 1 2 FPA
360 11 mV 0 1 3 FPA
361
362 4 mV 0 1 0 FPA
363 28 mV 0 1 1 FPA
364 20 mV 0 1 2 FPA
365 12 mV 0 1 3 FPA
366
367 5 mV 0 -1 0 FPA
368 29 mV 0 -1 1 FPA
369 21 mV 0 -1 2 FPA
370 13 mV 0 -1 3 FPA
371
372 --
373
374 32 mV 0 1 bottom ETH
375 36 mV 0 1 top ETH
376
377 33 mV 0 1 bottom FTM
378 34 mV 0 -1 bottom FTM
379
380 37 mV 0 1 top FFC
381 38 mV 0 -1 top FLP
382
383 -----
384
385 40 mA 0 5 0 FAD
386 64 mA 0 5 1 FAD
387 56 mA 0 5 2 FAD
388 48 mA 0 5 3 FAD
389
390 41 mA 0 5 0 FAD
391 65 mA 0 5 1 FAD
392 57 mA 0 5 2 FAD
393 49 mA 0 5 3 FAD
394
395 42 mA 0 -5 0 FAD
396 66 mA 0 -5 1 FAD
397 58 mA 0 -5 2 FAD
398 50 mA 0 -5 3 FAD
399
400 --
401
402 43 mA 0 5 0 FPA
403 67 mA 0 5 1 FPA
404 59 mA 0 5 2 FPA
405 51 mA 0 5 3 FPA
406
407 44 mA 0 5 0 FPA
408 68 mA 0 5 1 FPA
409 60 mA 0 5 2 FPA
410 52 mA 0 5 3 FPA
411
412 45 mA 0 -5 0 FPA
413 69 mA 0 -5 1 FPA
414 61 mA 0 -5 2 FPA
415 53 mA 0 -5 3 FPA
416
417 ---
418
419 72 mA 0 5 bottom ETH
420 76 mA 0 5 top ETH
421
422 73 mA 0 5 bottom FTM
423 74 mA 0 -5 bottom FTM
424
425 77 mA 0 5 top FFC
426 78 mA 0 -5 top FLP
427
428 ----
429
430 80 % RH -821 0.0313 FSP000
431 81 % RH -822 0.0313 FSP221
432 82 % RH -816 0.0313 Sector0
433 83 % RH -822 0.0313 Sector2
434 */
435
436 // TEMPERATURES
437 // 31 x Sensor plate
438 // 8 x Crate
439 // 12 x PS
440 // 4 x Backpanel
441 // 4 x Switchbox
442
443
444
445 /*
446 0 ohms FSP 000
447 1 ohms FSP 010
448 2 ohms FSP 023
449 3 ohms FSP 043
450 4 ohms FSP 072
451 5 ohms FSP 080
452 6 ohms FSP 092
453 56 ohms FSP 103
454 57 ohms FSP 111
455 58 ohms FSP 121
456 59 ohms FSP 152
457 60 ohms FSP 163
458 61 ohms FSP 171
459 62 ohms FSP 192
460 32 ohms FSP 200
461 33 ohms FSP 210
462 34 ohms FSP 223
463 35 ohms FSP 233
464 36 ohms FSP 243
465 63 ohms FSP 252
466 37 ohms FSP 280
467 38 ohms FSP 283
468 39 ohms FSP 293
469 24 ohms FSP 311
470 25 ohms FSP 321
471 26 ohms FSP 343
472 27 ohms FSP 352
473 28 ohms FSP 363
474 29 ohms FSP 371
475 30 ohms FSP 381
476 31 ohms FSP 392
477 8 ohms Crate0 ?
478 9 ohms Crate0 ?
479 48 ohms Crate1 ?
480 49 ohms Crate1 ?
481 40 ohms Crate2 ?
482 41 ohms Crate2 ?
483 16 ohms Crate3 ?
484 17 ohms Crate3 ?
485 10 ohms PS Crate 0
486 11 ohms PS Crate 0
487 50 ohms PS Crate 1
488 51 ohms PS Crate 1
489 42 ohms PS Crate 2
490 43 ohms PS Crate 2
491 18 ohms PS Crate 3
492 19 ohms PS Crate 3
493 12 ohms PS Aux0
494 52 ohms PS Aux0
495 20 ohms PS Aux1
496 44 ohms PS Aux1
497 13 ohms Backpanel ?
498 21 ohms Backpanel ?
499 45 ohms Backpanel ?
500 53 ohms Backpanel ?
501 14 ohms Switchbox0 ?
502 15 ohms Switchbox0 ?
503 46 ohms Switchbox1 ?
504 47 ohms Switchbox1 ?
505 7 ohms nc nc
506 22 ohms nc nc
507 23 ohms nc nc
508 54 ohms nc nc
509 55 ohms nc nc
510 */
511
512 for (size_t i=0; i<resist.size(); i++)
513 if (resist[i]>800 && resist[i]<2000)
514 cout << setw(2) << i << " - " << setw(4) << (int)resist[i] << ": " << setprecision(1) << fixed << GetTempPT1000(resist[i]) << endl;
515 else
516 cout << setw(2) << i << " - " << setw(4) << (int)resist[i] << ": " << "----" << endl;
517
518 UpdateTemp(time, temperatures);
519 UpdateVolt(time, voltages);
520 UpdateCur( time, currents);
521 UpdateHum( time, humidities);
522
523 StartRead();
524 }
525
526 void StartRead()
527 {
528 ba::async_read_until(*this, fBuffer, "end.\n",
529 boost::bind(&ConnectionFSC::HandleReceivedData, this,
530 dummy::error, dummy::bytes_transferred, 0));
531
532 // FIXME: Add timeout here
533 }
534
535 // This is called when a connection was established
536 void ConnectionEstablished()
537 {
538 PostMessage("m", 1);
539
540 fBuffer.prepare(10000);
541 StartRead();
542 }
543
544/*
545 void HandleReadTimeout(const bs::error_code &error)
546 {
547 if (error==ba::error::basic_errors::operation_aborted)
548 return;
549
550 if (error)
551 {
552 ostringstream str;
553 str << "Read timeout of " << URL() << ": " << error.message() << " (" << error << ")";// << endl;
554 Error(str);
555
556 PostClose();
557 return;
558
559 }
560
561 if (!is_open())
562 {
563 // For example: Here we could schedule a new accept if we
564 // would not want to allow two connections at the same time.
565 return;
566 }
567
568 // Check whether the deadline has passed. We compare the deadline
569 // against the current time since a new asynchronous operation
570 // may have moved the deadline before this actor had a chance
571 // to run.
572 if (fInTimeout.expires_at() > ba::deadline_timer::traits_type::now())
573 return;
574
575 Error("Timeout reading data from "+URL());
576
577 PostClose();
578 }
579*/
580
581public:
582 ConnectionFSC(ba::io_service& ioservice, MessageImp &imp) : Connection(ioservice, imp()),
583 fIsVerbose(true), fDump(false)
584 {
585 SetLogStream(&imp);
586 }
587
588 void SetVerbose(bool b)
589 {
590 fIsVerbose = b;
591 }
592
593 void SetDumpStream(bool b)
594 {
595 fDump = b;
596 }
597};
598
599// ------------------------------------------------------------------------
600
601#include "DimDescriptionService.h"
602
603class ConnectionDimFSC : public ConnectionFSC
604{
605private:
606
607 DimDescribedService fDimTemp;
608 DimDescribedService fDimHum;
609 DimDescribedService fDimVolt;
610 DimDescribedService fDimCurrent;
611
612 void Update(DimDescribedService &svc, vector<float> data, float time) const
613 {
614 data.insert(data.begin(), time);
615 svc.Update(data);
616 }
617
618 void UpdateTemp(float time, const vector<float> &temp)
619 {
620 Update(fDimTemp, temp, time);
621 }
622
623 void UpdateHum(float time, const vector<float> &hum)
624 {
625 Update(fDimHum, hum, time);
626 }
627
628 void UpdateVolt(float time, const vector<float> &volt)
629 {
630 Update(fDimVolt, volt, time);
631 }
632
633 void UpdateCur(float time, const vector<float> &curr)
634 {
635 Update(fDimCurrent, curr, time);
636 }
637
638public:
639 ConnectionDimFSC(ba::io_service& ioservice, MessageImp &imp) :
640 ConnectionFSC(ioservice, imp),
641 fDimTemp ("FSC_CONTROL/TEMPERATURE", "F:1;F:31;F:8;F:12;F:4;F:4", ""),
642 fDimHum ("FSC_CONTROL/HUMIDITY", "F:1;F:1;F:1;F:1;F:1", ""),
643 fDimVolt ("FSC_CONTROL/VOLTAGE", "F:1;F:4;F:4;F:4;F:4;F:4;F:4;F:2;F:2;F:1;F:1", ""),
644 fDimCurrent("FSC_CONTROL/CURRENT", "F:1;F:4;F:4;F:4;F:4;F:4;F:4;F:2;F:2;F:1;F:1", "")
645 {
646 }
647
648 // A B [C] [D] E [F] G H [I] J K [L] M N O P Q R [S] T U V W [X] Y Z
649};
650
651// ------------------------------------------------------------------------
652
653template <class T, class S>
654class StateMachineFSC : public T, public ba::io_service, public ba::io_service::work
655{
656 int Wrap(boost::function<void()> f)
657 {
658 f();
659 return T::GetCurrentState();
660 }
661
662 function<int(const EventImp &)> Wrapper(function<void()> func)
663 {
664 return bind(&StateMachineFSC::Wrap, this, func);
665 }
666
667private:
668 S fFSC;
669
670 enum states_t
671 {
672 kStateDisconnected = 1,
673 kStateConnected = 2,
674 };
675
676 int Disconnect()
677 {
678 // Close all connections
679 fFSC.PostClose(false);
680
681 /*
682 // Now wait until all connection have been closed and
683 // all pending handlers have been processed
684 poll();
685 */
686
687 return T::GetCurrentState();
688 }
689
690 int Reconnect(const EventImp &evt)
691 {
692 // Close all connections to supress the warning in SetEndpoint
693 fFSC.PostClose(false);
694
695 // Now wait until all connection have been closed and
696 // all pending handlers have been processed
697 poll();
698
699 if (evt.GetBool())
700 fFSC.SetEndpoint(evt.GetString());
701
702 // Now we can reopen the connection
703 fFSC.PostClose(true);
704
705 return T::GetCurrentState();
706 }
707
708 int Execute()
709 {
710 // Dispatch (execute) at most one handler from the queue. In contrary
711 // to run_one(), it doesn't wait until a handler is available
712 // which can be dispatched, so poll_one() might return with 0
713 // handlers dispatched. The handlers are always dispatched/executed
714 // synchronously, i.e. within the call to poll_one()
715 poll_one();
716
717 return fFSC.IsConnected() ? kStateConnected : kStateDisconnected;
718 }
719
720 bool CheckEventSize(size_t has, const char *name, size_t size)
721 {
722 if (has==size)
723 return true;
724
725 ostringstream msg;
726 msg << name << " - Received event has " << has << " bytes, but expected " << size << ".";
727 T::Fatal(msg);
728 return false;
729 }
730
731 int SetVerbosity(const EventImp &evt)
732 {
733 if (!CheckEventSize(evt.GetSize(), "SetVerbosity", 1))
734 return T::kSM_FatalError;
735
736 fFSC.SetVerbose(evt.GetBool());
737
738 return T::GetCurrentState();
739 }
740
741 int SetDumpStream(const EventImp &evt)
742 {
743 if (!CheckEventSize(evt.GetSize(), "SetDumpStream", 1))
744 return T::kSM_FatalError;
745
746 fFSC.SetDumpStream(evt.GetBool());
747
748 return T::GetCurrentState();
749 }
750
751public:
752 StateMachineFSC(ostream &out=cout) :
753 T(out, "FSC_CONTROL"), ba::io_service::work(static_cast<ba::io_service&>(*this)),
754 fFSC(*this, *this)
755 {
756 // ba::io_service::work is a kind of keep_alive for the loop.
757 // It prevents the io_service to go to stopped state, which
758 // would prevent any consecutive calls to run()
759 // or poll() to do nothing. reset() could also revoke to the
760 // previous state but this might introduce some overhead of
761 // deletion and creation of threads and more.
762
763 // State names
764 AddStateName(kStateDisconnected, "Disconnected",
765 "FSC board not connected via ethernet.");
766
767 AddStateName(kStateConnected, "Connected",
768 "Ethernet connection to FSC established.");
769
770 // Verbosity commands
771 T::AddEvent("SET_VERBOSE", "B:1")
772 (bind(&StateMachineFSC::SetVerbosity, this, placeholders::_1))
773 ("set verbosity state"
774 "|verbosity[bool]:disable or enable verbosity for received data (yes/no), except dynamic data");
775
776 T::AddEvent("DUMP_STREAM", "B:1")
777 (bind(&StateMachineFSC::SetDumpStream, this, placeholders::_1))
778 (""
779 "");
780
781 // Conenction commands
782 AddEvent("DISCONNECT", kStateConnected)
783 (bind(&StateMachineFSC::Disconnect, this))
784 ("disconnect from ethernet");
785
786 AddEvent("RECONNECT", "O", kStateDisconnected, kStateConnected)
787 (bind(&StateMachineFSC::Reconnect, this, placeholders::_1))
788 ("(Re)connect ethernet connection to FTM, a new address can be given"
789 "|[host][string]:new ethernet address in the form <host:port>");
790
791 fFSC.StartConnect();
792 }
793
794 void SetEndpoint(const string &url)
795 {
796 fFSC.SetEndpoint(url);
797 }
798
799 int EvalOptions(Configuration &conf)
800 {
801 SetEndpoint(conf.Get<string>("addr"));
802
803 fFSC.SetVerbose(!conf.Get<bool>("quiet"));
804
805 return -1;
806 }
807};
808
809// ------------------------------------------------------------------------
810
811#include "Main.h"
812
813template<class T, class S, class R>
814int RunShell(Configuration &conf)
815{
816 return Main::execute<T, StateMachineFSC<S, R>>(conf);
817}
818
819void SetupConfiguration(Configuration &conf)
820{
821 po::options_description control("FTM control options");
822 control.add_options()
823 ("no-dim", po_bool(), "Disable dim services")
824 ("addr,a", var<string>("localhost:5000"), "Network address of FTM")
825 ("quiet,q", po_bool(), "Disable printing contents of all received messages (except dynamic data) in clear text.")
826 ;
827
828 conf.AddOptions(control);
829}
830
831/*
832 Extract usage clause(s) [if any] for SYNOPSIS.
833 Translators: "Usage" and "or" here are patterns (regular expressions) which
834 are used to match the usage synopsis in program output. An example from cp
835 (GNU coreutils) which contains both strings:
836 Usage: cp [OPTION]... [-T] SOURCE DEST
837 or: cp [OPTION]... SOURCE... DIRECTORY
838 or: cp [OPTION]... -t DIRECTORY SOURCE...
839 */
840void PrintUsage()
841{
842 cout <<
843 "The ftmctrl controls the FSC (FACT Slow Control) board.\n"
844 "\n"
845 "The default is that the program is started without user intercation. "
846 "All actions are supposed to arrive as DimCommands. Using the -c "
847 "option, a local shell can be initialized. With h or help a short "
848 "help message about the usuage can be brought to the screen.\n"
849 "\n"
850 "Usage: fscctrl [-c type] [OPTIONS]\n"
851 " or: fscctrl [OPTIONS]\n";
852 cout << endl;
853}
854
855void PrintHelp()
856{
857 /* Additional help text which is printed after the configuration
858 options goes here */
859
860 /*
861 cout << "bla bla bla" << endl << endl;
862 cout << endl;
863 cout << "Environment:" << endl;
864 cout << "environment" << endl;
865 cout << endl;
866 cout << "Examples:" << endl;
867 cout << "test exam" << endl;
868 cout << endl;
869 cout << "Files:" << endl;
870 cout << "files" << endl;
871 cout << endl;
872 */
873}
874
875int main(int argc, const char* argv[])
876{
877 Configuration conf(argv[0]);
878 conf.SetPrintUsage(PrintUsage);
879 Main::SetupConfiguration(conf);
880 SetupConfiguration(conf);
881
882 if (!conf.DoParse(argc, argv, PrintHelp))
883 return -1;
884
885 //try
886 {
887 // No console access at all
888 if (!conf.Has("console"))
889 {
890 if (conf.Get<bool>("no-dim"))
891 return RunShell<LocalStream, StateMachine, ConnectionFSC>(conf);
892 else
893 return RunShell<LocalStream, StateMachineDim, ConnectionDimFSC>(conf);
894 }
895 // Cosole access w/ and w/o Dim
896 if (conf.Get<bool>("no-dim"))
897 {
898 if (conf.Get<int>("console")==0)
899 return RunShell<LocalShell, StateMachine, ConnectionFSC>(conf);
900 else
901 return RunShell<LocalConsole, StateMachine, ConnectionFSC>(conf);
902 }
903 else
904 {
905 if (conf.Get<int>("console")==0)
906 return RunShell<LocalShell, StateMachineDim, ConnectionDimFSC>(conf);
907 else
908 return RunShell<LocalConsole, StateMachineDim, ConnectionDimFSC>(conf);
909 }
910 }
911 /*catch (std::exception& e)
912 {
913 cerr << "Exception: " << e.what() << endl;
914 return -1;
915 }*/
916
917 return 0;
918}
Note: See TracBrowser for help on using the repository browser.