Support for Serializable non-SimObject things like events.
[gem5.git] / dev / console.hh
1 /*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 /* @file
30 * User Console Interface
31 */
32
33 #ifndef __CONSOLE_HH__
34 #define __CONSOLE_HH__
35
36 #include <iostream>
37
38 #include "base/circlebuf.hh"
39 #include "cpu/intr_control.hh"
40 #include "base/pollevent.hh"
41 #include "base/socket.hh"
42 #include "sim/sim_object.hh"
43
44 class ConsoleListener;
45 class SimConsole : public SimObject
46 {
47 protected:
48 class Event : public PollEvent
49 {
50 protected:
51 SimConsole *cons;
52
53 public:
54 Event(SimConsole *c, int fd, int e);
55 void process(int revent);
56 };
57
58 friend class Event;
59 Event *event;
60
61 protected:
62 int number;
63 int in_fd;
64 int out_fd;
65
66 protected:
67 ConsoleListener *listener;
68
69 public:
70 SimConsole(const std::string &name, const std::string &file, int num);
71 ~SimConsole();
72
73 protected:
74 CircleBuf txbuf;
75 CircleBuf rxbuf;
76 std::ostream *outfile;
77
78 public:
79 ///////////////////////
80 // Terminal Interface
81
82 void attach(int fd, ConsoleListener *l = NULL) { attach(fd, fd, l); }
83 void attach(int in, int out, ConsoleListener *l = NULL);
84 void detach();
85
86 void data();
87
88 void close();
89 void read(uint8_t &c) { read(&c, 1); }
90 size_t read(uint8_t *buf, size_t len);
91 void write(uint8_t c) { write(&c, 1); }
92 size_t write(const uint8_t *buf, size_t len);
93
94 void configTerm();
95
96 protected:
97 // interrupt status/enable
98 int _status;
99 int _enable;
100
101 // interrupt handle
102 IntrControl *intr;
103
104 public:
105 /////////////////
106 // OS interface
107
108 // Get a character from the console.
109 // return of -1 means there is no character pending.
110 // Interrupts are cleared when the buffer is empty.
111 int in();
112
113 // Send a character to the console
114 void out(char c, bool raise_int = true);
115
116 enum {
117 TransmitInterrupt = 1,
118 ReceiveInterrupt = 2
119 };
120
121 // Read the current interrupt status of this console.
122 int intStatus() { return _status; }
123
124 // Set the interrupt enable bits.
125 int clearInt(int i);
126 void raiseInt(int i);
127
128 void initInt(IntrControl *i);
129 void setInt(int bits);
130
131 virtual void serialize(std::ostream &os);
132 virtual void unserialize(Checkpoint *cp, const std::string &section);
133 };
134
135 class ConsoleListener : public SimObject
136 {
137 protected:
138 class Event : public PollEvent
139 {
140 protected:
141 ConsoleListener *listener;
142
143 public:
144 Event(ConsoleListener *l, int fd, int e)
145 : PollEvent(fd, e), listener(l) {}
146 void process(int revent);
147 };
148
149 friend class Event;
150 Event *event;
151
152 typedef std::list<SimConsole *> list_t;
153 typedef list_t::iterator iter_t;
154 list_t ConsoleList;
155
156 protected:
157 ListenSocket listener;
158
159 public:
160 ConsoleListener(const std::string &name);
161 ~ConsoleListener();
162
163 void add(SimConsole *cons);
164
165 void accept();
166 void listen(int port);
167 };
168
169 #endif // __CONSOLE_HH__