author | Florian Pose <fp@igh-essen.com> |
Wed, 18 Mar 2009 10:59:37 +0000 | |
changeset 1371 | 00e2975dc17b |
parent 1363 | 11c0b2caa253 |
child 1373 | e651000f1ff1 |
permissions | -rw-r--r-- |
1142 | 1 |
/***************************************************************************** |
2 |
* |
|
1363
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
3 |
* $Id$ |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
4 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
6 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
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:
1167
diff
changeset
|
8 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
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:
1167
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:
1167
diff
changeset
|
11 |
* published by the Free Software Foundation. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
12 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
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:
1167
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:
1167
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:
1167
diff
changeset
|
16 |
* Public License for more details. |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
17 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
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:
1167
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:
1167
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:
1167
diff
changeset
|
21 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
22 |
* --- |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
diff
changeset
|
23 |
* |
11c0b2caa253
Improved and added license headers.
Florian Pose <fp@igh-essen.com>
parents:
1167
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:
1167
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:
1167
diff
changeset
|
26 |
* industrial property and similar rights of Beckhoff Automation GmbH. |
1142 | 27 |
* |
28 |
****************************************************************************/ |
|
29 |
||
30 |
#include <iostream> |
|
31 |
using namespace std; |
|
32 |
||
33 |
#include "CommandData.h" |
|
34 |
||
35 |
/*****************************************************************************/ |
|
36 |
||
37 |
CommandData::CommandData(): |
|
38 |
Command("data", "Output binary domain process data.") |
|
39 |
{ |
|
40 |
} |
|
41 |
||
42 |
/*****************************************************************************/ |
|
43 |
||
44 |
string CommandData::helpString() const |
|
45 |
{ |
|
46 |
stringstream str; |
|
47 |
||
48 |
str << getName() << " [OPTIONS]" << endl |
|
49 |
<< endl |
|
50 |
<< getBriefDescription() << endl |
|
1144
7dbfdd61812c
Bugfixes and improvements.
Florian Pose <fp@igh-essen.com>
parents:
1142
diff
changeset
|
51 |
<< endl |
7dbfdd61812c
Bugfixes and improvements.
Florian Pose <fp@igh-essen.com>
parents:
1142
diff
changeset
|
52 |
<< "Data of multiple domains are concatenated." << endl |
1142 | 53 |
<< endl |
54 |
<< "Command-specific options:" << endl |
|
1167 | 55 |
<< " --domain -d <index> Positive numerical domain index." << endl |
56 |
<< " If omitted, data of all domains" << endl |
|
57 |
<< " are output." << endl |
|
1142 | 58 |
<< endl |
59 |
<< numericInfo(); |
|
60 |
||
61 |
return str.str(); |
|
62 |
} |
|
63 |
||
64 |
/****************************************************************************/ |
|
65 |
||
66 |
void CommandData::execute(MasterDevice &m, const StringVector &args) |
|
67 |
{ |
|
1166 | 68 |
DomainList domains; |
69 |
DomainList::const_iterator di; |
|
70 |
||
1142 | 71 |
m.open(MasterDevice::Read); |
1166 | 72 |
domains = selectedDomains(m); |
1142 | 73 |
|
1166 | 74 |
for (di = domains.begin(); di != domains.end(); di++) { |
75 |
outputDomainData(m, *di); |
|
76 |
} |
|
1142 | 77 |
} |
78 |
||
79 |
/****************************************************************************/ |
|
80 |
||
1166 | 81 |
void CommandData::outputDomainData( |
82 |
MasterDevice &m, |
|
83 |
const ec_ioctl_domain_t &domain |
|
84 |
) |
|
1142 | 85 |
{ |
86 |
ec_ioctl_domain_data_t data; |
|
87 |
unsigned char *processData; |
|
88 |
unsigned int i; |
|
89 |
||
90 |
if (!domain.data_size) |
|
91 |
return; |
|
92 |
||
93 |
processData = new unsigned char[domain.data_size]; |
|
94 |
||
95 |
try { |
|
1166 | 96 |
m.getData(&data, domain.index, domain.data_size, processData); |
1142 | 97 |
} catch (MasterDeviceException &e) { |
98 |
delete [] processData; |
|
99 |
throw e; |
|
100 |
} |
|
101 |
||
102 |
for (i = 0; i < data.data_size; i++) |
|
103 |
cout << processData[i]; |
|
104 |
cout.flush(); |
|
105 |
||
106 |
delete [] processData; |
|
107 |
} |
|
108 |
||
109 |
/****************************************************************************/ |