Diff for /parser3/src/classes/xdoc.C between versions 1.57 and 1.118

version 1.57, 2002/01/10 15:41:49 version 1.118, 2003/11/20 15:35:30
Line 1 Line 1
 /** @file  /** @file
         Parser: @b xdoc parser class.          Parser: @b xdoc parser class.
   
         Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)          Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com)
         Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru)          Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
   
         $Id$  
 */  */
 #include "pa_types.h"  
 #include "classes.h"  #include "pa_config_includes.h"
   
 #ifdef XML  #ifdef XML
   
   static const char* IDENT_XDOC_C="$Date$";
   
   #include "gdome.h"
   #include "libxml/tree.h"
   #include "libxslt/xsltInternals.h"
   #include "libxslt/transform.h"
   #include "libxslt/xsltutils.h"
   #include "libxslt/variables.h"
   
   
   #include "pa_vmethod_frame.h"
   
   #include "pa_stylesheet_manager.h"
 #include "pa_request.h"  #include "pa_request.h"
 #include "pa_vxdoc.h"  #include "pa_vxdoc.h"
 #include "pa_charset.h"  #include "pa_charset.h"
 #include "pa_vfile.h"  #include "pa_vfile.h"
   #include "pa_xml_exception.h"
 #include "xnode.h"  #include "xnode.h"
   
 // defines  // defines
