65 SetConsoleOutputCP(CP_UTF8);
75 if (name ==
"stdout") {
77 }
else if (name ==
"stderr") {
81 const bool ipv6 = name[0] ==
'[';
82 const size_t sepIndex = name.find(
":", ipv6 ? name.find(
"]") : 0);
84 dev =
new OutputDevice_Network(ipv6 ? name.substr(1, sepIndex - 2) : name.substr(0, sepIndex), port);
86 throw IOError(
"Given port number '" + name.substr(name.find(
":") + 1) +
"' is not numeric.");
88 throw IOError(
TL(
"No port number given."));
91 std::string name2 = (name ==
"nul" || name ==
"NUL") ?
"/dev/null" : name;
94 const std::string::size_type metaTimeIndex = prefix.find(
"TIME");
95 if (metaTimeIndex != std::string::npos) {
98 struct tm* timeinfo = localtime(&rawtime);
99 strftime(buffer, 80,
"%Y-%m-%d-%H-%M-%S", timeinfo);
100 prefix.replace(metaTimeIndex, 4, buffer);
105 const int len = (int)name.length();
109 dev->
getOStream() << std::setiosflags(std::ios::fixed);
117 const std::string& rootElement,
118 const std::string& schemaFile) {
123 if (rootElement !=
"") {
134 throw InvalidArgument(
"Output device '" + devName +
"' for option '" + optionName +
"' has not been created.");
143 item.second->flush();
150 std::vector<OutputDevice*> errorDevices;
151 std::vector<OutputDevice*> nonErrorDevices;
154 errorDevices.push_back(i->second);
156 nonErrorDevices.push_back(i->second);
167 if (!keepErrorRetrievers) {
172 std::cerr <<
"Error on closing error output devices." << std::endl;
173 std::cerr << e.what() << std::endl;
187 std::ostringstream oss;
192 oss.setf(std::ios::scientific, std::ios::floatfield);
194 oss.setf(std::ios::fixed, std::ios::floatfield);
195 oss.setf(std::ios::showpoint);
231 if (i->second ==
this) {
255 const std::string& schemaFile,
256 std::map<SumoXMLAttr, std::string> attrs,
257 bool includeConfig) {
258 if (schemaFile !=
"") {
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_ATTR_SCHEMA_LOCATION
static bool isSocket(const std::string &name)
Returns the information whether the given name represents a socket.
static std::string prependToLastPathComponent(const std::string &prefix, const std::string &path)
prepend the given prefix to the last path component of the given file path
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
bool isRetriever(OutputDevice *retriever) const
Returns whether the given output device retrieves messages from the handler.
static void removeRetrieverFromAllInstances(OutputDevice *out)
ensure that that given output device is no longer used as retriever by any instance
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
static OptionsCont & getOptions()
Retrieves the options.
static const std::chrono::time_point< std::chrono::system_clock > & getLoadTime()
Return the time stamp of the last init.
static OutputDevice * getDevice()
Returns the single cerr instance.
static OutputDevice * getDevice()
Returns the single cout instance.
An output device that encapsulates an ofstream.
An output device for TCP/IP network connections.
Static storage of an output device and its base (abstract) implementation.
virtual std::ostream & getOStream()=0
Returns the associated ostream.
virtual ~OutputDevice()
Destructor.
OutputDevice(const int defaultIndentation=0, const std::string &filename="")
Constructor.
static std::string realString(const double v, const int precision=gPrecision)
Helper method for string formatting.
void inform(const std::string &msg, const bool progress=false)
Retrieves a message to this device.
void close()
Closes the device and removes it from the dictionary.
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
virtual void postWriteHook()
Called after every write access.
static bool createDeviceByOption(const std::string &optionName, const std::string &rootElement="", const std::string &schemaFile="")
Creates the device using the output definition stored in the named option.
int precision()
return precision set on the device
const std::string & getFilename()
get filename or suitable description of this device
static OutputDevice & getDeviceByOption(const std::string &name)
Returns the device described by the option.
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
void setPrecision(int precision=gPrecision)
Sets the precision or resets it to default.
const std::string myFilename
static void closeAll(bool keepErrorRetrievers=false)
static OutputDevice & getDevice(const std::string &name, bool usePrefix=true)
Returns the described OutputDevice.
OutputFormatter *const myFormatter
The formatter for XML.
static int myPrevConsoleCP
old console code page to restore after ending
bool writeXMLHeader(const std::string &rootElement, const std::string &schemaFile, std::map< SumoXMLAttr, std::string > attrs=std::map< SumoXMLAttr, std::string >(), bool includeConfig=true)
Writes an XML header with optional configuration.
static std::map< std::string, OutputDevice * > myOutputDevices
map from names to output devices
virtual bool ok()
returns the information whether one can write into the device
static std::string substituteEnvironment(const std::string &str, const std::chrono::time_point< std::chrono::system_clock > *const timeRef=nullptr)
Replaces an environment variable with its value (similar to bash); syntax for a variable is ${NAME}.
static int toInt(const std::string &sData)
converts a string into the integer value described by it by calling the char-type converter,...