18 #ifndef _LOG4CXX_HELPERS_OBJECTOUTPUTSTREAM_H 19 #define _LOG4CXX_HELPERS_OBJECTOUTPUTSTREAM_H 21 #include <log4cxx/helpers/objectimpl.h> 22 #include <log4cxx/mdc.h> 23 #include <log4cxx/helpers/outputstream.h> 24 #include <log4cxx/helpers/charsetencoder.h> 37 BEGIN_LOG4CXX_CAST_MAP()
39 END_LOG4CXX_CAST_MAP()
48 void writeObject(
const LogString&,
Pool& p);
49 void writeUTFString(
const std::string&,
Pool& p);
51 void writeInt(
int val,
Pool& p);
52 void writeLong(log4cxx_time_t val,
Pool& p);
53 void writeProlog(
const char* className,
54 int classDescIncrement,
58 void writeNull(
Pool& p);
60 enum { STREAM_MAGIC = 0xACED };
61 enum { STREAM_VERSION = 5 };
72 TC_ENDBLOCKDATA = 0x78,
77 SC_WRITE_METHOD = 0x01,
78 SC_SERIALIZABLE = 0x02
81 void writeByte(
char val,
Pool& p);
82 void writeBytes(
const char* bytes,
size_t len,
Pool& p);
89 log4cxx::helpers::CharsetEncoderPtr utf8Encoder;
90 const unsigned int objectHandleDefault;
91 unsigned int objectHandle;
92 typedef std::map<std::string, unsigned int> ClassDescriptionMap;
93 ClassDescriptionMap* classDescriptions;
101 #endif //_LOG4CXX_HELPERS_OUTPUTSTREAM_H std::map< LogString, LogString > Map
String to string stl map.
Definition: mdc.h:46
Implementation class for Object.
Definition: objectimpl.h:28
Emulates java serialization.
Definition: objectoutputstream.h:33
Definition: appender.h:33