author | Florian Pose <fp@igh-essen.com> |
Wed, 17 Feb 2010 16:33:19 +0100 | |
changeset 1816 | b0be777fe972 |
parent 1363 | 11c0b2caa253 |
child 1826 | ec6223c3b7ec |
permissions | -rw-r--r-- |
1142 | 1 |
/***************************************************************************** |
2 |
* |
|
1363
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
3 |
* $Id$ |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
4 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
6 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
7 |
* This file is part of the IgH EtherCAT Master. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
8 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
9 |
* The IgH EtherCAT Master is free software; you can redistribute it and/or |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
10 |
* modify it under the terms of the GNU General Public License version 2, as |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
11 |
* published by the Free Software Foundation. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
12 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
13 |
* The IgH EtherCAT Master is distributed in the hope that it will be useful, |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
16 |
* Public License for more details. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
17 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
18 |
* You should have received a copy of the GNU General Public License along |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
19 |
* with the IgH EtherCAT Master; if not, write to the Free Software |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
20 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
21 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
22 |
* --- |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
23 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
24 |
* The license mentioned above concerns the source code only. Using the |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
25 |
* EtherCAT technology and brand is only permitted in compliance with the |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1337
diff
changeset
|
26 |
* industrial property and similar rights of Beckhoff Automation GmbH. |
1142 | 27 |
* |
28 |
****************************************************************************/ |
|
29 |
||
30 |
#include <iostream> |
|
1222
7348d6abb6cb
Applied patch by Karsten Schwinne, adding a few header files necessary
Florian Pose <fp@igh-essen.com>
parents:
1157
diff
changeset
|
31 |
#include <algorithm> |
1142 | 32 |
using namespace std; |
33 |
||
34 |
#include "CommandStates.h" |
|
35 |
||
36 |
/*****************************************************************************/ |
|
37 |
||
38 |
CommandStates::CommandStates(): |
|
39 |
Command("states", "Request application-layer states.") |
|
40 |
{ |
|
41 |
} |
|
42 |
||
43 |
/*****************************************************************************/ |
|
44 |
||
45 |
string CommandStates::helpString() const |
|
46 |
{ |
|
47 |
stringstream str; |
|
48 |
||
49 |
str << getName() << " [OPTIONS] <STATE>" << endl |
|
50 |
<< endl |
|
51 |
<< getBriefDescription() << endl |
|
52 |
<< endl |
|
53 |
<< "Arguments:" << endl |
|
1337
0253c74d0940
merge -c1619 branches/1.4-foe: Implemented going to bootstrap state BOOT.
Florian Pose <fp@igh-essen.com>
parents:
1222
diff
changeset
|
54 |
<< " STATE can be 'INIT', 'PREOP', 'BOOT', 'SAFEOP', or 'OP'." << endl |
1142 | 55 |
<< endl |
56 |
<< "Command-specific options:" << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
57 |
<< " --alias -a <alias>" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
58 |
<< " --position -p <pos> Slave selection. See the help of" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
59 |
<< " the 'slaves' command." << endl |
1142 | 60 |
<< endl |
61 |
<< numericInfo(); |
|
62 |
||
63 |
return str.str(); |
|
64 |
} |
|
65 |
||
66 |
/****************************************************************************/ |
|
67 |
||
68 |
void CommandStates::execute(MasterDevice &m, const StringVector &args) |
|
69 |
{ |
|
1151 | 70 |
SlaveList slaves; |
71 |
SlaveList::const_iterator si; |
|
1142 | 72 |
stringstream err; |
73 |
string stateStr; |
|
74 |
uint8_t state = 0x00; |
|
75 |
||
76 |
if (args.size() != 1) { |
|
77 |
err << "'" << getName() << "' takes exactly one argument!"; |
|
78 |
throwInvalidUsageException(err); |
|
79 |
} |
|
80 |
||
81 |
stateStr = args[0]; |
|
82 |
transform(stateStr.begin(), stateStr.end(), |
|
83 |
stateStr.begin(), (int (*) (int)) std::toupper); |
|
84 |
||
85 |
if (stateStr == "INIT") { |
|
86 |
state = 0x01; |
|
87 |
} else if (stateStr == "PREOP") { |
|
88 |
state = 0x02; |
|
1337
0253c74d0940
merge -c1619 branches/1.4-foe: Implemented going to bootstrap state BOOT.
Florian Pose <fp@igh-essen.com>
parents:
1222
diff
changeset
|
89 |
} else if (stateStr == "BOOT") { |
0253c74d0940
merge -c1619 branches/1.4-foe: Implemented going to bootstrap state BOOT.
Florian Pose <fp@igh-essen.com>
parents:
1222
diff
changeset
|
90 |
state = 0x03; |
1142 | 91 |
} else if (stateStr == "SAFEOP") { |
92 |
state = 0x04; |
|
93 |
} else if (stateStr == "OP") { |
|
94 |
state = 0x08; |
|
95 |
} else { |
|
96 |
err << "Invalid state '" << args[0] << "'!"; |
|
97 |
throwInvalidUsageException(err); |
|
98 |
} |
|
99 |
||
100 |
m.open(MasterDevice::ReadWrite); |
|
1151 | 101 |
slaves = selectedSlaves(m); |
1142 | 102 |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
103 |
if (!slaves.size() && getVerbosity() != Quiet) { |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
104 |
cerr << "Warning: Selection matches no slaves!" << endl; |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
105 |
} |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
106 |
|
1151 | 107 |
for (si = slaves.begin(); si != slaves.end(); si++) { |
108 |
m.requestState(si->position, state); |
|
1142 | 109 |
} |
110 |
} |
|
111 |
||
112 |
/*****************************************************************************/ |