00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef PI_PROPERTIES_CPFSERIALIZER
00039 #define PI_PROPERTIES_CPFSERIALIZER
00040
00041 #include <ostream>
00042 #include <fstream>
00043 #include <string>
00044 #include "MarshallInterface.hpp"
00045 #include "../Property.hpp"
00046 #include "../base/PropertyIntrospection.hpp"
00047 #include "StreamProcessor.hpp"
00048
00049 namespace RTT
00050 { namespace marsh {
00051
00052
00053 template<class T>
00054 class CPFMarshaller;
00055
00061 template<>
00062 class CPFMarshaller<std::ostream>
00063 : public MarshallInterface,
00064 protected base::PropertyIntrospection,
00065 public StreamProcessor<std::ostream>
00066 {
00067 std::fstream mfile;
00071 template<class T>
00072 void doWrite( const Property<T> &v, const std::string& type );
00073
00078 void doWrite( const Property<std::string> &v, const std::string& type );
00079
00085 void doWrite( const Property<char> &v, const std::string& type );
00086
00087 std::string indent;
00088
00089 std::string escape(std::string s);
00090
00091 virtual void introspect(base::PropertyBase* pb);
00092
00093 virtual void introspect(Property<bool> &v);
00094
00095 virtual void introspect(Property<char> &v);
00096
00097 virtual void introspect(Property<int> &v);
00098
00099 virtual void introspect(Property<unsigned int> &v);
00100
00101 virtual void introspect(Property<double> &v);
00102
00103 virtual void introspect(Property<std::string> &v);
00104
00105 virtual void introspect(Property<PropertyBag> &b);
00106
00107 public:
00111 CPFMarshaller(std::ostream &os);
00112
00116 CPFMarshaller(const std::string& filename);
00117
00118 virtual void serialize(base::PropertyBase* v);
00119
00120 virtual void serialize(const PropertyBag &v);
00121
00122 virtual void flush();
00123 };
00124 }}
00125 #endif