getID.cpp
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 *
00004 *  Copyright (c) 2009, Willow Garage, Inc.
00005 *  All rights reserved.
00006 *
00007 *  Redistribution and use in source and binary forms, with or without
00008 *  modification, are permitted provided that the following conditions
00009 *  are met:
00010 *
00011 *   * Redistributions of source code must retain the above copyright
00012 *     notice, this list of conditions and the following disclaimer.
00013 *   * Redistributions in binary form must reproduce the above
00014 *     copyright notice, this list of conditions and the following
00015 *     disclaimer in the documentation and/or other materials provided
00016 *     with the distribution.
00017 *   * Neither the name of the Willow Garage nor the names of its
00018 *     contributors may be used to endorse or promote products derived
00019 *     from this software without specific prior written permission.
00020 *
00021 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 *  POSSIBILITY OF SUCH DAMAGE.
00033 *********************************************************************/
00034 
00035 #include <urg_node/urg_c_wrapper.h>
00036 #include <vector>
00037 #include <string>
00038 
00039 #include <fcntl.h>
00040 #include <stdlib.h>
00041 #include <stdio.h>
00042 /* gcc defined unix */
00043 #ifdef unix
00044 #include <unistd.h>
00045 #endif
00046 #ifdef WIN32
00047 #include <io.h>
00048 #define pipe(X) _pipe(X, 4096, O_BINARY)
00049 #define fileno _fileno
00050 #define dup2 _dup2
00051 #define read _read
00052 #endif
00053 
00054 std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems)
00055 {
00056   std::stringstream ss(s);
00057   std::string item;
00058   while (std::getline(ss, item, delim))
00059   {
00060     elems.push_back(item);
00061   }
00062   return elems;
00063 }
00064 
00065 
00066 std::vector<std::string> split(const std::string &s, char delim)
00067 {
00068   std::vector<std::string> elems;
00069   split(s, delim, elems);
00070   return elems;
00071 }
00072 
00073 int
00074 main(int argc, char** argv)
00075 {
00076   ros::Time::init();
00077 
00078   if (argc < 2 || argc > 3)
00079   {
00080     fprintf(stderr,
00081         "usage: getID /dev/ttyACM? [quiet]\nOutputs the device ID of a hokuyo at /dev/ttyACM? or IP address"
00082         " (specified as 192.168.1.6:10940). Add a second argument for script friendly output.\n");
00083     return 1;
00084   }
00085 
00086   bool verbose = (argc == 2);
00087 
00088   int save_stdout = dup(STDOUT_FILENO);
00089 
00090   if (!verbose)  // Block urg's prints
00091   {
00092     int fds[2];
00093     int res;
00094     char buf[256];
00095     int so;
00096 
00097     res = pipe(fds);
00098     assert(res == 0);
00099 
00100     so = fileno(stdout);
00101     // close stdout handle and make the writable part of fds the new stdout.
00102     res = dup2(fds[1], so);
00103     assert(res != -1);
00104   }
00105 
00106 
00107   bool publish_intensity = false;
00108   bool publish_multiecho = false;
00109   int serial_baud = 115200;
00110   int ip_port = 10940;
00111   std::string ip_address = "";
00112   std::string serial_port = "";
00113 
00114   std::vector<std::string> ip_split = split(argv[1], ':');
00115   if (ip_split.size() < 2)  // Not an IP address
00116   {
00117     serial_port = argv[1];
00118   }
00119   else if (ip_split.size() == 2)   // IP address formatted as IP:PORT
00120   {
00121     ip_address = ip_split[0];
00122     ip_port = atoi(ip_split[1].c_str());
00123   }
00124   else     // Invalid
00125   {
00126     if (verbose)
00127     {
00128       printf("getID failed due to invalid specifier.\n");
00129       return 1;
00130     }
00131   }
00132 
00133   boost::shared_ptr<urg_node::URGCWrapper> urg_;
00134 
00135   for (int retries = 10; retries; retries--)
00136   {
00137     // Set up the urgwidget
00138     try
00139     {
00140       if (ip_address != "")
00141       {
00142         urg_.reset(new urg_node::URGCWrapper(ip_address, ip_port, publish_intensity, publish_multiecho));
00143       }
00144       else
00145       {
00146         urg_.reset(new urg_node::URGCWrapper(serial_baud, serial_port, publish_intensity, publish_multiecho));
00147       }
00148       std::string device_id = urg_->getDeviceID();
00149       if (verbose)
00150       {
00151         if (ip_address != "")
00152         {
00153           printf("Device at %s:%i has ID ", ip_address.c_str(), ip_port);
00154         }
00155         else
00156         {
00157           printf("Device at %s has ID ", serial_port.c_str());
00158         }
00159       }
00160       // Print this in either mode
00161       fflush(NULL);  // Clear whatever we aren't printing
00162       dup2(save_stdout, STDOUT_FILENO);  // Restore std::out
00163       printf("%s\n", device_id.c_str());
00164       return 0;
00165     }
00166     catch (std::runtime_error& e)
00167     {
00168       printf("getID failed: %s\n", e.what());
00169     }
00170     ros::Duration(1.0).sleep();
00171   }
00172 
00173   if (verbose)
00174   {
00175     printf("getID failed for 10 seconds. Giving up.\n");
00176     if (ip_address != "")
00177     {
00178       printf("Device at %s:%i\n", ip_address.c_str(), ip_port);
00179     }
00180     else
00181     {
00182       printf("Device at %s\n", serial_port.c_str());
00183     }
00184   }
00185   return 1;
00186 }


urg_node
Author(s): Chad Rockey , Mike O'Driscoll
autogenerated on Wed Jun 14 2017 04:05:48