author | Florian Pose <fp@igh-essen.com> |
Tue, 09 Aug 2011 22:10:45 +0200 | |
changeset 2098 | 0ce254664c81 |
parent 1968 | 4f682084c643 |
child 2124 | c4afc5fede19 |
child 2150 | 5144a4bc6184 |
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 |
||
1968
4f682084c643
Implemented drive_no for command-line tool; binary base name is now a
Florian Pose <fp@igh-essen.com>
parents:
1870
diff
changeset
|
46 |
string CommandDownload::helpString(const string &binaryBaseName) const |
1142 | 47 |
{ |
48 |
stringstream str; |
|
49 |
||
1968
4f682084c643
Implemented drive_no for command-line tool; binary base name is now a
Florian Pose <fp@igh-essen.com>
parents:
1870
diff
changeset
|
50 |
str << binaryBaseName << " " << getName() |
4f682084c643
Implemented drive_no for command-line tool; binary base name is now a
Florian Pose <fp@igh-essen.com>
parents:
1870
diff
changeset
|
51 |
<< " [OPTIONS] <INDEX> <SUBINDEX> <VALUE>" << endl |
1804 | 52 |
<< endl |
53 |
<< getBriefDescription() << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
54 |
<< endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
55 |
<< "This command requires a single slave to be selected." << endl |
1804 | 56 |
<< endl |
57 |
<< "The data type of the SDO entry is taken from the SDO" << endl |
|
58 |
<< "dictionary by default. It can be overridden with the" << endl |
|
59 |
<< "--type option. If the slave does not support the SDO" << endl |
|
60 |
<< "information service or the SDO is not in the dictionary," << endl |
|
61 |
<< "the --type option is mandatory." << endl |
|
62 |
<< 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
|
63 |
<< typeInfo() |
1804 | 64 |
<< endl |
65 |
<< "Arguments:" << endl |
|
66 |
<< " INDEX is the SDO index and must be an unsigned" << endl |
|
67 |
<< " 16 bit number." << endl |
|
68 |
<< " SUBINDEX is the SDO entry subindex and must be an" << endl |
|
69 |
<< " unsigned 8 bit number." << endl |
|
70 |
<< " VALUE is the value to download and must correspond" << endl |
|
71 |
<< " to the SDO entry datatype (see above)." << endl |
|
72 |
<< endl |
|
73 |
<< "Command-specific options:" << endl |
|
1157
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
74 |
<< " --alias -a <alias>" << endl |
04d1c950cf9d
Added --help for alias and position parameters.
Florian Pose <fp@igh-essen.com>
parents:
1155
diff
changeset
|
75 |
<< " --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
|
76 |
<< " the 'slaves' command." << endl |
1804 | 77 |
<< " --type -t <type> SDO entry data type (see above)." << endl |
78 |
<< endl |
|
79 |
<< numericInfo(); |
|
80 |
||
81 |
return str.str(); |
|
1142 | 82 |
} |
83 |
||
84 |
/****************************************************************************/ |
|
85 |
||
1826
ec6223c3b7ec
Multi-master support for command-line tool. The --master option supports
Florian Pose <fp@igh-essen.com>
parents:
1804
diff
changeset
|
86 |
void CommandDownload::execute(const StringVector &args) |
1142 | 87 |
{ |
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
88 |
stringstream strIndex, strSubIndex, err; |
1142 | 89 |
ec_ioctl_slave_sdo_download_t data; |
90 |
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
|
91 |
const DataType *dataType = NULL; |
1151 | 92 |
SlaveList slaves; |
1142 | 93 |
|
94 |
if (args.size() != 3) { |
|
95 |
err << "'" << getName() << "' takes 3 arguments!"; |
|
96 |
throwInvalidUsageException(err); |
|
97 |
} |
|
98 |
||
99 |
strIndex << args[0]; |
|
100 |
strIndex |
|
101 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
102 |
>> data.sdo_index; |
|
103 |
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
|
104 |
err << "Invalid SDO index '" << args[0] << "'!"; |
1142 | 105 |
throwInvalidUsageException(err); |
106 |
} |
|
107 |
||
108 |
strSubIndex << args[1]; |
|
109 |
strSubIndex |
|
110 |
>> resetiosflags(ios::basefield) // guess base from prefix |
|
111 |
>> number; |
|
112 |
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
|
113 |
err << "Invalid SDO subindex '" << args[1] << "'!"; |
1142 | 114 |
throwInvalidUsageException(err); |
115 |
} |
|
116 |
data.sdo_entry_subindex = number; |
|
117 |
||
1870
0cee1fb7f0fd
Added getSingleMasterIndex() for command-line tool.
Florian Pose <fp@igh-essen.com>
parents:
1869
diff
changeset
|
118 |
MasterDevice m(getSingleMasterIndex()); |
1151 | 119 |
m.open(MasterDevice::ReadWrite); |
120 |
slaves = selectedSlaves(m); |
|
121 |
if (slaves.size() != 1) { |
|
1155
bd4e5b544473
Common message for single slave selections.
Florian Pose <fp@igh-essen.com>
parents:
1151
diff
changeset
|
122 |
throwSingleSlaveRequired(slaves.size()); |
1151 | 123 |
} |
124 |
data.slave_position = slaves.front().position; |
|
125 |
||
1166 | 126 |
if (!getDataType().empty()) { // data type specified |
127 |
if (!(dataType = findDataType(getDataType()))) { |
|
128 |
err << "Invalid data type '" << getDataType() << "'!"; |
|
1142 | 129 |
throwInvalidUsageException(err); |
130 |
} |
|
131 |
} else { // no data type specified: fetch from dictionary |
|
132 |
ec_ioctl_slave_sdo_entry_t entry; |
|
133 |
||
134 |
try { |
|
1151 | 135 |
m.getSdoEntry(&entry, data.slave_position, |
1142 | 136 |
data.sdo_index, data.sdo_entry_subindex); |
137 |
} 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
|
138 |
err << "Failed to determine SDO entry data type. " |
1142 | 139 |
<< "Please specify --type."; |
140 |
throwCommandException(err); |
|
141 |
} |
|
142 |
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
|
143 |
err << "PDO entry has unknown data type 0x" |
1142 | 144 |
<< hex << setfill('0') << setw(4) << entry.data_type << "!" |
145 |
<< " Please specify --type."; |
|
146 |
throwCommandException(err); |
|
147 |
} |
|
148 |
} |
|
149 |
||
150 |
if (dataType->byteSize) { |
|
151 |
data.data_size = dataType->byteSize; |
|
152 |
} else { |
|
153 |
data.data_size = DefaultBufferSize; |
|
154 |
} |
|
155 |
||
156 |
data.data = new uint8_t[data.data_size + 1]; |
|
157 |
||
158 |
try { |
|
1835
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
159 |
data.data_size = interpretAsType( |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
160 |
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
|
161 |
} catch (SizeException &e) { |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
162 |
delete [] data.data; |
20748e9d2238
Sourced out data type handling into an own class.
Florian Pose <fp@igh-essen.com>
parents:
1826
diff
changeset
|
163 |
throwCommandException(e.what()); |
1142 | 164 |
} catch (ios::failure &e) { |
165 |
delete [] data.data; |
|
166 |
err << "Invalid value argument '" << args[2] |
|
167 |
<< "' for type '" << dataType->name << "'!"; |
|
168 |
throwInvalidUsageException(err); |
|
169 |
} |
|
170 |
||
1804 | 171 |
try { |
1151 | 172 |
m.sdoDownload(&data); |
1804 | 173 |
} 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
|
174 |
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
|
175 |
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
|
176 |
<< 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
|
177 |
<< ": " << 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
|
178 |
throwCommandException(err); |
1804 | 179 |
} catch(MasterDeviceException &e) { |
1142 | 180 |
delete [] data.data; |
181 |
throw e; |
|
182 |
} |
|
183 |
||
184 |
delete [] data.data; |
|
185 |
} |
|
186 |
||
187 |
/*****************************************************************************/ |