Atlas_Codecs_Packed(3)

Atlas::Codecs::Packed(3) Library Functions Manual Atlas::Codecs::Packed(3)

NAME

Atlas::Codecs::Packed

SYNOPSIS

Inherits Atlas::Codec.

Public Member Functions


Packed (std::iostream &s, Atlas::Bridge &b)
virtual void poll (bool can_read=true)
virtual void streamBegin ()
Begin an Atlas stream. virtual void streamMessage ()
Start a message in an Atlas stream. virtual void streamEnd ()
Ends the Atlas stream. virtual void mapMapItem (const std::string &name)
Starts a map object to the currently streamed map. virtual void mapListItem (const std::string &name)
Starts a list object to the currently streamed map. virtual void mapIntItem (const std::string &name, long)
Adds an integer to the currently streames map. virtual void mapFloatItem (const std::string &name, double)
Adds a float to the currently streamed map. virtual void mapStringItem (const std::string &name, const std::string &)
Adds a string to the currently streamed map. virtual void mapEnd ()
Ends the currently streamed map. virtual void listMapItem ()
Starts a map object in the currently streamed list. virtual void listListItem ()
Starts a list object in the currently streamed list. virtual void listIntItem (long)
Adds an integer to the currently streames list. virtual void listFloatItem (double)
Adds a float to the currently streamed list. virtual void listStringItem (const std::string &)
Adds a string to the currently streamed list. virtual void listEnd ()
Ends the currently streamed list.

Protected Types


enum State { PARSE_STREAM, PARSE_MAP, PARSE_LIST, PARSE_MAP_BEGIN, PARSE_LIST_BEGIN, PARSE_INT, PARSE_FLOAT, PARSE_STRING, PARSE_NAME }

Protected Member Functions


void parseStream (char)
void parseMap (char)
void parseList (char)
void parseMapBegin (char)
void parseListBegin (char)
void parseInt (char)
void parseFloat (char)
void parseString (char)
void parseName (char)
const std::string hexEncode (const std::string &data)
const std::string hexDecode (const std::string &data)

Protected Attributes


std::iostream & m_socket
Bridge & m_bridge
std::stack< State > m_state
std::string m_name
std::string m_data

Author

Generated automatically by Doxygen for Atlas-C++ from the source code.

Tue Oct 10 2017 Atlas-C++