author | Florian Pose <fp@igh-essen.com> |
Mon, 29 Mar 2010 12:49:38 +0200 | |
changeset 1885 | 622eb9b13e49 |
parent 1870 | 0cee1fb7f0fd |
child 1968 | 4f682084c643 |
permissions | -rw-r--r-- |
1200 | 1 |
/***************************************************************************** |
2 |
* |
|
1363
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
3 |
* $Id$ |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
4 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
6 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
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:
1200
diff
changeset
|
8 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
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:
1200
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:
1200
diff
changeset
|
11 |
* published by the Free Software Foundation. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
12 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
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:
1200
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:
1200
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:
1200
diff
changeset
|
16 |
* Public License for more details. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
17 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
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:
1200
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:
1200
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:
1200
diff
changeset
|
21 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
22 |
* --- |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
diff
changeset
|
23 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1200
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:
1200
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:
1200
diff
changeset
|
26 |
* industrial property and similar rights of Beckhoff Automation GmbH. |
1200 | 27 |
* |
28 |
****************************************************************************/ |
|
29 |
||
30 |
#include <iostream> |
|
31 |
#include <iomanip> |
|
32 |
using namespace std; |
|
33 |
||
1388
3c886ec376f5
Renamed phy_ commands to reg_.
Florian Pose <fp@igh-essen.com>
parents:
1387
diff
changeset
|
34 |
#include "CommandRegRead.h" |
1826
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
35 |
#include "MasterDevice.h" |
1200 | 36 |
|
37 |
/*****************************************************************************/ |
|
38 |
||
1388
3c886ec376f5
Renamed phy_ commands to reg_.
Florian Pose <fp@igh-essen.com>
parents:
1387
diff
changeset
|
39 |
CommandRegRead::CommandRegRead(): |
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
40 |
Command("reg_read", "Output a slave's register contents.") |
1200 | 41 |
{ |
42 |
} |
|
43 |
||
44 |
/*****************************************************************************/ |
|
45 |
||
1388
3c886ec376f5
Renamed phy_ commands to reg_.
Florian Pose <fp@igh-essen.com>
parents:
1387
diff
changeset
|
46 |
string CommandRegRead::helpString() const |
1200 | 47 |
{ |
48 |
stringstream str; |
|
49 |
||
1387 | 50 |
str << getName() << " [OPTIONS] <OFFSET> [LENGTH]" << endl |
1804 | 51 |
<< endl |
52 |
<< getBriefDescription() << endl |
|
53 |
<< endl |
|
1200 | 54 |
<< "This command requires a single slave to be selected." << endl |
1804 | 55 |
<< endl |
1200 | 56 |
<< "Arguments:" << endl |
1388
3c886ec376f5
Renamed phy_ commands to reg_.
Florian Pose <fp@igh-essen.com>
parents:
1387
diff
changeset
|
57 |
<< " OFFSET is the register address. Must" << endl |
1200 | 58 |
<< " be an unsigned 16 bit number." << endl |
59 |
<< " LENGTH is the number of bytes to read and must also be" << endl |
|
60 |
<< " an unsigned 16 bit number. OFFSET plus LENGTH" << endl |
|
1387 | 61 |
<< " may not exceed 64k. The length is ignored (and" << endl |
62 |
<< " can be omitted), if a selected data type" << endl |
|
63 |
<< " implies a length." << endl |
|
64 |
<< endl |
|
1868
489ea0becd74
Implemented SoE IDN parser for strings like 'P-0-0150'; moved data type
Florian Pose <fp@igh-essen.com>
parents:
1835
diff
changeset
|
65 |
<< typeInfo() |
1200 | 66 |
<< endl |
1804 | 67 |
<< "Command-specific options:" << endl |
1200 | 68 |
<< " --alias -a <alias>" << endl |
69 |
<< " --position -p <pos> Slave selection. See the help of" << endl |
|
70 |
<< " the 'slaves' command." << endl |
|
1387 | 71 |
<< " --type -t <type> Data type (see above)." << endl |
1804 | 72 |
<< endl |
73 |
<< numericInfo(); |
|
74 |
||
75 |
return str.str(); |
|
1200 | 76 |
} |
77 |
||
78 |
/****************************************************************************/ |
|
79 |
||
1826
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
80 |
void CommandRegRead::execute(const StringVector &args) |
1200 | 81 |
{ |
82 |
SlaveList slaves; |
|
1388
3c886ec376f5
Renamed phy_ commands to reg_.
Florian Pose <fp@igh-essen.com>
parents:
1387
diff
changeset
|
83 |
ec_ioctl_slave_reg_t data; |
1387 | 84 |
stringstream strOffset, err; |
85 |
const DataType *dataType = NULL; |
|
86 |
||
87 |
if (args.size() < 1 || args.size() > 2) { |
|
88 |
err << "'" << getName() << "' takes one or two arguments!"; |
|
1200 | 89 |
throwInvalidUsageException(err); |
90 |
} |
|
91 |
||
92 |
strOffset << args[0]; |
|
93 |
strOffset |
|
94 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
95 |
>> data.offset; |
|
96 |
if (strOffset.fail()) { |
|
97 |
err << "Invalid offset '" << args[0] << "'!"; |
|
98 |
throwInvalidUsageException(err); |
|
99 |
} |
|
100 |
||
1387 | 101 |
if (args.size() > 1) { |
102 |
stringstream strLength; |
|
103 |
strLength << args[1]; |
|
104 |
strLength |
|
105 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
106 |
>> data.length; |
|
107 |
if (strLength.fail()) { |
|
108 |
err << "Invalid length '" << args[1] << "'!"; |
|
109 |
throwInvalidUsageException(err); |
|
110 |
} |
|
111 |
||
112 |
if (!data.length) { |
|
113 |
err << "Length may not be zero!"; |
|
114 |
throwInvalidUsageException(err); |
|
115 |
} |
|
116 |
} else { // no length argument given |
|
117 |
data.length = 0; |
|
118 |
} |
|
119 |
||
120 |
if (!getDataType().empty()) { |
|
121 |
if (!(dataType = findDataType(getDataType()))) { |
|
122 |
err << "Invalid data type '" << getDataType() << "'!"; |
|
123 |
throwInvalidUsageException(err); |
|
124 |
} |
|
125 |
||
126 |
if (dataType->byteSize) { |
|
127 |
// override length argument |
|
128 |
data.length = dataType->byteSize; |
|
129 |
} |
|
1200 | 130 |
} |
131 |
||
132 |
if (!data.length) { |
|
1387 | 133 |
err << "The length argument is mandatory, if no datatype is " << endl |
134 |
<< "specified, or the datatype does not imply a length!"; |
|
135 |
throwInvalidUsageException(err); |
|
1200 | 136 |
} |
137 |
||
138 |
if ((uint32_t) data.offset + data.length > 0xffff) { |
|
139 |
err << "Offset and length exceeding 64k!"; |
|
140 |
throwInvalidUsageException(err); |
|
141 |
} |
|
142 |
||
1870
0cee1fb7f0fd
Added getSingleMasterIndex() for command-line tool.
Florian Pose <fp@igh-essen.com>
parents:
1869
diff
changeset
|
143 |
MasterDevice m(getSingleMasterIndex()); |
1200 | 144 |
m.open(MasterDevice::Read); |
145 |
slaves = selectedSlaves(m); |
|
146 |
||
147 |
if (slaves.size() != 1) { |
|
148 |
throwSingleSlaveRequired(slaves.size()); |
|
149 |
} |
|
150 |
data.slave_position = slaves.front().position; |
|
151 |
||
152 |
data.data = new uint8_t[data.length]; |
|
153 |
||
1804 | 154 |
try { |
155 |
m.readReg(&data); |
|
156 |
} catch (MasterDeviceException &e) { |
|
1200 | 157 |
delete [] data.data; |
1804 | 158 |
throw e; |
159 |
} |
|
1200 | 160 |
|
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
161 |
try { |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
162 |
outputData(cout, dataType, data.data, data.length); |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
163 |
} catch (SizeException &e) { |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
164 |
delete [] data.data; |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
165 |
throwCommandException(e.what()); |
1200 | 166 |
} |
167 |
||
168 |
delete [] data.data; |
|
169 |
} |
|
170 |
||
171 |
/*****************************************************************************/ |