Go to the documentation of this file.
45 #include <sys/ioctl.h>
47 #if defined(__FreeBSD__)
51 #include <sys/termios.h>
71 #include "debug/Terminal.hh"
72 #include "debug/TerminalVerbose.hh"
108 else if (revent & POLLNVAL)
148 case TerminalDump::stdoutput:
150 case TerminalDump::stderror:
152 case TerminalDump::file:
155 panic(
"Invalid option\n");
167 warn_once(
"Sockets disabled, not accepting terminal connections");
173 ": can't bind address terminal port %d inuse PID %d\n",
178 ccprintf(std::cerr,
"%s: Listening for connections on port %d\n",
189 panic(
"%s: cannot accept a connection if not listening!",
name());
193 char message[] =
"terminal already attached!\n";
203 std::stringstream stream;
210 write((
const uint8_t *)stream.str().c_str(), stream.str().size());
214 for (
size_t i = 0;
i <
txbuf.
size();
i +=
sizeof(buf)) {
215 const size_t chunk_len(std::min(
txbuf.
size() -
i,
sizeof(buf)));
217 write((
const uint8_t *)buf, chunk_len);
253 panic(
"Terminal not properly attached.\n");
258 }
while (ret == -1 && errno == EINTR);
277 panic(
"Terminal not properly attached.\n");
286 #define MORE_PENDING (ULL(1) << 61)
287 #define RECEIVE_SUCCESS (ULL(0) << 62)
288 #define RECEIVE_NONE (ULL(2) << 62)
289 #define RECEIVE_ERROR (ULL(3) << 62)
299 DPRINTF(TerminalVerbose,
"in: \'%c\' %#02x more: %d\n",
318 DPRINTF(TerminalVerbose,
"console_in: return: %#x\n", value);
328 static char last =
'\0';
330 if ((
c !=
'\n' &&
c !=
'\r') || (last !=
'\n' && last !=
'\r')) {
331 if (
c ==
'\n' ||
c ==
'\r') {
332 int size = linebuf.size();
333 char *buffer =
new char[size + 1];
334 linebuf.read(buffer, size);
339 linebuf.write(&
c, 1);
355 DPRINTF(TerminalVerbose,
"out: \'%c\' %#02x\n",
356 isprint(
c) ?
c :
' ', (
int)
c);
virtual bool listen(int port, bool reuse=true)
virtual int accept(bool nodelay=false)
void schedule(PollEvent *event)
ListenEvent * listenEvent
const FlagsType none
Nothing extra to print.
void writeData(uint8_t c) override
Transmit a character from the host interface to the device.
bool dataAvailable() const override
Check if there is pending data from the serial device.
Terminal(const Params &p)
OutputStream * findOrCreate(const std::string &name, bool binary=false)
ListenEvent(Terminal *t, int fd, int e)
std::ostream * stream() const
Get the output underlying output stream.
DataEvent(Terminal *t, int fd, int e)
void write(InputIterator in, size_t len)
Add elements to the end of the ring buffers and advance.
void notifyInterface()
Notify the host interface of pending data.
void peek(OutputIterator out, size_t len) const
Copy buffer contents without advancing the read pointer.
void read(OutputIterator out, size_t len)
Copy buffer contents and advance the read pointer.
virtual const std::string name() const
static bool allDisabled()
Base class for serial devices such as terminals.
void remove(PollEvent *event)
void ccprintf(cp::Print &print)
ssize_t atomic_write(int fd, const void *s, size_t n)
uint8_t readData() override
Read a character from the device.
OutputStream * terminalDump(const TerminalParams &p)
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17