ROSE 0.11.145.147
Public Types | Public Member Functions | Static Public Member Functions | List of all members
Rosebud::BoostSerializer Class Reference

Description

Class serializer using Boost Serialization.

This serializer generates code for boost::serialization.

Definition at line 10 of file BoostSerializer.h.

#include <Rosebud/BoostSerializer.h>

Inheritance diagram for Rosebud::BoostSerializer:
Inheritance graph
[legend]
Collaboration diagram for Rosebud::BoostSerializer:
Collaboration graph
[legend]

Public Types

using Ptr = std::shared_ptr< BoostSerializer >
 
- Public Types inherited from Rosebud::Serializer
using Ptr = SerializerPtr
 Shared-ownership pointer.
 

Public Member Functions

virtual std::string name () const override
 Every serializer has a unique name.
 
virtual std::string purpose () const override
 Single-line description for the serializer.
 
virtual bool isSerializable (const Ast::ClassPtr &) const override
 Determines if a class should be serialized.
 
virtual void genPrologue (std::ostream &header, std::ostream &impl, const Ast::ClassPtr &, const Hierarchy &, const Generator &) const override
 Generate prologue code.
 
virtual void genBody (std::ostream &header, std::ostream &impl, const Ast::ClassPtr &, const Hierarchy &, const Generator &) const override
 Generate main serialization code for the specified class.
 
virtual void genEpilogue (std::ostream &header, std::ostream &impl, const Ast::ClassPtr &, const Hierarchy &, const Generator &) const override
 Generate epilogue code.
 

Static Public Member Functions

static Ptr instance ()
 
- Static Public Member Functions inherited from Rosebud::Serializer
static void registerSerializer (const Ptr &)
 Register a serializer for use later.
 
static const std::vector< Ptr > & registeredSerializers ()
 Return all registered serializers.
 
static Ptr lookup (const std::string &)
 Return the registered serializer with the specified name.
 
static std::vector< Ptrlookup (const std::vector< std::string > &)
 Returns the serializers registered with the specified names.
 

Member Typedef Documentation

◆ Ptr

using Rosebud::BoostSerializer::Ptr = std::shared_ptr<BoostSerializer>

Definition at line 12 of file BoostSerializer.h.

Constructor & Destructor Documentation

◆ BoostSerializer()

Rosebud::BoostSerializer::BoostSerializer ( )
inlineprotected

Definition at line 15 of file BoostSerializer.h.

Member Function Documentation

◆ name()

virtual std::string Rosebud::BoostSerializer::name ( ) const
overridevirtual

Every serializer has a unique name.

Implements Rosebud::Serializer.

◆ purpose()

virtual std::string Rosebud::BoostSerializer::purpose ( ) const
overridevirtual

Single-line description for the serializer.

Implements Rosebud::Serializer.

◆ isSerializable()

virtual bool Rosebud::BoostSerializer::isSerializable ( const Ast::ClassPtr ) const
overridevirtual

Determines if a class should be serialized.

Returns true if this class should have serilization and deserialization functions.

Implements Rosebud::Serializer.

◆ genPrologue()

virtual void Rosebud::BoostSerializer::genPrologue ( std::ostream &  header,
std::ostream &  impl,
const Ast::ClassPtr ,
const Hierarchy ,
const Generator  
) const
overridevirtual

Generate prologue code.

In the header file, the prologue goes immediately after the generated include-once protection and before any user-written pre-class-definition code.

Implements Rosebud::Serializer.

◆ genBody()

virtual void Rosebud::BoostSerializer::genBody ( std::ostream &  header,
std::ostream &  impl,
const Ast::ClassPtr ,
const Hierarchy ,
const Generator  
) const
overridevirtual

Generate main serialization code for the specified class.

This code emitted by this function will appear inside the class definition in the header, and near the end of the implementation file.

The header and impl streams are output streams for the C++ header file and implementation file, respectively. The generator is from whence this serializer was called.

Implements Rosebud::Serializer.

◆ genEpilogue()

virtual void Rosebud::BoostSerializer::genEpilogue ( std::ostream &  header,
std::ostream &  impl,
const Ast::ClassPtr ,
const Hierarchy ,
const Generator  
) const
overridevirtual

Generate epilogue code.

In the header file, this goes at the end of the file, after the class definition and after the namespace (if any) but before the closing compile-once directives.

Implements Rosebud::Serializer.


The documentation for this class was generated from the following file: