From 9ea330650c459cf9573b07c39998961ae73c181d Mon Sep 17 00:00:00 2001
From: Florian Pose <fp@igh-essen.com>
Date: Mon, 28 Jul 2008 11:29:28 +0000
Subject: [PATCH] Added --help for alias and position parameters.

---
 TODO                     |  5 ++++-
 tool/Command.cpp         | 22 +++++++++++-----------
 tool/CommandAlias.cpp    | 19 ++++++++++++-------
 tool/CommandConfig.cpp   | 24 +++++++++++++++++++++---
 tool/CommandDownload.cpp |  9 ++++++---
 tool/CommandPdos.cpp     |  5 +++--
 tool/CommandSdos.cpp     |  9 +++++----
 tool/CommandSiiRead.cpp  | 11 +++++++----
 tool/CommandSiiWrite.cpp | 24 +++++++++++++-----------
 tool/CommandSlaves.cpp   | 36 +++++++++++++++++++++++++++---------
 tool/CommandStates.cpp   |  9 +++++++--
 tool/CommandUpload.cpp   |  9 ++++++---
 tool/CommandXml.cpp      |  5 +++--
 13 files changed, 125 insertions(+), 62 deletions(-)

diff --git a/TODO b/TODO
index a059431c..53a02a4d 100644
--- a/TODO
+++ b/TODO
@@ -14,13 +14,16 @@ Version 1.4.0:
 * Get original driver for r8169.
 * Race in jiffies frame timeout?
 * ethercat tool:
-    - Update help for --alias and --position.
     - Show Pdos in 'ethercat slave -v'.
     - Accept files from stdin.
     - Display attached device's MAC address instead of ff's.
     - Data type abbreviations.
     - Add a -n (numeric) switch.
     - Check for options, remove global variables.
+    - Remove MasterDevice::slaveCount().
+    - Alias index?
+    - Add 'etherlab version'.
+    - Remove 'all' parameter values.
 
 Future issues:
 
