File Information
Library: RemotingNG/REST
Package: REST
Header: Poco/RemotingNG/REST/RawDeserializer.h
Description
Deserialization of text-based or binary scalar values from a request body.
Inheritance
Direct Base Classes: Poco::RemotingNG::Deserializer
All Base Classes: Poco::RemotingNG::Deserializer, Poco::RemotingNG::SerializerBase
Member Summary
Member Functions: deserialize, deserializeData, deserializeMessageBegin, deserializeMessageEnd, deserializeNullableBegin, deserializeNullableEnd, deserializeSequenceBegin, deserializeSequenceEnd, deserializeStructBegin, deserializeStructEnd, findMessage, resetImpl, setupImpl
Inherited Functions: clearProperties, deserialize, deserializeMessageBegin, deserializeMessageEnd, deserializeNullableBegin, deserializeNullableEnd, deserializeOptionalBegin, deserializeOptionalEnd, deserializeSequenceBegin, deserializeSequenceEnd, deserializeStructBegin, deserializeStructEnd, findMessage, getProperty, hasProperty, popProperty, pushAttribute, pushProperty, reset, resetImpl, setup, setupImpl
Constructors
RawDeserializer
RawDeserializer(
std::istream & stream
);
Creates the RawDeserializer using the given input stream.
Destructor
~RawDeserializer
~RawDeserializer();
Destroys the RawDeserializer.
Member Functions
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::Int8 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::UInt8 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::Int16 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::UInt16 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::Int32 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::UInt32 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
long & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
unsigned long & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::Int64 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
Poco::UInt64 & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
float & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
double & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
bool & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
char & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
std::string & val
);
deserialize
bool deserialize(
const std::string & name,
bool isMandatory,
std::vector < char > & val
);
deserializeMessageBegin
void deserializeMessageBegin(
const std::string & name,
SerializerBase::MessageType type
);
deserializeMessageEnd
void deserializeMessageEnd(
const std::string & name,
SerializerBase::MessageType type
);
deserializeNullableBegin
bool deserializeNullableBegin(
const std::string & name,
bool isMandatory,
bool & isNull
);
deserializeNullableEnd
void deserializeNullableEnd(
const std::string & name
);
deserializeSequenceBegin
bool deserializeSequenceBegin(
const std::string & name,
bool isMandatory,
Poco::UInt32 & lengthHint
);
deserializeSequenceEnd
void deserializeSequenceEnd(
const std::string & name
);
deserializeStructBegin
bool deserializeStructBegin(
const std::string & name,
bool isMandatory
);
deserializeStructEnd
void deserializeStructEnd(
const std::string & name
);
findMessage
Poco::RemotingNG::SerializerBase::MessageType findMessage(
std::string & name
);
deserializeData
const std::string & deserializeData(
const std::string & name,
bool isMandatory,
bool & found
);
resetImpl
void resetImpl();
setupImpl
void setupImpl(
std::istream & inStream
);