Regina 7.3 Calculation Engine
|
A common base class for objects that write human-readable text output. More...
#include <core/output.h>
Public Member Functions | |
std::string | str () const |
Returns a short text representation of this object. More... | |
std::string | utf8 () const |
Returns a short text representation of this object using unicode characters. More... | |
std::string | detail () const |
Returns a detailed text representation of this object. More... | |
A common base class for objects that write human-readable text output.
This class ensures that text output routines have consistent names and behaviours across Regina's entire API.
Three types of output are supported:
Any class that provides text output should ultimately inherit from this base class. Your derived class must provide two functions:
writeTextShort(std::ostream& out, bool utf8 = false)
, which writes either the short output or the utf8 output to the given output stream, according to whether utf8 is false
or true
respectively;writeTextLong(std::ostream& out)
, which writes the detailed output to the given output stream.The boolean utf8 argument to writeTextShort() must be optional. Moreover, if your class does not benefit from unicode characters (i.e., the short and utf8 outputs are identical), then you may omit the utf8 argument entirely; in this case, you must set the template argument supportsUtf8 as false
. Both writeTextShort() and writeTextLong() may take additional arguments, as long as they are optional.
The documentation for str(), utf8() and detail() gives guidelines as to how the various types of output should be formatted.
In return, this class will provide the functions str(), utf8() and detail(), which return the short, utf8 and detailed outputs respectively in std::string format. It will also provide a global operator << that allows you to write objects of type T to an arbitrary output stream.
If your class is simple and has no need for detailed output then it may derive from ShortOutput instead, which provides a default implementation for writeTextLong().
T | the class that provides the implementations of writeTextShort() and writeTextLong(). Typically this will be your own class (i.e., your class C derives from Output<C>). However, this may be deeper in the class hierarchy. |
supportsUtf8 | true if the class T can make use of the richer unicode character set, or false if the short and utf8 outputs are identical. If this is false then T::writeTextShort() will only ever be called in the form writeTextShort(std::ostream&) , and you may for simplicity omit the second boolean utf8 argument. This Output base class will still provide a utf8() function, but it will return the same output as short(). |
std::string regina::Output< T, supportsUtf8 >::detail | ( | ) | const |
Returns a detailed text representation of this object.
This text may span many lines, and should provide the user with all the information they could want. It should be human-readable, should not contain extremely long lines (which cause problems for users reading the output in a terminal), and should end with a final newline. There are no restrictions on the underlying character set.
std::string regina::Output< T, supportsUtf8 >::str | ( | ) | const |
Returns a short text representation of this object.
This text should be human-readable, should use plain ASCII characters where possible, and should not contain any newlines.
Within these limits, this short text ouptut should be as information-rich as possible, since in most cases this forms the basis for the Python __str__()
and __repr__()
functions.
__str__()
will use precisely this function, and for most classes the Python __repr__()
function will incorporate this into its output.std::string regina::Output< T, supportsUtf8 >::utf8 | ( | ) | const |
Returns a short text representation of this object using unicode characters.
Like str(), this text should be human-readable, should not contain any newlines, and (within these constraints) should be as information-rich as is reasonable.
Unlike str(), this function may use unicode characters to make the output more pleasant to read. The string that is returned will be encoded in UTF-8.