Friedrich-Alexander-Universität Erlangen-Nürnberg  /   Technische Fakultät  /   Department Informatik

Output text (form different data type sources) on screen in text mode. More...

#include <device/textstream.h>

+ Inheritance diagram for TextStream:
+ Collaboration diagram for TextStream:

Public Member Functions

 TextStream (unsigned from_col, unsigned to_col, unsigned from_row, unsigned to_row, bool use_cursor=false)
 Constructor of a text window. More...
 
 TextStream (void)
 Default constructor. More...
 
void flush () override
 Output the buffer contents of the base class Stringbuffer. More...
 
- Public Member Functions inherited from OutputStream
- Public Member Functions inherited from Stringbuffer
- Public Member Functions inherited from TextWindow

Static Public Member Functions

static void arrange (TextStream &kout, TextStream dout[8])
 Automatic arrangement of the output windows (depending on the cores) More...
 
- Static Public Member Functions inherited from TextMode

Additional Inherited Members

- Public Types inherited from TextMode
 CGA color palette. More...
- Public Attributes inherited from OutputStream
- Static Public Attributes inherited from TextMode
- Protected Member Functions inherited from Stringbuffer
- Protected Member Functions inherited from TextMode
- Protected Attributes inherited from Stringbuffer
- Protected Attributes inherited from TextWindow
- Static Protected Attributes inherited from TextMode

Detailed Description

Output text (form different data type sources) on screen in text mode.

Allows the output of different data types as strings on the TextMode screen of a PC. To achieve this, TextStream is derived from both OutputStream and TextWindow and only implements the method TextStream::flush(). Further formatting or special effects are implemented in TextWindow.

Constructor & Destructor Documentation

◆ TextStream() [1/2]

TextStream::TextStream ( unsigned  from_col,
unsigned  to_col,
unsigned  from_row,
unsigned  to_row,
bool  use_cursor = false 
)
inline

Constructor of a text window.

Creates a virtual, rectangular text window on the screen. The coordinates to construct the window are absolute positions in the TextMode screen.

Note
Overlapping windows are neither supported nor prevented – better just try to avoid construction windows with overlapping coordinates!
Warning
Don't use the hardware cursor in more than one window!
Parameters
from_colText Window starts in column from_col, the first (leftmost) possible column is 0
to_colText Window extends to the right to column to_col (exclusive). This column has to be strictly greater than from_col, the maximum allowed value is TextMode::COLUMNS (rightmost)
from_rowText Window starts in row from_row, the first possible (uppermost) row is 0
to_rowText Window extends down to row to_row (exclusive). This row has to be strictly greater than from_row, the maximum allowed value is TextMode::ROWS (bottom-most)
use_cursorSpecifies whether the hardware cursor (true) or a software cursor/variable (false) should be used to store the current position

◆ TextStream() [2/2]

TextStream::TextStream ( void  )
inline

Default constructor.

Since each core in MPStuBS has its own debug window, but the number of available cores might be different on each system, the arrangement can be done automatically.

However, there is one problem: The number of CPUs is only known after evaluating the ACPI MADT table (which is done in APIC::init(), called during kernel_init()), but global constructors like ‘kout’ are executed earlier.

Therefore this constructor assigns each window 2 separate lines for the output, the actual window split is later done by calling TextStream::arrange() in main().

Member Function Documentation

◆ arrange()

void TextStream::arrange ( TextStream kout,
TextStream  dout[8] 
)
static

Automatic arrangement of the output windows (depending on the cores)

After the system information has been read out, the number of available cores can be queried with Core::count(). This information helps to automatically arrange the windows without wasting screen area by pre-saving it for non-existent cores.

Parameters
koutPointer to the object for the main output window
doutPointer to an array with with debug windows for each core

◆ flush()

void TextStream::flush ( )
overridevirtual

Output the buffer contents of the base class Stringbuffer.

The method is automatically called when the buffer is full, but can also be called explicitly to force output of the current buffer.

Implements OutputStream.


The documentation for this class was generated from the following files: