51 #ifdef CHECK_MEMORY_LEAKS
53 #endif // CHECK_MEMORY_LEAKS
74 if (name ==
"stdout") {
76 }
else if (name ==
"stderr") {
83 throw IOError(
"Given port number '" + name.substr(name.find(
":") + 1) +
"' is not numeric.");
85 throw IOError(
"No port number given.");
88 const size_t len = name.length();
92 dev->
getOStream() << std::setiosflags(std::ios::fixed);
100 const std::string& rootElement,
101 const std::string& schemaFile) {
106 if (rootElement !=
"") {
107 if (schemaFile !=
"") {
108 dev.
writeXMLHeader(rootElement,
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://sumo-sim.org/xsd/" + schemaFile +
"\"");
121 throw InvalidArgument(
"Device '" + devName +
"' has not been created.");
129 std::vector<OutputDevice*> errorDevices;
130 std::vector<OutputDevice*> nonErrorDevices;
133 errorDevices.push_back(i->second);
135 nonErrorDevices.push_back(i->second);
138 for (std::vector<OutputDevice*>::iterator i = nonErrorDevices.begin(); i != nonErrorDevices.end(); ++i) {
146 for (std::vector<OutputDevice*>::iterator i = errorDevices.begin(); i != errorDevices.end(); ++i) {
150 std::cerr <<
"Error on closing error output devices." << std::endl;
151 std::cerr << e.what() << std::endl;
159 std::ostringstream oss;
163 if (v < pow(10., -precision)) {
164 oss.setf(std::ios::scientific, std::ios::floatfield);
166 oss.setf(std::ios::fixed , std::ios::floatfield);
167 oss.setf(std::ios::showpoint);
168 oss << std::setprecision(precision);
179 : myAmBinary(binary) {
203 if (i->second ==
this) {
220 const std::string& attrs,
const std::string& comment) {
bool isRetriever(OutputDevice *retriever) const
Returns whether the given output device retrieves messages from the handler.
void close()
Closes the device and removes it from the dictionary.
SumoXMLTag
Numbers representing SUMO-XML - element names.
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
static std::map< std::string, OutputDevice * > myOutputDevices
map from names to output devices
static bool isSocket(const std::string &name)
Returns the information whether the given name represents a socket.
OutputDevice(const bool binary=false, const unsigned int defaultIndentation=0)
Constructor.
An output device for TCP/IP network connections.
static OptionsCont & getOptions()
Retrieves the options.
bool writeXMLHeader(const std::string &rootElement, const std::string &attrs="", const std::string &comment="")
Writes an XML header with optional configuration.
void inform(const std::string &msg, const char progress=0)
Retrieves a message to this device.
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
void setPrecision(unsigned int precision=OUTPUT_ACCURACY)
Sets the precison or resets it to default.
static OutputDevice * getDevice()
Returns the single cout instance.
An output device that encapsulates an ofstream.
virtual bool ok()
returns the information whether one can write into the device
static int _2int(const E *const data)
virtual ~OutputDevice()
Destructor.
static OutputDevice & getDevice(const std::string &name)
Returns the described OutputDevice.
static OutputDevice & getDeviceByOption(const std::string &name)
Returns the device described by the option.
static std::string realString(const SUMOReal v, const int precision=OUTPUT_ACCURACY)
Helper method for string formatting.
OutputFormatter * myFormatter
The formatter for XML.
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.
Static storage of an output device and its base (abstract) implementation.
bool closeTag()
Closes the most recently opened tag.
static OutputDevice * getDevice()
Returns the single cerr instance.
virtual std::ostream & getOStream()=0
Returns the associated ostream.
virtual void postWriteHook()
Called after every write access.
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.