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
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065 #ifndef XIMOL_XML_ETAG_HPP_
00066 #define XIMOL_XML_ETAG_HPP_
00067
00068 #include <ximol/qname.hpp>
00069 #include <ximol/control_flow.hpp>
00070 #include <ximol/parser/utils.hpp>
00071
00072
00073 XIMOL_XML_BEGIN_NAMESPACE
00074
00075
00076
00077
00078 template < typename Qname >
00079 struct manipulator_etag
00080 {
00081 manipulator_etag():qname_(NULL){};
00082 manipulator_etag(Qname qname):qname_(new Qname(qname)){};
00083 manipulator_etag(const manipulator_etag<Qname> & x):qname_(new Qname(*x.qname_)){};
00084 ~manipulator_etag(){ delete qname_; };
00085
00086 Qname * qname_;
00087 private:
00088 manipulator_etag<Qname> & operator=(const manipulator_etag<Qname> & x);
00089 };
00090
00091
00092
00093
00094 template < typename Qname>
00095 xostream& operator<<(xostream& xos, const manipulator_etag<Qname>& m)
00096 {
00097 XIMOL_PARSER_USING_NAMESPACE;
00098 if (m.qname_==NULL) {
00099 write_etag(xos);
00100 } else {
00101 if (m.qname_->is_prefix_set())
00102 write_etag(xos,m.qname_->get_local(),m.qname_->get_prefix());
00103 else
00104 write_etag(xos,m.qname_->get_local());
00105 };
00106 return xos;
00107 };
00108
00109
00110
00111
00112 template < typename Qname>
00113 xistream& operator>>(xistream& xis, manipulator_etag<Qname> m)
00114 {
00115 XIMOL_PARSER_USING_NAMESPACE;
00116 xstring prefix, local;
00117
00118 if (has_skip_whitespace(xis))
00119 read_optionnal_space(xis);
00120
00121 read_etag(xis, local, prefix);
00122 if (m.qname_!=NULL) {
00123 m.qname_->set_local(local);
00124 if (m.qname_->is_prefix_set())
00125 m.qname_->set_prefix(prefix);
00126 };
00127 return xis;
00128 };
00129
00130
00131 #define XIMOL_HEADER_DEFINE_FUNCTION(type1, type2) \
00132 XIMOL_EXPORT manipulator_etag< qualified_name<type1, type2> > etag(type1 & prefix, type2 & local);
00133 #include <ximol/config/define_functions_prefix_local.hpp>
00134
00135
00136 #define XIMOL_HEADER_DEFINE_FUNCTION(type1) \
00137 XIMOL_EXPORT manipulator_etag< qualified_name<type1, type1> > etag(type1 & local);
00138 #include <ximol/config/define_functions_local.hpp>
00139
00140 XIMOL_EXPORT manipulator_etag< qualified_name< ::std::wstring, ::std::wstring> > etag();
00141
00142 XIMOL_XML_END_NAMESPACE
00143
00144 #endif // #ifndef XIMOL_XML_ETAG_HPP_