author | Florian Pose <fp@igh-essen.com> |
Fri, 05 Mar 2010 16:30:51 +0100 | |
changeset 1840 | 06fcb795525b |
parent 1835 | 20748e9d2238 |
child 1868 | 489ea0becd74 |
permissions | -rw-r--r-- |
1142 | 1 |
/***************************************************************************** |
2 |
* |
|
1363
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
3 |
* $Id$ |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
4 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
6 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
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:
1334
diff
changeset
|
8 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
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:
1334
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:
1334
diff
changeset
|
11 |
* published by the Free Software Foundation. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
12 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
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:
1334
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:
1334
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:
1334
diff
changeset
|
16 |
* Public License for more details. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
17 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
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:
1334
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:
1334
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:
1334
diff
changeset
|
21 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
22 |
* --- |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
diff
changeset
|
23 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1334
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:
1334
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:
1334
diff
changeset
|
26 |
* industrial property and similar rights of Beckhoff Automation GmbH. |
1142 | 27 |
* |
28 |
****************************************************************************/ |
|
29 |
||
30 |
#include <iostream> |
|
31 |
#include <iomanip> |
|
32 |
using namespace std; |
|
33 |
||
34 |
#include "CommandDownload.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" |
1142 | 36 |
|
37 |
/*****************************************************************************/ |
|
38 |
||
39 |
CommandDownload::CommandDownload(): |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
40 |
SdoCommand("download", "Write an SDO entry to a slave.") |
1142 | 41 |
{ |
42 |
} |
|
43 |
||
44 |
/*****************************************************************************/ |
|
45 |
||
46 |
string CommandDownload::helpString() const |
|
47 |
{ |
|
48 |
stringstream str; |
|
49 |
||
50 |
str << getName() << " [OPTIONS] <INDEX> <SUBINDEX> <VALUE>" << endl |
|
1804 | 51 |
<< endl |
52 |
<< getBriefDescription() << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
53 |
<< endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
54 |
<< "This command requires a single slave to be selected." << endl |
1804 | 55 |
<< endl |
56 |
<< "The data type of the SDO entry is taken from the SDO" << endl |
|
57 |
<< "dictionary by default. It can be overridden with the" << endl |
|
58 |
<< "--type option. If the slave does not support the SDO" << endl |
|
59 |
<< "information service or the SDO is not in the dictionary," << endl |
|
60 |
<< "the --type option is mandatory." << endl |
|
61 |
<< endl |
|
62 |
<< "These are the valid SDO entry data types:" << endl |
|
63 |
<< " int8, int16, int32, uint8, uint16, uint32, string," << endl |
|
1334
da3d22a27500
merge -c1617 branches/stable-1.4: Added octet_string as an SDO data type.
Florian Pose <fp@igh-essen.com>
parents:
1327
diff
changeset
|
64 |
<< " octet_string." << endl |
1804 | 65 |
<< endl |
66 |
<< "Arguments:" << endl |
|
67 |
<< " INDEX is the SDO index and must be an unsigned" << endl |
|
68 |
<< " 16 bit number." << endl |
|
69 |
<< " SUBINDEX is the SDO entry subindex and must be an" << endl |
|
70 |
<< " unsigned 8 bit number." << endl |
|
71 |
<< " VALUE is the value to download and must correspond" << endl |
|
72 |
<< " to the SDO entry datatype (see above)." << endl |
|
73 |
<< endl |
|
74 |
<< "Command-specific options:" << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
75 |
<< " --alias -a <alias>" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
76 |
<< " --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:
1155
diff
changeset
|
77 |
<< " the 'slaves' command." << endl |
1804 | 78 |
<< " --type -t <type> SDO entry data type (see above)." << endl |
79 |
<< endl |
|
80 |
<< numericInfo(); |
|
81 |
||
82 |
return str.str(); |
|
1142 | 83 |
} |
84 |
||
85 |
/****************************************************************************/ |
|
86 |
||
1826
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
87 |
void CommandDownload::execute(const StringVector &args) |
1142 | 88 |
{ |
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
89 |
stringstream strIndex, strSubIndex, err; |
1142 | 90 |
ec_ioctl_slave_sdo_download_t data; |
91 |
unsigned int number; |
|
1184
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1166
diff
changeset
|
92 |
const DataType *dataType = NULL; |
1151 | 93 |
SlaveList slaves; |
1142 | 94 |
|
95 |
if (args.size() != 3) { |
|
96 |
err << "'" << getName() << "' takes 3 arguments!"; |
|
97 |
throwInvalidUsageException(err); |
|
98 |
} |
|
99 |
||
100 |
strIndex << args[0]; |
|
101 |
strIndex |
|
102 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
103 |
>> data.sdo_index; |
|
104 |
if (strIndex.fail()) { |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
105 |
err << "Invalid SDO index '" << args[0] << "'!"; |
1142 | 106 |
throwInvalidUsageException(err); |
107 |
} |
|
108 |
||
109 |
strSubIndex << args[1]; |
|
110 |
strSubIndex |
|
111 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
112 |
>> number; |
|
113 |
if (strSubIndex.fail() || number > 0xff) { |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
114 |
err << "Invalid SDO subindex '" << args[1] << "'!"; |
1142 | 115 |
throwInvalidUsageException(err); |
116 |
} |
|
117 |
data.sdo_entry_subindex = number; |
|
118 |
||
1826
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
119 |
if (getMasterIndices().size() != 1) { |
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
120 |
err << getName() << " requires to select a single master!"; |
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
121 |
throwInvalidUsageException(err); |
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
122 |
} |
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
123 |
MasterDevice m(getMasterIndices().front()); |
1151 | 124 |
m.open(MasterDevice::ReadWrite); |
125 |
slaves = selectedSlaves(m); |
|
126 |
if (slaves.size() != 1) { |
|
1155
bd4e5b544473
Common message for single slave selections.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
127 |
throwSingleSlaveRequired(slaves.size()); |
1151 | 128 |
} |
129 |
data.slave_position = slaves.front().position; |
|
130 |
||
1166 | 131 |
if (!getDataType().empty()) { // data type specified |
132 |
if (!(dataType = findDataType(getDataType()))) { |
|
133 |
err << "Invalid data type '" << getDataType() << "'!"; |
|
1142 | 134 |
throwInvalidUsageException(err); |
135 |
} |
|
136 |
} else { // no data type specified: fetch from dictionary |
|
137 |
ec_ioctl_slave_sdo_entry_t entry; |
|
138 |
||
139 |
try { |
|
1151 | 140 |
m.getSdoEntry(&entry, data.slave_position, |
1142 | 141 |
data.sdo_index, data.sdo_entry_subindex); |
142 |
} catch (MasterDeviceException &e) { |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
143 |
err << "Failed to determine SDO entry data type. " |
1142 | 144 |
<< "Please specify --type."; |
145 |
throwCommandException(err); |
|
146 |
} |
|
147 |
if (!(dataType = findDataType(entry.data_type))) { |
|
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
148 |
err << "PDO entry has unknown data type 0x" |
1142 | 149 |
<< hex << setfill('0') << setw(4) << entry.data_type << "!" |
150 |
<< " Please specify --type."; |
|
151 |
throwCommandException(err); |
|
152 |
} |
|
153 |
} |
|
154 |
||
155 |
if (dataType->byteSize) { |
|
156 |
data.data_size = dataType->byteSize; |
|
157 |
} else { |
|
158 |
data.data_size = DefaultBufferSize; |
|
159 |
} |
|
160 |
||
161 |
data.data = new uint8_t[data.data_size + 1]; |
|
162 |
||
163 |
try { |
|
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
164 |
data.data_size = interpretAsType( |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
165 |
dataType, args[2], data.data, data.data_size); |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
166 |
} catch (SizeException &e) { |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
167 |
delete [] data.data; |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
168 |
throwCommandException(e.what()); |
1142 | 169 |
} catch (ios::failure &e) { |
170 |
delete [] data.data; |
|
171 |
err << "Invalid value argument '" << args[2] |
|
172 |
<< "' for type '" << dataType->name << "'!"; |
|
173 |
throwInvalidUsageException(err); |
|
174 |
} |
|
175 |
||
1804 | 176 |
try { |
1151 | 177 |
m.sdoDownload(&data); |
1804 | 178 |
} catch (MasterDeviceSdoAbortException &e) { |
1184
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1166
diff
changeset
|
179 |
delete [] data.data; |
1327
4d179b06dd3c
merge -c1604 branches/stable-1.4: Fixed spelling of EtherCAT terms.
Florian Pose <fp@igh-essen.com>
parents:
1254
diff
changeset
|
180 |
err << "SDO transfer aborted with code 0x" |
1184
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1166
diff
changeset
|
181 |
<< setfill('0') << hex << setw(8) << e.abortCode |
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1166
diff
changeset
|
182 |
<< ": " << abortText(e.abortCode); |
75cd6681eb08
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
Florian Pose <fp@igh-essen.com>
parents:
1166
diff
changeset
|
183 |
throwCommandException(err); |
1804 | 184 |
} catch(MasterDeviceException &e) { |
1142 | 185 |
delete [] data.data; |
186 |
throw e; |
|
187 |
} |
|
188 |
||
189 |
delete [] data.data; |
|
190 |
} |
|
191 |
||
192 |
/*****************************************************************************/ |