1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #ifndef STLPLUS_PERSISTENT_SHORTCUTS #define STLPLUS_PERSISTENT_SHORTCUTS //////////////////////////////////////////////////////////////////////////////// // Author: Andy Rushton // Copyright: (c) Southampton University 1999-2004 // (c) Andy Rushton 2004 onwards // License: BSD License, see ../docs/license.html // Short-cut functions for dumping and restoring to common targets. These do // the whole dump operation in a single function call. // They take as their second template argument a dump or restore functor which // is then called to perform the dump/restore operation. // They use an installer callback function to install any polymorphic type // handlers required prior to performing the dump/restore. If there are no // polymorphic types used in the data structure, then the callback can be set // to null (i.e. 0). //////////////////////////////////////////////////////////////////////////////// #include "persistence_fixes.hpp" #include "persistent_contexts.hpp" //////////////////////////////////////////////////////////////////////////////// namespace stlplus { //////////////////////////////////////////////////////////////////////////////// // arbitrary IOStream device // must be in binary mode // exceptions: persistent_dump_failed template < typename T, class D> void dump_to_device( const T& source, std::ostream& result, D dump_fn, dump_context::installer installer); // exceptions: persistent_restore_failed template < typename T, class R> void restore_from_device(std::istream& source, T& result, R restore_fn, restore_context::installer installer); //////////////////////////////////////////////////////////////////////////////// // string IO device // exceptions: persistent_dump_failed template < typename T, class D> void dump_to_string( const T& source, std:: string & result, D dump_fn, dump_context::installer installer); // exceptions: persistent_restore_failed template < typename T, class R> void restore_from_string( const std:: string & source, T& result, R restore_fn, restore_context::installer installer); //////////////////////////////////////////////////////////////////////////////// // file IO device // exceptions: persistent_dump_failed template < typename T, class D> void dump_to_file( const T& source, const std:: string & filename, D dump_fn, dump_context::installer installer); // exceptions: persistent_restore_failed template < typename T, class R> void restore_from_file( const std:: string & filename, T& result, R restore_fn, restore_context::installer installer); //////////////////////////////////////////////////////////////////////////////// } // end namespace stlplus //////////////////////////////////////////////////////////////////////////////// #include "persistent_shortcuts.tpp" #endif |