10 #ifndef tty_ttyIOUtils_hpp 11 #define tty_ttyIOUtils_hpp 22 #include <mx/timeUtils.hpp> 27 #define TTY_BUFFSIZE (1024) 45 const std::string & inputStr
48 telnetStr.resize(inputStr.size());
50 size_t N = inputStr.size();
52 for(
size_t i=0;i<N; ++i)
54 if(inputStr[i] !=
'\r' && inputStr[i] !=
'\n')
56 telnetStr[j] = inputStr[i];
58 else if(inputStr[i] ==
'\r')
64 if(inputStr[i+1] ==
'\n')
73 telnetStr.push_back(
' ');
77 else if(inputStr[i] ==
'\n')
80 telnetStr.push_back(
' ');
102 std::string & deviceName,
108 fileDescrip = ::open( deviceName.c_str(), O_RDWR | O_NOCTTY | O_NDELAY);
111 struct termios termopt;
112 if( tcgetattr(fileDescrip, &termopt) < 0 )
119 if( cfsetispeed(&termopt, speed) < 0 )
126 if( cfsetospeed(&termopt, speed) < 0 )
135 if( tcsetattr(fileDescrip, TCSANOW, &termopt) < 0 )
154 const std::string & eot
158 if(eot.size() > strRead.size())
return false;
161 for(
size_t i=0; i < eot.size(); ++i)
163 if( strRead[strRead.size()-1-i] != eot[eot.size()-1-i] )
return false;
192 pfd.events = POLLOUT;
194 t0 = mx::get_curr_time();
196 size_t totWritten = 0;
197 while( totWritten < buffWrite.size())
199 int timeoutCurrent = timeoutWrite - (mx::get_curr_time()-t0)*1000;
202 int rv = poll( &pfd, 1, timeoutCurrent);
206 rv = write(fd, buffWrite.c_str()+totWritten, buffWrite.size()-totWritten);
211 std::cerr <<
"Wrote " << rv <<
" chars of " << buffWrite.size() <<
"\n";
234 const std::string & eot,
254 t0 = mx::get_curr_time();
255 timeoutCurrent = timeoutRead;
260 rv = poll( &pfd, 1, timeoutCurrent);
267 strRead.append( buffRead, rv);
271 timeoutCurrent = timeoutRead - (mx::get_curr_time()-t0)*1000;
274 rv = poll( &pfd, 1, timeoutCurrent);
282 strRead.append( buffRead, rv);
284 std::cerr <<
"ttyRead: read " << rv <<
" bytes. buffRead=" << buffRead <<
"\n";
312 const std::string & strWrite,
313 const std::string & eot,
325 rv =
ttyWrite( strWrite, fd, timeoutWrite);
340 t0 = mx::get_curr_time();;
348 while( totrv <= strWrite.size() )
350 timeoutCurrent = timeoutRead - (mx::get_curr_time()-t0)*1000;
353 rv = poll( &pfd, 1, timeoutCurrent);
364 timeoutCurrent = timeoutRead - (mx::get_curr_time()-t0)*1000;
368 return ttyRead(strRead, eot, fd, timeoutCurrent);
376 #endif //tty_ttyIOUtils_hpp int ttyWrite(const std::string &buffWrite, int fd, int timeoutWrite)
Write to the tty console indicated by a file descriptor.
#define TTY_E_ERRORONREAD
#define TTY_E_ERRORONREADPOLL
Error numbers for the tty utilities.
#define TTY_E_ERRORONWRITE
int ttyOpenRaw(int &fileDescrip, std::string &deviceName, speed_t speed)
Open a file as a raw-mode tty device.
#define TTY_E_ERRORONWRITEPOLL
int telnetCRLF(std::string &telnetStr, const std::string &inputStr)
Replace lone \r and \n with \r\n for telnet-ness.
#define TTY_E_TIMEOUTONREADPOLL
int ttyRead(std::string &strRead, const std::string &eot, int fd, int timeoutRead)
Read from a tty console indicated by a file-descriptor, until an end of transmission string is read...
int ttyWriteRead(std::string &strRead, const std::string &strWrite, const std::string &eot, bool swallowEcho, int fd, int timeoutWrite, int timeoutRead)
Write to a tty on an open file descriptor, then get the result.
#define TTY_E_TIMEOUTONWRITEPOLL
bool isEndOfTrans(const std::string &strRead, const std::string &eot)
Check if the end of the buffer contains the end-of-transmission string.
#define TTY_E_TIMEOUTONWRITE
#define TTY_E_TIMEOUTONREAD