diff --git a/tool/Command.cpp b/tool/Command.cpp
index 459f7b68..d3c9e6bc 100644
--- a/tool/Command.cpp
+++ b/tool/Command.cpp
@@ -175,7 +175,6 @@ bool operator<(
 Command::ConfigList Command::selectedConfigs(MasterDevice &m)
 {
     unsigned int i;
-    int effAlias;
     ec_ioctl_master_t master;
     ec_ioctl_config_t config;
     ConfigList list;
@@ -183,34 +182,35 @@ Command::ConfigList Command::selectedConfigs(MasterDevice &m)
 
     m.getMaster(&master);
 
-    // Assume alias 0 if only position is given.
-    if (alias == -1 && position != -1) {
-        effAlias = 0;
-    } else {
-        effAlias = alias;
-    }
-
-    if (effAlias == -1) { // no alias given
+    if (alias == -1) { // no alias given
         if (position == -1) { // no alias and position given
             // all items
             for (i = 0; i < master.config_count; i++) {
                 m.getConfig(&config, i);
                 list.push_back(config);
             }
+        } else { // no alias, but position given
+            for (i = 0; i < master.config_count; i++) {
+                m.getConfig(&config, i);
+                if (!config.alias && config.position == position) {
+                    list.push_back(config);
+                    break; // there can be at most one matching
+                }
+            }
         }
     } else { // alias given
         if (position == -1) { // alias, but no position given
             // take all items with a given alias
             for (i = 0; i < master.config_count; i++) {
                 m.getConfig(&config, i);
-                if (config.alias == effAlias) {
+                if (config.alias == alias) {
                     list.push_back(config);
                 }
             }
         } else { // alias and position given
             for (i = 0; i < master.config_count; i++) {
                 m.getConfig(&config, i);
-                if (config.alias == effAlias && config.position == position) {
+                if (config.alias == alias && config.position == position) {
                     list.push_back(config);
                     break; // there can be at most one matching
                 }
diff --git a/tool/CommandAlias.cpp b/tool/CommandAlias.cpp
index 21195a99..bcacc828 100644
--- a/tool/CommandAlias.cpp
+++ b/tool/CommandAlias.cpp
@@ -33,15 +33,16 @@ string CommandAlias::helpString() const
         << "Arguments:" << endl
         << "  ALIAS must be an unsigned 16 bit number. Zero means" << endl
         << "        removing an alias address." << endl
-        << endl << endl
-        << "Command-specific options:" << endl
-        << "  --slave -s <index>  Positive numerical ring position, or 'all'"
         << endl
-        << "                      for all slaves (default). The --force"
+        << "If multiple slaves are selected, the --force option" << endl
+        << "is required." << endl
         << endl
-        << "                      option is required in this case." << endl
-        << "  --force -f          Acknowledge writing aliases of all" << endl
-        << "                      slaves." << endl
+        << "Command-specific options:" << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+        << "  --force    -f          Acknowledge writing aliases of" << endl
+        << "                         multiple slaves." << endl
         << endl
         << numericInfo();
 
@@ -85,6 +86,10 @@ void CommandAlias::execute(MasterDevice &m, const StringVector &args)
         throwCommandException(err);
     }
 
+    if (!slaves.size() && getVerbosity() != Quiet) {
+        cerr << "Warning: Selection matches no slaves!" << endl;
+    }
+
     for (si = slaves.begin(); si != slaves.end(); si++) {
         writeSlaveAlias(m, *si, alias);
     }
diff --git a/tool/CommandConfig.cpp b/tool/CommandConfig.cpp
index 133ea5e6..9e9465cc 100644
--- a/tool/CommandConfig.cpp
+++ b/tool/CommandConfig.cpp
@@ -43,15 +43,33 @@ string CommandConfig::helpString() const
     	<< "|       |                         position of the attached" << endl
     	<< "|       |                         slave, or '-' if none" << endl
     	<< "|       |                         attached." << endl
-    	<< "|       \\- Vendor ID and product code (both" << endl
+    	<< "|       \\- Expected vendor ID and product code (both" << endl
     	<< "|          hexadecimal)." << endl
-    	<< "\\- Alias and relative position (both decimal)." << endl
+    	<< "\\- Alias address and relative position (both decimal)." << endl
     	<< endl
     	<< "With the --verbose option given, the configured Pdos and" << endl
     	<< "Sdos are output in addition." << endl
+        << endl
+        << "Configuration selection:" << endl
+        << "  Slave configurations can be selected with" << endl
+        << "  the --alias and --position parameters as follows:" << endl
+        << endl
+        << "  1) If neither the --alias nor the --position option" << endl
+        << "     is given, all slave configurations are selected." << endl
+        << "  2) If only the --position option is given, an alias" << endl
+        << "     of zero is assumed (see 4))." << endl
+        << "  3) If only the --alias option is given, all slave" << endl
+        << "     configurations with the given alias address" << endl
+        << "     match." << endl
+        << "  4) If both the --alias and the --position option are" << endl
+        << "     given, the specified configuration is matched." << endl
     	<< endl
     	<< "Command-specific options:" << endl
-    	<< "  --verbose -v  Show detailed configurations." << endl;
+        << "  --alias    -a <alias>  Configuration alias (see above)." << endl
+        << "  --position -p <pos>    Relative position (see above)." << endl
+    	<< "  --verbose  -v          Show detailed configurations." << endl
+        << endl
+        << numericInfo();
 
 	return str.str();
 }
diff --git a/tool/CommandDownload.cpp b/tool/CommandDownload.cpp
index 62e63e90..1dab9649 100644
--- a/tool/CommandDownload.cpp
+++ b/tool/CommandDownload.cpp
@@ -28,6 +28,8 @@ string CommandDownload::helpString() const
     str << getName() << " [OPTIONS] <INDEX> <SUBINDEX> <VALUE>" << endl
     	<< endl
     	<< getBriefDescription() << endl
+        << endl
+        << "This command requires a single slave to be selected." << endl
     	<< endl
     	<< "The data type of the Sdo entry is taken from the Sdo" << endl
 		<< "dictionary by default. It can be overridden with the" << endl
@@ -47,9 +49,10 @@ string CommandDownload::helpString() const
 		<< "           to the Sdo entry datatype (see above)." << endl
     	<< endl
     	<< "Command-specific options:" << endl
-    	<< "  --slave -s <index>  Positive numerical ring position" << endl
-		<< "                      (mandatory)." << endl
-    	<< "  --type  -t <type>   Sdo entry data type (see above)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+    	<< "  --type     -t <type>   Sdo entry data type (see above)." << endl
     	<< endl
 		<< numericInfo();
 
diff --git a/tool/CommandPdos.cpp b/tool/CommandPdos.cpp
index 24b7bab1..0e411961 100644
--- a/tool/CommandPdos.cpp
+++ b/tool/CommandPdos.cpp
@@ -55,8 +55,9 @@ string CommandPdos::helpString() const
 		<< "CoE communication area." << endl
     	<< endl
     	<< "Command-specific options:" << endl
-    	<< "  --slave -s <index>  Positive numerical ring position," << endl
-    	<< "                      or 'all' for all slaves (default)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
     	<< endl
 		<< numericInfo();
 
diff --git a/tool/CommandSdos.cpp b/tool/CommandSdos.cpp
index 6dad815b..1c74d77b 100644
--- a/tool/CommandSdos.cpp
+++ b/tool/CommandSdos.cpp
@@ -44,10 +44,11 @@ string CommandSdos::helpString() const
     	<< "If the --quiet option is given, only the Sdos are output."
 		<< endl << endl
     	<< "Command-specific options:" << endl
-    	<< "  --slave -s <index>  Positive numerical ring position," << endl
-		<< "                      or 'all' for all slaves (default)." << endl
-    	<< "  --quiet -q          Only output Sdos (without the Sdo" << endl
-		<< "                      entries)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+    	<< "  --quiet    -q          Only output Sdos (without the" << endl
+		<< "                         Sdo entries)." << endl
     	<< endl
 		<< numericInfo();
 
diff --git a/tool/CommandSiiRead.cpp b/tool/CommandSiiRead.cpp
index 4f6347ae..9985fa8a 100644
--- a/tool/CommandSiiRead.cpp
+++ b/tool/CommandSiiRead.cpp
@@ -28,6 +28,8 @@ string CommandSiiRead::helpString() const
     	<< endl
     	<< getBriefDescription() << endl
     	<< endl
+        << "This command requires a single slave to be selected." << endl
+    	<< endl
     	<< "Without the --verbose option, binary SII contents are" << endl
 		<< "output." << endl
     	<< endl
@@ -36,10 +38,11 @@ string CommandSiiRead::helpString() const
 		<< "names." << endl
     	<< endl
     	<< "Command-specific options:" << endl
-    	<< "  --slave   -s <index>  Positive numerical ring position" << endl
-		<< "                        (mandatory)." << endl
-    	<< "  --verbose -v          Output textual data with" << endl
-		<< "                        category names." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+    	<< "  --verbose  -v          Output textual data with" << endl
+		<< "                         category names." << endl
     	<< endl
 		<< numericInfo();
 
diff --git a/tool/CommandSiiWrite.cpp b/tool/CommandSiiWrite.cpp
index 5456513c..3913b9ec 100644
--- a/tool/CommandSiiWrite.cpp
+++ b/tool/CommandSiiWrite.cpp
@@ -30,6 +30,8 @@ string CommandSiiWrite::helpString() const
         << endl 
         << getBriefDescription() << endl
         << endl
+        << "This command requires a single slave to be selected." << endl
+    	<< endl
         << "The file contents are checked for validity and integrity." << endl
         << "These checks can be overridden with the --force option." << endl
         << endl
@@ -38,9 +40,10 @@ string CommandSiiWrite::helpString() const
         << "           positive number of words." << endl
         << endl
         << "Command-specific options:" << endl
-        << "  --slave -s <index>  Positive numerical ring position" << endl
-        << "                      (mandatory)." << endl
-        << "  --force -f          Override validity checks." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+        << "  --force    -f          Override validity checks." << endl
         << endl
         << numericInfo();
 
@@ -60,13 +63,6 @@ void CommandSiiWrite::execute(MasterDevice &m, const StringVector &args)
     uint16_t categoryType, categorySize;
     uint8_t crc;
 
-    slaves = selectedSlaves(m);
-
-    if (slaves.size() != 1) {
-        throwSingleSlaveRequired(slaves.size());
-    }
-    data.slave_position = slaves.front().position;
-
     if (args.size() != 1) {
         err << "'" << getName() << "' takes exactly one argument!";
         throwInvalidUsageException(err);
@@ -131,8 +127,14 @@ void CommandSiiWrite::execute(MasterDevice &m, const StringVector &args)
         }
     }
 
-    // send data to master
     m.open(MasterDevice::ReadWrite);
+    slaves = selectedSlaves(m);
+    if (slaves.size() != 1) {
+        throwSingleSlaveRequired(slaves.size());
+    }
+    data.slave_position = slaves.front().position;
+
+    // send data to master
     data.offset = 0;
 	m.writeSii(&data);
 }
diff --git a/tool/CommandSlaves.cpp b/tool/CommandSlaves.cpp
index cfd9f814..d709990c 100644
--- a/tool/CommandSlaves.cpp
+++ b/tool/CommandSlaves.cpp
@@ -40,21 +40,39 @@ string CommandSlaves::helpString() const
         << "|  |    |  |         'E' means that scan or" << endl
         << "|  |    |  |         configuration failed." << endl
         << "|  |    |  \\- Current application-layer state." << endl
-        << "|  |    \\- Relative position (decimal) after the last" << endl
+        << "|  |    \\- Decimal relative position to the last" << endl
         << "|  |       slave with an alias address set." << endl
-        << "|  \\- Alias address of the slave (if set), or the alias" << endl
-        << "|     of the last slave with an alias, or zero if not" << endl
-        << "|     applicable" << endl
-        << "\\- Absolute ring position in the bus (use this with any" << endl
-        << "   --slave option)." << endl
+        << "|  \\- Decimal alias address of this slave (if set)," << endl
+        << "|     otherwise of the last slave with an alias set," << endl
+        << "|     or zero, if no alias was encountered up to this" << endl
+        << "|     position." << endl
+        << "\\- Absolute ring position in the bus." << endl
         << endl
         << "If the --verbose option is given, a detailed (multi-line)" << endl
         << "description is output for each slave." << endl
         << endl
+        << "Slave selection:" << endl
+        << "  Slaves for this and other commands can be selected with" << endl
+        << "  the --alias and --position parameters as follows:" << endl
+        << endl
+        << "  1) If neither the --alias nor the --position option" << endl
+        << "     is given, all slaves are selected." << endl
+        << "  2) If only the --position option is given, it is" << endl
+        << "     interpreted as an absolute ring position and" << endl
+        << "     a slave with this position is matched." << endl
+        << "  3) If only the --alias option is given, all slaves" << endl
+        << "     with the given alias address and subsequent" << endl
+        << "     slaves before a slave with a different alias" << endl
+        << "     address match (use -p0 if only the slaves" << endl
+        << "     with the given alias are desired, see 4))." << endl
+        << "  4) If both the --alias and the --position option are" << endl
+        << "     given, the latter is interpreted as relative" << endl
+        << "     position behind any slave with the given alias." << endl
+        << endl
         << "Command-specific options:" << endl
-        << "  --slave   -s <index>  Positive numerical ring position," << endl
-        << "                        or 'all' for all slaves (default)." << endl
-        << "  --verbose -v          Show detailed slave information." << endl
+        << "  --alias    -a <alias>  Slave alias (see above)." << endl
+        << "  --position -p <pos>    Slave position (see above)." << endl
+        << "  --verbose  -v          Show detailed slave information." << endl
         << endl
         << numericInfo();
 
diff --git a/tool/CommandStates.cpp b/tool/CommandStates.cpp
index 515b37a5..248a45da 100644
--- a/tool/CommandStates.cpp
+++ b/tool/CommandStates.cpp
@@ -30,8 +30,9 @@ string CommandStates::helpString() const
         << "  STATE can be 'INIT', 'PREOP', 'SAFEOP', or 'OP'." << endl
         << endl
         << "Command-specific options:" << endl
-        << "  --slave -s <index>  Positive numerical ring position," << endl
-        << "                      or 'all' for all slaves (default)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
         << endl
         << numericInfo();
 
@@ -73,6 +74,10 @@ void CommandStates::execute(MasterDevice &m, const StringVector &args)
     m.open(MasterDevice::ReadWrite);
     slaves = selectedSlaves(m);
 
+    if (!slaves.size() && getVerbosity() != Quiet) {
+        cerr << "Warning: Selection matches no slaves!" << endl;
+    }
+
     for (si = slaves.begin(); si != slaves.end(); si++) {
         m.requestState(si->position, state);
     }
diff --git a/tool/CommandUpload.cpp b/tool/CommandUpload.cpp
index 5882f88c..a6e1bd3d 100644
--- a/tool/CommandUpload.cpp
+++ b/tool/CommandUpload.cpp
@@ -29,6 +29,8 @@ string CommandUpload::helpString() const
         << endl
         << getBriefDescription() << endl
         << endl
+        << "This command requires a single slave to be selected." << endl
+    	<< endl
         << "The data type of the Sdo entry is taken from the Sdo" << endl
         << "dictionary by default. It can be overridden with the" << endl
         << "--type option. If the slave does not support the Sdo" << endl
@@ -45,9 +47,10 @@ string CommandUpload::helpString() const
         << "           unsigned 8 bit number." << endl
         << endl
         << "Command-specific options:" << endl
-        << "  --slave -s <index>  Positive numerical ring position" << endl
-        << "                      (mandatory)." << endl
-        << "  --type  -t <type>   Sdo entry data type (see above)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
+        << "  --type     -t <type>   Sdo entry data type (see above)." << endl
         << endl
         << numericInfo();
 
diff --git a/tool/CommandXml.cpp b/tool/CommandXml.cpp
index 6c815d52..67e1b46b 100644
--- a/tool/CommandXml.cpp
+++ b/tool/CommandXml.cpp
@@ -33,8 +33,9 @@ string CommandXml::helpString() const
         << "mapping, the output depends on the last configuration." << endl
         << endl
         << "Command-specific options:" << endl
-        << "  --slave -s <index>  Positive numerical ring position," << endl
-        << "                      or 'all' for all slaves (default)." << endl
+        << "  --alias    -a <alias>" << endl
+        << "  --position -p <pos>    Slave selection. See the help of" << endl
+        << "                         the 'slaves' command." << endl
         << endl
         << numericInfo();
 
-- 
GitLab