MagAO-X
Operations Applications Utilities Source
ttyErrors.hpp
Go to the documentation of this file.
1 /** \file ttyErrors.hpp
2  * \brief Error numbers for the tty utilities.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup tty_files
6  * History:
7  * - 2018-01-17 created by JRM
8  */
9 
10 #ifndef tty_ttyErrors_hpp
11 #define tty_ttyErrors_hpp
12 
13 #define TTY_E_NOERROR (0)
14 #define TTY_E_TCGETATTR (-42001)
15 #define TTY_E_SETISPEED (-42002)
16 #define TTY_E_SETOSPEED (-42003)
17 #define TTY_E_TCSETATTR (-42004)
18 #define TTY_E_TIMEOUTONWRITEPOLL (-42011)
19 #define TTY_E_ERRORONWRITEPOLL (-42012)
20 #define TTY_E_ERRORONWRITE (-42013)
21 #define TTY_E_TIMEOUTONWRITE (-42014)
22 #define TTY_E_TIMEOUTONREADPOLL (-42015)
23 #define TTY_E_ERRORONREADPOLL (-42016)
24 #define TTY_E_ERRORONREAD (-42017)
25 #define TTY_E_TIMEOUTONREAD (-42018)
26 #define TTY_E_NODEVNAMES (-42021)
27 #define TTY_E_UDEVNEWFAILED (-42022)
28 #define TTY_E_DEVNOTFOUND (-42023)
29 #define TTY_E_BADBAUDRATE (-42030)
30 
31 #define TELNET_E_GETADDR (-42040)
32 #define TELNET_E_SOCKET (-42041)
33 #define TELNET_E_BIND (-42042)
34 #define TELNET_E_CONNECT (-42043)
35 #define TELNET_E_TELNETINIT (-42044)
36 #define TELNET_E_EHERROR (-42045)
37 
38 namespace MagAOX
39 {
40 namespace tty
41 {
42 
43 
44 
45 /// Get a text explanation of a TTY_E_ error code.
46 /**
47  * \ingroup tty
48  */
49 inline
50 std::string ttyErrorString( int ec /**< [in] the error code */ )
51 {
52  switch(ec)
53  {
54  case TTY_E_NOERROR:
55  return "TTY: success";
56  case TTY_E_TCGETATTR:
57  return "TTY: tcgetattr returned error";
58  case TTY_E_SETISPEED:
59  return "TTY: cfsetispeed returned error";
60  case TTY_E_SETOSPEED:
61  return "TTY: cfsetospeed returned error";
62  case TTY_E_TCSETATTR:
63  return "TTY: tcsetattr returned error";
65  return "TTY: the write poll timed out";
67  return "TTY: an error was returned by the write poll";
68  case TTY_E_ERRORONWRITE:
69  return "TTY: an error occurred writing to the file";
71  return "TTY: a timeout occurred during the write";
73  return "TTY: the read poll timed out";
75  return "TTY: an error was returned by the read poll";
76  case TTY_E_ERRORONREAD:
77  return "TTY: an error occurred reading from the file";
79  return "TTY: a timeout occurred during the read";
80  case TTY_E_NODEVNAMES:
81  return "TTY: no device names found in sys";
83  return "TTY: initializing libudev failed";
84  case TTY_E_DEVNOTFOUND:
85  return "TTY: no matching device found";
86  case TTY_E_BADBAUDRATE:
87  return "TTY: bad baud rate specified";
88 
89  case TELNET_E_GETADDR:
90  return "TTY: getaddr failed";
91  case TELNET_E_SOCKET:
92  return "TTY: socket creation failed";
93  case TELNET_E_BIND:
94  return "TTY: socket bind failed";
95  case TELNET_E_CONNECT:
96  return "TTY; socket connect failed";
98  return "TTY: failed to init telnet_t structure";
99  case TELNET_E_EHERROR:
100  return "TTY: error set in telnet event handler";
101  default:
102  return "TTY: unknown error code";
103  };
104 }
105 
106 } //namespace tty
107 } //namespace MagAOX
108 
109 #endif //tty_ttyErrors_hpp
110 
#define TTY_E_SETISPEED
Definition: ttyErrors.hpp:15
#define TELNET_E_BIND
Definition: ttyErrors.hpp:33
#define TTY_E_ERRORONREAD
Definition: ttyErrors.hpp:24
#define TTY_E_TCGETATTR
Definition: ttyErrors.hpp:14
#define TTY_E_ERRORONREADPOLL
Definition: ttyErrors.hpp:23
#define TELNET_E_GETADDR
Definition: ttyErrors.hpp:31
#define TTY_E_ERRORONWRITE
Definition: ttyErrors.hpp:20
#define TELNET_E_TELNETINIT
Definition: ttyErrors.hpp:35
#define TELNET_E_EHERROR
Definition: ttyErrors.hpp:36
#define TTY_E_TCSETATTR
Definition: ttyErrors.hpp:17
std::string ttyErrorString(int ec)
Get a text explanation of a TTY_E_ error code.
Definition: ttyErrors.hpp:50
#define TELNET_E_SOCKET
Definition: ttyErrors.hpp:32
#define TTY_E_NODEVNAMES
Definition: ttyErrors.hpp:26
#define TTY_E_ERRORONWRITEPOLL
Definition: ttyErrors.hpp:19
#define TTY_E_SETOSPEED
Definition: ttyErrors.hpp:16
#define TTY_E_TIMEOUTONREADPOLL
Definition: ttyErrors.hpp:22
#define TTY_E_DEVNOTFOUND
Definition: ttyErrors.hpp:28
#define TELNET_E_CONNECT
Definition: ttyErrors.hpp:34
#define TTY_E_TIMEOUTONWRITEPOLL
Definition: ttyErrors.hpp:18
#define TTY_E_NOERROR
Definition: ttyErrors.hpp:13
#define TTY_E_UDEVNEWFAILED
Definition: ttyErrors.hpp:27
#define TTY_E_TIMEOUTONWRITE
Definition: ttyErrors.hpp:21
#define TTY_E_BADBAUDRATE
Definition: ttyErrors.hpp:29
#define TTY_E_TIMEOUTONREAD
Definition: ttyErrors.hpp:25