00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 #ifndef VCSN_XML_PRINTERS_HH
00019 # define VCSN_XML_PRINTERS_HH
00020 
00031 # include <vector>
00032 # include <map>
00033 # include <iostream>
00034 
00035 # include <xercesc/dom/DOM.hpp>
00036 # include <xercesc/util/XMLString.hpp>
00037 # include <xercesc/util/PlatformUtils.hpp>
00038 
00039 namespace vcsn
00040 {
00041   namespace xml
00042   {
00043     
00044 
00045 
00046     class Printer
00047     {
00048       public:
00049         Printer ();
00050         virtual ~Printer () = 0;
00051     };
00052 
00053     
00054 
00055 
00056     template <typename Auto>
00057     class AutPrinter : public Printer
00058     {
00059       public:
00060         AutPrinter (const Auto& aut, const std::string& name = "");
00061         virtual ~AutPrinter ();
00062 
00063         void
00064         print (std::ostream& out);
00065 
00066       protected:
00067         typedef typename Auto::hstate_t                 hstate_t;
00068         typedef typename Auto::htransition_t            htransition_t;
00069         typedef std::map<hstate_t, std::string>         map_t;
00070         typedef typename Auto::set_t                    auto_set_t;
00071         typedef typename Auto::value_t                  auto_impl_t;
00072         typedef typename Auto::series_set_elt_t         series_set_elt_t;
00073 
00074         std::string
00075         create_state(hstate_t s,
00076                      xercesc::DOMElement* root);
00077         void
00078         create_transition(htransition_t e,
00079                           xercesc::DOMElement* root);
00080         void
00081         create_initial(hstate_t s,
00082                        xercesc::DOMElement* root);
00083         void
00084         create_final(hstate_t s,
00085                      xercesc::DOMElement* root);
00086 
00087         void
00088         create_geometry(hstate_t&,
00089                         xercesc::DOMElement* root);
00090 
00091         const Auto&                     aut_;
00092         const std::string&              name_;
00093 
00094         map_t                   state2str_;
00095 
00096         xercesc::DOMImplementation*     impl_;
00097         xercesc::DOMDocument*           doc_;
00098         xercesc::DOMElement*            root_;
00099     };
00100   } 
00101 } 
00102 
00103 # if !defined VCSN_USE_INTERFACE_ONLY || defined VCSN_USE_LIB
00104 # include <vaucanson/xml/printers.hxx>
00105 # endif // VCSN_USE_INTERFACE_ONLY
00106 
00107 #endif // !VCSN_XML_PRINTERS_HH