MagAO-X
Operations Applications Utilities Source
ttyUSB.hpp
Go to the documentation of this file.
1 /** \file ttyUSB.hpp
2  * \author Jared R. Males
3  * \brief Find the details for USB serial devices
4  *
5  * \ingroup tty_files
6  *
7  */
8 
9 #ifndef tty_ttyUSB_hpp
10 #define tty_ttyUSB_hpp
11 
12 #include <libudev.h>
13 
14 #include <string>
15 
16 #include <mx/ioutils/fileUtils.hpp>
17 
18 #include "ttyErrors.hpp"
19 
20 
21 namespace MagAOX
22 {
23 namespace tty
24 {
25 
26 ///Get the ttyUSB device name
27 /**
28  * \returns TTY_E_NOERROR on success
29  * \returns TTY_E_NODEVNAMES if no device names found in sys
30  * \returns TTY_E_UDEVNEWFAILED if initializing libudev failed.
31  * \returns TTY_E_DEVNOTFOUND if no matching device found.
32  *
33  * \ingroup tty
34  */
35 inline
36 int ttyUSBDevName( std::string & devName, ///< [out] the /dev/ttyUSBX device name.
37  const std::string & vendor, ///< [in] the 4-digit vendor identifier.
38  const std::string & product, ///< [in] the 4-digit product identifier.
39  const std::string & serial ///< [in] the serial number. Can be "".
40  )
41 {
42  std::vector<std::string> devNames;
43 
44  devName = "";
45  devNames = mx::ioutils::getFileNames("/sys/class/tty/", "ttyUSB", "", "");
46 
47  if(devNames.size() == 0) return TTY_E_NODEVNAMES;
48 
49  struct udev *udev;
50 
51 
52  /* Create the udev object */
53  udev = udev_new();
54  if (!udev) return TTY_E_UDEVNEWFAILED;
55 
56  for(size_t i=0; i< devNames.size(); ++i)
57  {
58  struct udev_device *dev;
59 
60  dev = udev_device_new_from_syspath(udev, devNames[i].c_str());
61 
62  if(!dev) continue;
63 
64  dev = udev_device_get_parent_with_subsystem_devtype( dev, "usb", "usb_device");
65 
66  if (!dev) continue;
67 
68  const char * idVendor = udev_device_get_sysattr_value( dev, "idVendor" );
69 
70  if(idVendor == nullptr) continue;
71  if( strcmp( idVendor, vendor.c_str()) != 0) continue;
72 
73  const char * idProduct = udev_device_get_sysattr_value( dev, "idProduct" );
74 
75  if(idProduct == nullptr) continue;
76  if( strcmp( idProduct, product.c_str()) != 0) continue;
77 
78  const char * dserial = udev_device_get_sysattr_value( dev, "serial" );
79 
80  if(dserial == nullptr)
81  {
82  if( serial != "") continue;
83  }
84  else if( strcmp( dserial, serial.c_str()) != 0 ) continue;
85 
86  //If we make it through all comparisons we found it!
87  boost::filesystem::path p(devNames[i]);
88  devName = "/dev/" + p.filename().string();
89  return TTY_E_NOERROR;
90  }
91 
92  devName = "";
93  return TTY_E_DEVNOTFOUND;
94 }
95 
96 } //namespace tty
97 } //namespace MagAOX
98 
99 #endif //tty_ttyUSB_hpp
Error numbers for the tty utilities.
#define TTY_E_NODEVNAMES
Definition: ttyErrors.hpp:26
#define TTY_E_DEVNOTFOUND
Definition: ttyErrors.hpp:28
int ttyUSBDevName(std::string &devName, const std::string &vendor, const std::string &product, const std::string &serial)
Get the ttyUSB device name.
Definition: ttyUSB.hpp:36
#define TTY_E_NOERROR
Definition: ttyErrors.hpp:13
#define TTY_E_UDEVNEWFAILED
Definition: ttyErrors.hpp:27