Line 24 Line 37
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "xml"  #define XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "xml"
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html"  #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html"
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text"  #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text"
 #define XDOC_OUTPUT_DEFAULT_INDENT 4  
   
 // class  // class
   
 class MXdoc : public MXnode {  class MXdoc: public MXnode {
 public: // VStateless_class  public: // VStateless_class
         Value *create_new_value(Pool& pool) { return new(pool) VXdoc(pool, 0); }          Value* create_new_value(Pool&) { return new VXdoc(0, 0); }
   
   public:
           MXdoc();
   
   };
   
   // global variable
   
   DECLARE_CLASS_VAR(xdoc, new MXdoc, 0);
   
   // helper classes
   
   class xmlOutputBuffer_auto_ptr {
   public:
           explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xmlOutputBufferClose(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xmlOutputBuffer_auto_ptr()
                   {if (_Owns && _Ptr)
                           xmlOutputBufferClose(_Ptr); }
           xmlOutputBuffer& operator*() const 
                   {return (*get()); }
           xmlOutputBuffer *operator->() const 
                   {return (get()); }
           xmlOutputBuffer *get() const 
                   {return (_Ptr); }
           xmlOutputBuffer *release() const 
                   {((xmlOutputBuffer_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
   private:
           bool _Owns;
           xmlOutputBuffer *_Ptr;
   };
   
   class xsltTransformContext_auto_ptr {
 public:  public:
         MXdoc(Pool& pool);          explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xsltFreeTransformContext(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xsltTransformContext_auto_ptr()
                   {if (_Owns && _Ptr)
                           xsltFreeTransformContext(_Ptr); }
           xsltTransformContext& operator*() const 
                   {return (*get()); }
           xsltTransformContext *operator->() const 
                   {return (get()); }
           xsltTransformContext *get() const 
                   {return (_Ptr); }
           xsltTransformContext *release() const 
                   {((xsltTransformContext_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
   private:
           bool _Owns;
           xsltTransformContext *_Ptr;
   };
   
 public: // Methoded  class xsltStylesheet_auto_ptr {
         bool used_directly() { return true; }  public:
         void configure_admin(Request& r);          explicit xsltStylesheet_auto_ptr(xsltStylesheet *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xsltFreeStylesheet(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xsltStylesheet_auto_ptr()
                   {if (_Owns && _Ptr)
                           xsltFreeStylesheet(_Ptr); }
           xsltStylesheet& operator*() const 
                   {return (*get()); }
           xsltStylesheet *operator->() const 
                   {return (get()); }
           xsltStylesheet *get() const 
                   {return (_Ptr); }
           xsltStylesheet *release() const 
                   {((xsltStylesheet_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
   private:
           bool _Owns;
           xsltStylesheet *_Ptr;
 };  };
   
 // methods  // methods
   
 static void writeNode(Request& r,  const String& method_name, GdomeNode *node,   static void writeNode(Request& r, GdomeNode *node, 
                                           GdomeException exc) {                                            GdomeException exc) {
         if(!node || exc)          if(!node || exc)
                 throw Exception(0, 0,                   throw XmlException(0, exc);
                         &method_name,   
                         exc);  
   
         Pool& pool=r.pool();  
   
         // write out result          // write out result
         VXnode& result=*new(pool) VXnode(pool, node);          r.write_no_lang(*new VXnode(&r.charsets, node));
         r.write_no_lang(result);  
 }  }
   
 // Element createElement(in DOMString tagName) raises(DOMException);  // Element createElement(in DOMString tagName) raises(DOMException);
 static void _createElement(Request& r, const String& method_name, MethodParams *params) {  static void _createElement(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& tagName=params->as_string(0, "tagName must be string");          const String& tagName=params.as_string(0, "tagName must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=          GdomeNode *node=
                 (GdomeNode *)gdome_doc_createElement(vdoc.get_document(&method_name),                   (GdomeNode *)gdome_doc_createElement(vdoc.get_document(), 
                 pool.transcode(tagName).get(),                  r.transcode(tagName).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
   }
   
   // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
   static void _createElementNS(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // namespaceURI;localName
           const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
           const String& qualifiedName=params.as_string(1, "qualifiedName must be string");
   
           GdomeException exc;
           GdomeNode *node=
                   (GdomeNode *)gdome_doc_createElementNS(vdoc.get_document(), 
                   r.transcode(namespaceURI).use(),
                   r.transcode(qualifiedName).use(),
                   &exc);
           writeNode(r, node, exc);
 }  }
   
 // DocumentFragment createDocumentFragment()  // DocumentFragment createDocumentFragment()
 static void _createDocumentFragment(Request& r, const String& method_name, MethodParams *) {  static void _createDocumentFragment(Request& r, MethodParams&) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=          GdomeNode *node=
                 (GdomeNode *)gdome_doc_createDocumentFragment(                  (GdomeNode *)gdome_doc_createDocumentFragment(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 // Text createTextNode(in DOMString data);  // Text createTextNode(in DOMString data);
 static void _createTextNode(Request& r, const String& method_name, MethodParams *params) {  static void _createTextNode(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& data=params->as_string(0, "data must be string");          const String& data=params.as_string(0, "data must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode(          GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(data).get(),                  r.transcode(data).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 // Comment createComment(in DOMString data)  // Comment createComment(in DOMString data)
 static void _createComment(Request& r, const String& method_name, MethodParams *params) {  static void _createComment(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& data=params->as_string(0, "data must be string");          const String& data=params.as_string(0, "data must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createComment(          GdomeNode *node=(GdomeNode *)gdome_doc_createComment(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(data).get(),                  r.transcode(data).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 // CDATASection createCDATASection(in DOMString data) raises(DOMException);  // CDATASection createCDATASection(in DOMString data) raises(DOMException);
 static void _createCDATASection(Request& r, const String& method_name, MethodParams *params) {  static void _createCDATASection(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& data=params->as_string(0, "data must be string");          const String& data=params.as_string(0, "data must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection(          GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(data).get(),                  r.transcode(data).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException);  // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException);
 static void _createProcessingInstruction(Request& r, const String& method_name, MethodParams *params) {  static void _createProcessingInstruction(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& target=params->as_string(0, "data must be string");          const String& target=params.as_string(0, "data must be string");
         const String& data=params->as_string(1, "data must be string");          const String& data=params.as_string(1, "data must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction(          GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(target).get(),                   r.transcode(target).use(), 
                 pool.transcode(data).get(),                  r.transcode(data).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 // Attr createAttribute(in DOMString name) raises(DOMException);  // Attr createAttribute(in DOMString name) raises(DOMException);
 static void _createAttribute(Request& r, const String& method_name, MethodParams *params) {  static void _createAttribute(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& name=params->as_string(0, "name must be string");          const String& name=params.as_string(0, "name must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute(          GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(name).get(),                  r.transcode(name).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
   // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
   static void _createAttributeNS(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // namespaceURI;qualifiedName
           const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
           const String& qualifiedName=params.as_string(1, "name must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createAttributeNS(
                   vdoc.get_document(),
                   r.transcode(namespaceURI).use(),
                   r.transcode(qualifiedName).use(),
                   &exc);
           writeNode(r, node, exc);
   }
   
 // EntityReference createEntityReference(in DOMString name) raises(DOMException);  // EntityReference createEntityReference(in DOMString name) raises(DOMException);
 static void _createEntityReference(Request& r, const String& method_name, MethodParams *params) {  static void _createEntityReference(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& name=params->as_string(0, "name must be string");          const String& name=params.as_string(0, "name must be string");
   
         GdomeException exc;          GdomeException exc;
         GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(          GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(name).get(),                  r.transcode(name).use(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, exc);          writeNode(r, node, exc);
 }  }
   
 static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) {  // NodeList getElementsByTagName(in DOMString name);
         Pool& pool=r.pool();  static void _getElementsByTagName(Request& r, MethodParams& params) {
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         const String& name=params->as_string(0, "name must be string");          const String& name=params.as_string(0, "name must be string");
   
           VHash& result=*new VHash;
         GdomeException exc;          GdomeException exc;
         VHash& result=*new(pool) VHash(pool);  
         if(GdomeNodeList *nodes=          if(GdomeNodeList *nodes=
                 gdome_doc_getElementsByTagName(                  gdome_doc_getElementsByTagName(
                         vdoc.get_document(&method_name),                           vdoc.get_document(), 
                         pool.transcode(name).get(),                          r.transcode(name).use(), 
                         &exc)) {                          &exc)) {
                 gulong length=gdome_nl_length(nodes, &exc);                  gulong length=gdome_nl_length(nodes, &exc);
                 for(gulong i=0; i<length; i++) {                  for(gulong i=0; i<length; i++)
                         String& skey=*new(pool) String(pool);                          result.hash().put(
                         {                                  String::Body::Format(i), 
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);                                  new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));
                                 snprintf(buf, MAX_NUMBER, "%d", i);          } else if(exc)
                                 skey << buf;                  throw XmlException(0, exc);
                         }  
   
                         result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc)));  
                 }  
         }  
   
         // write out result          // write out result
         r.write_no_lang(result);          r.write_no_lang(result);
 }  }
   
 static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) {  static void _getElementsByTagNameNS(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // namespaceURI;localName          // namespaceURI;localName
         const String& namespaceURI=params->as_string(0, "namespaceURI must be string");          const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
         const String& localName=params->as_string(0, "localName must be string");          const String& localName=params.as_string(1, "localName must be string");
   
         GdomeException exc;          GdomeException exc;
         VHash& result=*new(pool) VHash(pool);          VHash& result=*new VHash;
         if(GdomeNodeList *nodes=          if(GdomeNodeList *nodes=
                 gdome_doc_getElementsByTagNameNS(                  gdome_doc_getElementsByTagNameNS(
                         vdoc.get_document(&method_name),                           vdoc.get_document(), 
                         pool.transcode(namespaceURI).get(),                          r.transcode(namespaceURI).use(),
                         pool.transcode(localName).get(),                          r.transcode(localName).use(),
                         &exc)) {                          &exc)) {
                 gulong length=gdome_nl_length(nodes, &exc);                  gulong length=gdome_nl_length(nodes, &exc);
                 for(gulong i=0; i<length; i++) {                  for(gulong i=0; i<length; i++)
                         String& skey=*new(pool) String(pool);                          result.hash().put(
                         {                                  String::Body::Format(i), 
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);                                  new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));
                                 snprintf(buf, MAX_NUMBER, "%d", i);  
                                 skey << buf;  
                         }  
   
                         result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc)));  
                 }  
         }          }
   
   
         // write out result          // write out result
         r.write_no_lang(result);          r.write_no_lang(result);
 }  }
   
 static void _getElementById(Request& r, const String& method_name, MethodParams *params) {  static void _getElementById(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // elementId          // elementId
         const String& elementId=params->as_string(0, "elementID must be string");          const String& elementId=params.as_string(0, "elementID must be string");
   
         GdomeException exc;          GdomeException exc;
         if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(          if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(
                 vdoc.get_document(&method_name),                  vdoc.get_document(),
                 pool.transcode(elementId).get(),                  r.transcode(elementId).use(),
                 &exc)) {                  &exc)) {
                 // write out result                  // write out result
                 VXnode& result=*new(pool) VXnode(pool, node);                  r.write_no_lang(*new VXnode(&r.charsets, node));
                 r.write_no_lang(result);          } else if(exc || xmlHaveGenericErrors())
         } else if(exc)                  throw XmlException(&elementId, exc);
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
 }  }
 /*  
 GdomeNode *gdome_doc_importNode (GdomeDocument *self, GdomeNode *importedNode, GdomeBoolean deep, GdomeException *exc);  
 GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);  
 GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);  
 */  
   
   static void _importNode(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
 static void _create(Request& r, const String& method_name, MethodParams *params) {          GdomeNode *importedNode=
         //_asm int 3;                  as_node(params, 0, "importedNode must be node");
         Pool& pool=r.pool();          bool deep=
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);                  params.as_bool(1, "deep must be bool", r);
   
         const String& qualifiedName=params->as_string(0, "qualifiedName must be string");  
   
         GdomeException exc;          GdomeException exc;
         /*          GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(), 
         GdomeDocumentType *documentType=gdome_di_createDocumentType (                  importedNode,
                 docimpl,                   deep, &exc);
                 pool.transcode(qualifiedName),           if(exc)
                 0/*publicId* /,                   throw XmlException(0, exc);
                 0/*systemId* /,   
                 &exc);  
         if(!documentType || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
         */  
         GdomeDocument *document=gdome_di_createDocument (domimpl,   
                 0/*namespaceURI*/,   
                 pool.transcode(qualifiedName).get(),   
                 0/*doctype*/,   
                 &exc);  
         if(!document || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
   
         /// +xalan createXMLDecl ?          // write out result
           r.write_no_lang(*new VXnode(&r.charsets, outputNode));
         // replace any previous parsed source  
         vdoc.set_document(document);  
 }  }
   /*
   GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   */
   
 /// @test xmlSAXParseMemory(NULL<<error handler subst, buffer, size, 0)  static void _create(Request& r, MethodParams& params) {
 static void _set(Request& r, const String& method_name, MethodParams *params) {          Charset& source_charset=r.charsets.source();
 //      _asm int 3;          VXdoc& vdoc=GET_SELF(r, VXdoc);
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          Value& param=params[params.count()-1];
           GdomeDocument *document;
         Value& vxml=params->as_junction(0, "xml must be code");          bool set_encoding=false;
         Temp_lang temp_lang(r, String::UL_XML);          if(param.get_junction()) { // {<?xml?>...}
         const String& xml=r.process(vxml).as_string();                  Temp_lang temp_lang(r, String::L_XML);
                   const String& xml=r.process_to_string(param);
   
                   const char* cstr=xml.cstr(String::L_UNSPECIFIED);
                   document=(GdomeDocument *)
                           gdome_xml_n_mkref((xmlNode *)xmlParseMemory(
                                   cstr, strlen(cstr)
                           ));
                   //printf("document=0x%p\n", document);
                   if(!document || xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw XmlException(0, exc);
                   }
   
         GdomeException exc;                  // must be last action in if, see after if}
         GdomeDocument *document=gdome_di_createDocFromMemory(domimpl,          } else { // [name]
                 xml.cstr(String::UL_UNSPECIFIED, r.connection),                  const String& qualifiedName=param.as_string();
                 GDOME_LOAD_PARSING  
                 /* GDOME_LOAD_VALIDATING */                   GdomeException exc;
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,                  /*
                 &exc);                  GdomeDocumentType *documentType=gdome_di_createDocumentType (
         if(!document || exc)                          docimpl, 
                 throw Exception(0, 0,                           r.transcode(qualifiedName), 
                         &method_name,                           0/*publicId* /, 
                         exc);                          0/*systemId* /, 
                           &exc);
                   if(!documentType || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
                   /// +xalan createXMLDecl ?
                   */
                   document=gdome_di_createDocument (domimpl, 
                           0/*namespaceURI*/, 
                           r.transcode(qualifiedName).use(), 
                           0/*doctype*/, 
                           &exc);
                   if(!document || exc || xmlHaveGenericErrors())
                           throw XmlException(0, exc);
   
                   set_encoding=true;
                   // must be last action in if, see after if}
           }
           // must be first action after if}
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          {
                   vdoc.set_document(&r.charsets, document); 
                   GdomeException exc;
                   gdome_doc_unref(document, &exc);
           }
           
           // URI 
           const char* URI_cstr;
           const char* URI_cstr_ptr;
           if(params.count()>1) { // absolute(param)
                   const String& URI=params.as_string(0, "URI must be string");
                   URI_cstr=URI_cstr_ptr=r.absolute(URI).cstr();
           } else // default = disk path to requested document
                   URI_cstr=r.request_info.path_translated;
           xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
           if(URI_cstr)
                   doc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   
           if(set_encoding) {
                   const char* source_charset_name=source_charset.NAME().cstr();
                   doc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
           }
 }  }
   
 static void _load(Request& r, const String& method_name, MethodParams *params) {  static void _load(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // filespec          // filespec
         const String& file_name=params->as_string(0, "uri must be string");          const String& file_name=params.as_string(0, "uri must be string");
         const String& uri=r.absolute(file_name);          const String& uri=r.absolute(file_name);
           
         GdomeException exc;  
         GdomeDocument *document=gdome_di_createDocFromURI(domimpl,  
                 uri.cstr(),  
                 GDOME_LOAD_PARSING  
                 /*GDOME_LOAD_VALIDATING */   
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,  
                 &exc);  
         if(!document || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
   
           File_read_result file=file_read(r.charsets, uri, false/*not text*/,
                   params.count()>1?params.as_no_junction(1, "additional params must be hash")
                           .get_hash()
                           :0);
   
           GdomeDocument *document=(GdomeDocument *)
                   gdome_xml_n_mkref((xmlNode *)xmlParseMemory(file.str, file.length));
           if(!document || xmlHaveGenericErrors()) {
                   GdomeException exc=0;
                   throw XmlException(&uri, exc);
           }
           // must be first action after if}
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          {
                   vdoc.set_document(&r.charsets, document); 
                   GdomeException exc;
                   gdome_doc_unref(document, &exc);
           }
   
           const char* URI_cstr=uri.cstr();
           xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
           if(URI_cstr)
                   doc->URL=r.charsets.source().transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   
 }  }
   
 /*  static void param_option_over_output_option(
 static void param_option_over_output_option(Pool& pool,                                               HashStringValue& param_options, const char* option_name,
                                                                                         Hash *param_options, const char *option_name,                                              const String*& output_option) {
                                                                                         XalanDOMString& output_option) {          if(Value* value=param_options.get(String::Body(option_name)))
         if(Value *value=static_cast<Value *>(param_options->get(*new(pool)                   output_option=&value->as_string();
                 String(pool, option_name)))) {  
                 output_option.clear();  
                 output_option.append(value->as_string().cstr());  
         }  
 }  }
 static void param_option_over_output_option(Pool& pool,   static void param_option_over_output_option(
                                                                                         Hash *param_options, const char *option_name,                                              HashStringValue& param_options, const char* option_name,
                                                                                         bool& output_option) {                                              bool& output_option) {
         if(Value *value=static_cast<Value *>(param_options->get(*new(pool)           if(Value* value=param_options.get(String::Body(option_name))) {
                 String(pool, option_name)))) {  
                 const String& s=value->as_string();                  const String& s=value->as_string();
                 if(s=="yes")                  if(s=="yes")
                         output_option=true;                          output_option=true;
                 else if(s=="no")                  else if(s=="no")
                         output_option=false;                          output_option=false;
                 else                  else
                         throw Exception(0, 0,                          throw Exception("parser.runtime",
                                 &s,                                  &s,
                                 "%s must be either 'yes' or 'no'", option_name);                                  "%s must be either 'yes' or 'no'", option_name);
         }          }
 }  }
   
  static std::auto_ptr<FormatterListener> create_optioned_listener(  /// @test valid_options check
                                                                          Pool& pool, const String& method_name, MethodParams *params, int index,  static void prepare_output_options(Request& r,
                                                                          VXdoc::Output_options& oo, Writer& writer) {                                     MethodParams& params, size_t index,
 /*                                     VXdoc::Output_options& oo) {
         XalanDOMString encoding;  
         XalanDOMString mediaType;  
         XalanDOMString doctypeSystem;  
         XalanDOMString doctypePublic;  
         bool doIndent;  
         XalanDOMString version;  
         XalanDOMString standalone;  
         bool xmlDecl;  
 * /  
   
 /*  /*
 <xsl:output  <xsl:output
   !method = "xml" | "html" | "text" | qname-but-not-ncname     !method = "xml" | "html" | "text" | qname-but-not-ncname 
Line 405  static void param_option_over_output_opt Line 550  static void param_option_over_output_opt
   cdata-section-elements = qnames     cdata-section-elements = qnames 
   !indent = "yes" | "no"    !indent = "yes" | "no"
   !media-type = string />     !media-type = string /> 
 * /  */
   
         /*  
                 fToXML->setStripCData(stripCData);  
                 fToXML->setEscapeCData(escapeCData);  
         * /  
   
         // configuring with options from parameter...          // configuring with options from parameter...
         if(params->size()>index) {          if(params.count()>index) {
                 Value& voptions=params->as_no_junction(index, "options must be string");                  Value& voptions=params.as_no_junction(index, "options must be string");
                 if(voptions.is_defined()) {                  if(voptions.is_defined()) {
                         if(Hash *options=voptions.get_hash(&method_name)) {                          if(HashStringValue *options=voptions.get_hash()) {
                                 // $.method[xml|html|text]                                  // $.method[xml|html|text]
                                 if(Value *vmethod=static_cast<Value *>(options->get(*new(pool)                                   if(Value* vmethod=options->get(String::Body(XDOC_OUTPUT_METHOD_OPTION_NAME)))
                                         String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME))))                                          oo.method=&vmethod->as_string();
                                         oo.method=vmethod->as_string().cstr();  
   
                                 // $.version[1.0]                                  // $.version[1.0]
                                 param_option_over_output_option(pool, options, "version", oo.version);                                  param_option_over_output_option(*options, "version", oo.version);
                                 // $.encoding[windows-1251|...]                                  // $.encoding[windows-1251|...]
                                 param_option_over_output_option(pool, options, "encoding", oo.encoding);                                  param_option_over_output_option(*options, "encoding", oo.encoding);
                                 // $.omit-xml-declaration[yes|no]                                  // $.omit-xml-declaration[yes|no]
                                 bool omit_xml_declaration=!oo.xmlDecl;                                  param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration);
                                 param_option_over_output_option(pool, options, "omit-xml-declaration", omit_xml_declaration);  
                                 oo.xmlDecl=!omit_xml_declaration;  
                                 // $.standalone[yes|no]                                  // $.standalone[yes|no]
                                 param_option_over_output_option(pool, options, "standalone", oo.standalone);                                  param_option_over_output_option(*options, "standalone", oo.standalone);
                                 // $.doctype-public[?]                                  // $.doctype-public[?]
                                 param_option_over_output_option(pool, options, "doctype-public", oo.doctypePublic);                                  param_option_over_output_option(*options, "doctype-public", oo.doctypePublic);
                                 // $.doctype-system[?]                                  // $.doctype-system[?]
                                 param_option_over_output_option(pool, options, "doctype-system", oo.doctypeSystem);                                  param_option_over_output_option(*options, "doctype-system", oo.doctypeSystem);
                                 // $.indent[yes|no]                                  // $.indent[yes|no]
                                 param_option_over_output_option(pool, options, "indent", oo.doIndent);                                  param_option_over_output_option(*options, "indent", oo.indent);
                                 // $.media-type[text/{html|xml|plain}]                                  // $.media-type[text/{html|xml|plain}]
                                 param_option_over_output_option(pool, options, "media-type", oo.mediaType);                                                                param_option_over_output_option(*options, "media-type", oo.mediaType);                           
                         }                          }
                 }                  }
         }          }
   
         // default encoding from pool          // default encoding from pool
         if(oo.encoding.empty())          if(!oo.encoding)
                 oo.encoding.append(pool.get_source_charset().name().cstr());                  oo.encoding=new String(r.charsets.source().NAME(), String::L_TAINTED);
         // default method=xml          // default method=xml
         if(!oo.method)          if(!oo.method)
                 oo.method=XDOC_OUTPUT_METHOD_OPTION_VALUE_XML;                  oo.method=new String(XDOC_OUTPUT_METHOD_OPTION_VALUE_XML);
           // default mediaType = depending on method
           if(!oo.mediaType) {
                   if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML)
                           oo.mediaType=new String("text/xml");
                   else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)
                           oo.mediaType=new String("text/html");
                   else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others
                           oo.mediaType=new String("text/plain");
           }
   }
   
   struct Xdoc2buf_result {
           char* str;
           size_t length;
   };
   static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc, 
                                            MethodParams& params, int index,
                                            VXdoc::Output_options& oo,
                                            const String* file_spec) {
           Xdoc2buf_result result;
           prepare_output_options(r, params, index,
                   oo);
   
           const char* encoding_cstr=oo.encoding->cstr();
           xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);
           if(!encoder)
                   throw Exception("parser.runtime",
                           0,
                           "encoding '%s' not supported", encoding_cstr);
           // UTF-8 encoder contains empty input/output converters, 
           // which is wrong for xmlOutputBufferCreateIO
           // while zero encoder goes perfectly 
           if(encoder && strcmp(encoder->name, "UTF-8")==0)
                   encoder=0;
   
           xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));
   
           xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());
           if(!stylesheet.get())
                   throw Exception(0,
                           0,
                           "xsltNewStylesheet failed");
   
           #define OOS2STYLE(name) \
                   stylesheet->name=oo.name?BAD_CAST xmlMemStrdup(r.transcode(*oo.name)->str):0
           #define OOE2STYLE(name) \
                   stylesheet->name=oo.name
   
           OOS2STYLE(method);
           OOS2STYLE(encoding);
           OOS2STYLE(mediaType);
           OOS2STYLE(doctypeSystem);
           OOS2STYLE(doctypePublic);
           OOE2STYLE(indent);
           OOS2STYLE(version);
           OOE2STYLE(standalone);
           OOE2STYLE(omitXmlDeclaration);
   
           xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());
           if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {
                   GdomeException exc=0;
                   throw XmlException(0, exc);
           }
   
         if(strcmp(oo.method, XDOC_OUTPUT_METHOD_OPTION_VALUE_XML)==0) {          // write out result
                 if(oo.mediaType.empty())          char *gnome_str;  size_t gnome_length;
                         oo.mediaType.append("text/xml");          if(outputBuffer->conv) {
                 return std::auto_ptr<FormatterListener>(new FormatterToXML(writer,                  gnome_length=outputBuffer->conv->use;
                         oo.version,                    gnome_str=(char *)outputBuffer->conv->content;
                         oo.doIndent,          } else {
                         XDOC_OUTPUT_DEFAULT_INDENT, // indent                   gnome_length=outputBuffer->buffer->use;
                         oo.encoding,                  gnome_str=(char *)outputBuffer->buffer->content;
                         oo.mediaType,          }
                         oo.doctypeSystem,  
                         oo.doctypePublic,          if(result.length=gnome_length) {
                         oo.xmlDecl,                  result.str=pa_strdup(gnome_str, gnome_length);
                         oo.standalone  
                 ));  
         } else if(strcmp(oo.method, XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)==0) {  
                 if(oo.mediaType.empty())  
                         oo.mediaType.append("text/html");  
                 return std::auto_ptr<FormatterListener>(new FormatterToHTML(writer,  
                         oo.encoding,  
                         oo.mediaType,  
                         oo.doctypeSystem,  
                         oo.doctypePublic,  
                         oo.doIndent,  
                         XDOC_OUTPUT_DEFAULT_INDENT, // indent   
                         oo.version,  
                         oo.standalone,  
                         oo.xmlDecl  
                 ));  
         } else if(strcmp(oo.method, XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT)==0) {  
                 if(oo.mediaType.empty())  
                         oo.mediaType.append("text/plain");  
                 return std::auto_ptr<FormatterListener>(new FormatterToText(writer,  
                         oo.encoding  
                 ));  
         } else          } else
                 throw Exception(0, 0,                  result.str=0;
                         &method_name,  
                         XDOC_OUTPUT_METHOD_OPTION_NAME " option is invalid; valid methods are: "          if(file_spec)
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "', "                  file_write(*file_spec,
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "', "                          gnome_str, gnome_length, 
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "'");                                            true/*as_text*/);
   
           return result;
   }
   
   static void _file(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
           VXdoc::Output_options oo(vdoc.output_options);
           Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0, 
                   oo,
                   0/*not to file, to memory*/);
           // write out result
           r.write_no_lang(String(buf.str, buf.length));
   
         // never reached          // write out result
           VFile& vfile=*new VFile;
           VHash& vhcontent_type=*new VHash;
           vhcontent_type.hash().put(
                   value_name, 
                   new VString(*oo.mediaType));
           vhcontent_type.hash().put(
                   String::Body("charset"), 
                   new VString(*oo.encoding));
   
           vfile.set(false/*tainted*/, buf.str?buf.str:""/*to distinguish from stat-ed file*/, buf.length, 
                   0/*file_name*/, &vhcontent_type);
           r.write_no_lang(vfile);
 }  }
 */  
   
 static void _save(Request& r, const String& method_name, MethodParams *params) {  static void _save(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& file_name=params->as_string(0, "file name must be string");          const String& file_spec=r.absolute(params.as_string(0, "file name must be string"));
         const String& filespec=r.absolute(file_name);  
                   
         GdomeException exc;          VXdoc::Output_options oo(vdoc.output_options);
         if(!gdome_di_saveDocToFile(domimpl,          xdoc2buf(r, vdoc, params, 1, 
                 vdoc.get_document(&method_name),                  oo,
                 filespec.cstr(String::UL_FILE_SPEC),                  &file_spec);
                 GDOME_SAVE_LIBXML_INDENT /*GDOME_SAVE_STANDARD */,  }
                 &exc))  
                 throw Exception(0, 0,   static void _string(Request& r, MethodParams& params) {
                         &method_name,           VXdoc& vdoc=GET_SELF(r, VXdoc);
                         exc);          VXdoc::Output_options oo(vdoc.output_options);
 }          Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0, 
                   oo,
 static void _string(Request& r, const String& method_name, MethodParams *params) {                  0/*not to file, to memory*/);
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         char *mem;  
         GdomeException exc;  
         if(!gdome_di_saveDocToMemory(domimpl,  
                 vdoc.get_document(&method_name),  
                 &mem,  
                 GDOME_SAVE_LIBXML_INDENT /*GDOME_SAVE_STANDARD */,  
                 &exc))  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
   
         // move to pool memory  
         size_t size=strlen(mem);  
         char *buf=(char *)pool.malloc(size);  
         memcpy(buf, mem, size);  
         g_free(mem);  
         // write out result          // write out result
         r.write_no_lang(*new(pool) String(pool, buf, size));          r.write_no_lang(String(buf.str, buf.length));
 }  }
   
 /*  #ifndef DOXYGEN
 static void _file(Request& r, const String& method_name, MethodParams *params) {  struct Add_xslt_param_info {
         Pool& pool=r.pool();          Request* r;
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          Array<GdomeDOMString_auto_ptr>* strings;
         VXnode& vnode=*static_cast<VXnode *>(r.self);          const char** current_transform_param;
   };
         // node  #endif
         GdomeNode *node=vnode.get_node(pool, &method_name);  static void add_xslt_param(
                              HashStringValue::key_type attribute, 
         try {                             HashStringValue::value_type meaning, 
                 VXdoc::Output_options oo(vdoc.output_options);                             Add_xslt_param_info* info) {
                 String& parserString=*new(pool) String(pool);          GdomeDOMString_auto_ptr s;
                 ParserStringXalanOutputStream stream(parserString);          *info->current_transform_param++=(s=info->r->transcode(attribute))->str; *info->strings+=s;
                 XalanOutputStreamPrintWriter writer(stream);          *info->current_transform_param++=(s=info->r->transcode(meaning->as_string()))->str; *info->strings+=s;
                 std::auto_ptr<FormatterListener> formatterListener=  }
                         create_optioned_listener(pool, method_name, params, 0,   static VXdoc& _transform(Request& r, const String* stylesheet_source, 
                                 oo, writer);                                                     VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params) {
                 FormatterTreeWalker treeWalker(*formatterListener);          xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());
                 treeWalker.traverse(&node); // Walk that node and produce the XML...          xsltTransformContext_auto_ptr transformContext(
                   xsltNewTransformContext(stylesheet, document));
           // make params literal
           if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext
                   transformContext->globalVars = xmlHashCreate(20);
           xsltQuoteUserParams(transformContext.get(), transform_params);
           // do transform
           xmlDoc *transformed=xsltApplyStylesheetUser(
                   stylesheet,
                   document,
                   0/*already quoted-inserted  transform_params*/,
                   0/*const char* output*/,
                   0/*FILE *profile*/,
                   transformContext.get());
           if(!transformed || xmlHaveGenericErrors()) {
                   GdomeException exc=0;
                   throw XmlException(stylesheet_source, exc);
           }
   
           //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing
           transformed->type=XML_DOCUMENT_NODE;
           // constructing result
           GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);
           if(!gdomeDocument)
                   throw Exception(0,
                           0,
                           "gdome_xml_doc_mkref failed");
           VXdoc& result=*new VXdoc(&r.charsets, gdomeDocument);
           /* grabbing options
   
                   <xsl:output
                   !method = "xml" | "html" | "text"
                           X| qname-but-not-ncname 
                   !version = nmtoken 
                   !encoding = string 
                   !omit-xml-declaration = "yes" | "no"
                   !standalone = "yes" | "no"
                   !doctype-public = string 
                   !doctype-system = string 
                   Xcdata-section-elements = qnames 
                   !indent = "yes" | "no"
                   !media-type = string /> 
           */
           VXdoc::Output_options& oo=result.output_options;
   
                 // write out result          oo.method=stylesheet->method?&r.transcode(stylesheet->method):0;
                 VFile& vfile=*new(pool) VFile(pool);          oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0;
                 const char *cstr=parserString.cstr();          oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0;
                 const String& scontent_type=pool.transcode(oo.mediaType);          oo.doctypeSystem=stylesheet->doctypeSystem?&r.transcode(stylesheet->doctypeSystem):0;
                 Value *vcontent_type;          oo.doctypePublic=stylesheet->doctypePublic?&r.transcode(stylesheet->doctypePublic):0;
                 if(oo.encoding.empty())           oo.indent=stylesheet->indent!=0;
                         vcontent_type=new(pool) VString(scontent_type);          oo.version=stylesheet->version?&r.transcode(stylesheet->version):0;
                 else {          oo.standalone=stylesheet->standalone!=0;
                         VHash *vhcontent_type=new(pool) VHash(pool);          oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;
                         vhcontent_type->hash(&method_name).put(*value_name, new(pool) VString(scontent_type));  
                         const String& scharset=pool.transcode(oo.encoding);          // return
                         vhcontent_type->hash(&method_name).put(*new(pool) String(pool, "charset"), new(pool) VString(scharset));          return result;
                         vcontent_type=vhcontent_type;  
                 }  
                   
                 vfile.set(false/*tainted* /, cstr, strlen(cstr), 0/*file_name* /, vcontent_type);  
                 r.write_no_lang(vfile);  
         } catch(const XSLException& e) {  
                 Exception::provide_source(pool, &method_name, e);  
         }  
 }  }
 */  static void _transform(Request& r, MethodParams& params) {
 /*          VXdoc& vdoc=GET_SELF(r, VXdoc);
 /// @test lang=String::UL_UNSPECIFIED?  
 static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning,   
                                                    void *info) {  
         XalanTransformer2& transformer=*static_cast<XalanTransformer2 *>(info);  
         const char *attribute_cstr=aattribute.cstr(String::UL_UNSPECIFIED);  
         const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr(String::UL_UNSPECIFIED);  
   
         transformer.setStylesheetParam(  
                 XalanDOMString(attribute_cstr),    
                 XalanDOMString(meaning_cstr));  
 }  
 static void _transform(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // params          // params
         if(params->size()>1) {          Array<GdomeDOMString_auto_ptr> transform_strings;
                 Value& vparams=params->as_no_junction(1, "transform parameters parameter must be string");          const char** transform_params=0;
                 if(vparams.is_defined())          if(params.count()>1) {
                         if(Hash *params=vparams.get_hash(&method_name))                  Value& vparams=params.as_no_junction(1, "transform parameters must be hash");
                                 params->for_each(add_xslt_param, &vdoc.transformer());                  if(!vparams.is_string())
                         else                          if(HashStringValue* hash=vparams.get_hash()) {
                                 throw Exception(0, 0,                                  transform_params=new(UseGC) const char*[hash->count()*2+1];
                                         &method_name,                                  Add_xslt_param_info info={
                                           &r, 
                                           &transform_strings,
                                           transform_params
                                   };
                                   hash->for_each(add_xslt_param, &info);
                                   transform_params[hash->count()*2]=0;                            
                           } else
                                   throw Exception("parser.runtime",
                                           0,
                                         "transform parameters parameter must be hash");                                          "transform parameters parameter must be hash");
         }          }
   
         // stylesheet          VXdoc* result;
         const String& stylesheet_file_name=params->as_string(0, "file name must be string");          if(Value *vxdoc=params[0].as(VXDOC_TYPE, false)) { // stylesheet (xdoc)
         const String& stylesheet_filespec=r.absolute(stylesheet_file_name);                  xmlDoc *document=gdome_xml_doc_get_xmlDoc(
         //_asm int 3;                          static_cast<VXdoc *>(vxdoc)->get_document());
         Stylesheet_connection& connection=stylesheet_manager->get_connection(stylesheet_filespec);                  // compile xdoc stylesheet
                   xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document)); 
         // target                  // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor
         XalanDocument* target=vdoc.parser_xerces_liaison().createDocument();                  // we don't need that
                   stylesheet_ptr->doc=0;
         // transform                  if(xmlHaveGenericErrors()) {
         try {                          GdomeException exc=0;
                 // note:                           throw XmlException(0, exc);
                 //   actually, never found any difference between the two  
                 //   but still there some extra "xerces" words at start of transform body  
                 //   wich were originally "xalan"  
                 //   not daring to change that  
   
                 const XalanCompiledStylesheet& stylesheet=connection.stylesheet(false/*nocache* /);  
                 if(vdoc.has_parsed_source()) { // set|load, not create?  
                         vdoc.transformer().transform2(  
                                 vdoc.get_parsed_source(pool, &method_name),   
                                 &stylesheet,   
                                 target);  
                 } else {  
                         target=vdoc.parser_xerces_liaison().createDocument();  
                         vdoc.transformer().transform2(  
                                 vdoc.get_document(&method_name),   
                                 &stylesheet,   
                                 target);  
                 }                  }
                 VXdoc& result=*new(pool) VXdoc(pool, target, false/*owns not* /);                  if(!stylesheet_ptr.get())
                 // write out result                          throw Exception("xml",
                 r.write_no_lang(result);                                  0,
                 //                                  "stylesheet failed to compile");
                 if(const StylesheetRoot *stylesheetRoot=stylesheet.getStylesheetRoot()) {  
                         /*                  // transform!
                         <xsl:output                  result=&_transform(r, 0,
                         !method = "xml" | "html" | "text"                          vdoc, stylesheet_ptr.get(),
                                 X| qname-but-not-ncname                           transform_params);
                         !version = nmtoken           } else { // stylesheet (file name)
                         !encoding = string                   // extablish stylesheet connection
                         !omit-xml-declaration = "yes" | "no"                  const String& stylesheet_filespec=
                         !standalone = "yes" | "no"                          r.absolute(params.as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)"));
                         !doctype-public = string                   Stylesheet_connection_ptr connection=stylesheet_manager.get_connection(stylesheet_filespec);
                         !doctype-system = string   
                         cdata-section-elements = qnames                   // load and compile file to stylesheet [or get cached if any]
                         !indent = "yes" | "no"                  // transform!
                         !media-type = string />                   result=&_transform(r, &stylesheet_filespec,
                         * /                          vdoc, connection->stylesheet(false/*nocache*/),
                           transform_params);
                         VXdoc::Output_options& oo=result.output_options;  
                         oo.encoding=stylesheetRoot->m_encoding;  
                         oo.mediaType=stylesheetRoot->m_mediatype;  
                         oo.doctypeSystem=stylesheetRoot->m_doctypeSystem;  
                         oo.doctypePublic=stylesheetRoot->m_doctypePublic;  
                         oo.doIndent=stylesheetRoot->m_indentResult;  
                         oo.version=stylesheetRoot->m_version;  
                         oo.standalone=stylesheetRoot->m_standalone;  
                         oo.xmlDecl=!stylesheetRoot->m_omitxmlDecl;  
   
                         switch(stylesheetRoot->getOutputMethod()) {  
                         case FormatterListener::OUTPUT_METHOD_HTML:   
                                 oo.method=XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML; break;  
                         case FormatterListener::OUTPUT_METHOD_TEXT:   
                                 oo.method=XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT; break;  
                         case FormatterListener::OUTPUT_METHOD_NONE:   
                         case FormatterListener::OUTPUT_METHOD_XML:   
                                 oo.method=XDOC_OUTPUT_METHOD_OPTION_VALUE_XML; break;  
                         default:  
                                 throw Exception(0, 0,  
                                         &method_name,  
                                         "unsupported output method specified");   
                                 break; // never  
                         }  
                 }  
         }  
         catch (XSLException& e) {  
                 connection.close();  
                 Exception::provide_source(pool, &stylesheet_file_name, e);  
         }  
         catch (SAXParseException& e)    {  
                 connection.close();  
                 Exception::provide_source(pool, &stylesheet_file_name, e);  
         }  
         catch (SAXException& e) {  
                 connection.close();  
                 Exception::provide_source(pool, &stylesheet_file_name, e);  
         }  
         catch (XMLException& e) {  
                 connection.close();  
                 Exception::provide_source(pool, &stylesheet_file_name, e);  
         }  
         catch(const XalanDOMException& e)       {  
                 connection.close();  
                 Exception::provide_source(pool, &stylesheet_file_name, e);  
         }          }
   
         // close          // write out result
         connection.close();          r.write_no_lang(*result);
 }  }
 */  
   
 // constructor  // constructor
   
 MXdoc::MXdoc(Pool& apool) : MXnode(apool) {  /// @test how to create empty type html?
         set_name(*NEW String(pool(), XDOC_CLASS_NAME));  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, xnode_class) {
   
         /// @test how to create empty type html?  
   
         /// DOM1          /// DOM1
   
         // Element createElement(in DOMString tagName) raises(DOMException);          // Element createElement(in DOMString tagName) raises(DOMException);
Line 736  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 880  MXdoc::MXdoc(Pool& apool) : MXnode(apool
         add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1);          add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1);
         // EntityReference createEntityReference(in DOMString name) raises(DOMException);          // EntityReference createEntityReference(in DOMString name) raises(DOMException);
         add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1);          add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1);
         // NodeList getElementsByTagName(in DOMString tagname);          // NodeList getElementsByTagName(in DOMString name);
         add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);          add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);
         // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes  
         add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);  
   
         /// DOM2(?)          /// DOM2
   
         // ^xdoc.getElementById[elementId]          // ^xdoc.getElementById[elementId]
         add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);          add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);
   
       // Node (in Node importedNode, in boolean deep) raises(DOMException)
           add_native_method("importNode", Method::CT_DYNAMIC, _importNode, 2, 2);
   
           // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
           add_native_method("createAttributeNS", Method::CT_DYNAMIC, _createAttributeNS, 2, 2);
   
           // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
           add_native_method("createElementNS", Method::CT_DYNAMIC, _createElementNS, 2, 2);
   
           // NodeList getElementsByTagNameNS(in DOMString namespaceURI, in DOMString localName);
           add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);
   
         /// parser          /// parser
                   
         // ^xdoc::create{qualifiedName}          // ^xdoc::create{qualifiedName}
         add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1);           // ^xdoc::create[<some>xml</some>]
         // ^xdoc::set[<some>xml</some>]          // ^xdoc::create[URI][<some>xml</some>]
         add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1);          add_native_method("create", Method::CT_DYNAMIC, _create, 1, 2); 
           // for backward compatibility with <=v 1.82 2002/01/31 11:51:46 paf
           add_native_method("set", Method::CT_DYNAMIC, _create, 1, 1);
   
         // ^xdoc::load[some.xml]          // ^xdoc::load[some.xml]
         add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);          add_native_method("load", Method::CT_DYNAMIC, _load, 1, 2);
   
         // ^xdoc.save[some.xml]          // ^xdoc.save[some.xml]
         // ^xdoc.save[some.xml;options hash]          // ^xdoc.save[some.xml;options hash]
Line 766  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 922  MXdoc::MXdoc(Pool& apool) : MXnode(apool
   
         // ^xdoc.file[] file with "<doc/>"          // ^xdoc.file[] file with "<doc/>"
         // ^xdoc.file[options hash] file with "<doc/>"          // ^xdoc.file[options hash] file with "<doc/>"
 //      add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);          add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);
   
         // ^xdoc.transform[stylesheet file_name]          // ^xdoc.transform[stylesheet file_name/xdoc]
         // ^xdoc.transform[stylesheet file_name;params hash]          // ^xdoc.transform[stylesheet file_name/xdoc;params hash]
 //      add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2);          add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2);
   
 }  }
   
 void MXdoc::configure_admin(Request& r) {  # else
 }  
   
 // global variable  #include "classes.h"
   
 Methoded *Xdoc_class;  // global variable
   
 // creator  DECLARE_CLASS_VAR(xdoc, 0, 0); // fictive
   
 #endif  #endif
   
 Methoded *MXdoc_create(Pool& pool) {  
         return   
 #ifdef XML  
                 Xdoc_class=new(pool) MXdoc(pool)  
 #else  
                 0  
 #endif  
         ;  
 }  

Removed from v.1.57  
changed lines
  Added in v.1.118


E-mail: