Diff for /parser3/src/classes/xdoc.C between versions 1.62 and 1.108.2.19.2.11

version 1.62, 2002/01/15 15:02:13 version 1.108.2.19.2.11, 2003/03/24 17:52:18
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"
 #ifdef XML  #ifdef XML
   
   static const char* IDENT_XDOC_C="$Date$";
   
   #include "pa_vmethod_frame.h"
   
 #include "pa_stylesheet_connection.h"  #include "pa_stylesheet_connection.h"
 #include "classes.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 "xnode.h"  #include "xnode.h"
   
   #include "gdome.h"
   #include "libxml/tree.h"
 extern "C" {  extern "C" {
 #include "gdomecore/gdome-xml-node.h"  #include "gdomecore/gdome-xml-node.h"
 #include "gdomecore/gdome-xml-document.h"  #include "gdomecore/gdome-xml-document.h"
 };  };
   #include "libxslt/xsltInternals.h"
 #include "libxslt/transform.h"  #include "libxslt/transform.h"
 #include "libxslt/xsltutils.h"  #include "libxslt/xsltutils.h"
   #include "libxslt/variables.h"
   
 // defines  // defines
   
Line 32  extern "C" { Line 38  extern "C" {
 #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() { return new VXdoc(0, 0); }
   
 public:  public:
         MXdoc(Pool& pool);          MXdoc();
   
 public: // Methoded  public: // Methoded
         bool used_directly() { return true; }  
         void configure_admin(Request& r);          void configure_admin(Request& r);
 };  };
   
   // global variable
   
   DECLARE_CLASS_VAR(xdoc, new MXdoc, 0);
   
 // helper classes  // helper classes
   
 class xmlOutputBuffer_auto_ptr {  class xmlOutputBuffer_auto_ptr {
 public:  public:
         explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_P = 0)           explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) 
                 : _Owns(_P != 0), _Ptr(_P) {}                  : _Owns(_APtr != 0), _Ptr(_APtr) {}
         xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y)           xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) 
                 : _Owns(_Y._Owns), _Ptr(_Y.release()) {}                  : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
         xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y)           xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) 
Line 83  private: Line 91  private:
         xmlOutputBuffer *_Ptr;          xmlOutputBuffer *_Ptr;
 };  };
   
   class xsltTransformContext_auto_ptr {
   public:
           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;
   };
   
   class xsltStylesheet_auto_ptr {
   public:
           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 Exception(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).get(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, 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).get(),
                 &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).get(),
                 &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).get(),
                 &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).get(), 
                 pool.transcode(data).get(),                  r.transcode(data).get(),
                 &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).get(),
                 &exc);                  &exc);
         writeNode(r, method_name, node, 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).get(),
                 &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).get(), 
                         &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(
                         {                                  pa_format_integer(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 Exception(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).get(),
                         pool.transcode(localName).get(),                          r.transcode(localName).get(),
                         &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);                          const String& skey(new String);
                         {                          *skey << pool.format_integer(i);
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);  
                                 snprintf(buf, MAX_NUMBER, "%d", i);  
                                 skey << buf;  
                         }  
   
                         result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc)));                          result->hash().put(
                                   skey, 
                                   Value*(new VXnode(&&r.charsets, 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).get(),
                 &exc)) {                  &exc)) {
                 // write out result                  // write out result
                 VXnode& result=*new(pool) VXnode(pool, node);                  r.write_no_lang(Value*(new VXnode(&&r.charsets, node)));
                 r.write_no_lang(result);          } else if(exc || xmlHaveGenericErrors())
         } else if(exc)                  throw Exception(
                 throw Exception(0, 0,                           method_name, 
                         &method_name,   
                         exc);                          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(method_name, 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 Exception(
                 0/*systemId* /,                           method_name, 
                 &exc);  
         if(!documentType || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);                          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 ?  
   
         // replace any previous parsed source          // write out result
         vdoc.set_document(document);          r.write_no_lang(Value*(new VXnode(&&r.charsets, outputNode)));
 }  }
   /*
   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;
           if(param->get_junction()) { // {<?xml?>...}
                   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)
                           ));
                   if(!document || xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw Exception(
                                   method_name, 
                                   exc);
                   }
           } else { // [name]
                   const String& qualifiedName=param->as_string();
   
         Value& vxml=params->as_junction(0, "xml must be code");                  GdomeException exc;
         Temp_lang temp_lang(r, String::UL_XML);                  /*
         const String& xml=r.process(vxml).as_string();                  GdomeDocumentType *documentType=gdome_di_createDocumentType (
                           docimpl, 
                           r.transcode(qualifiedName), 
                           0/*publicId* /, 
                           0/*systemId* /, 
                           &exc);
                   if(!documentType || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
                   */
                   document=gdome_di_createDocument (domimpl, 
                           0/*namespaceURI*/, 
                           r.transcode(qualifiedName).get(), 
                           0/*doctype*/, 
                           &exc);
                   if(!document || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
   
                   xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
                   const char* source_charset_name=source_charset.name()->cstr();
                   doc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
   
         GdomeException exc;                  /// +xalan createXMLDecl ?
         GdomeDocument *document=gdome_di_createDocFromMemory(domimpl,          }
                 xml.cstr(String::UL_UNSPECIFIED, r.connection),          
                 GDOME_LOAD_PARSING          // URI 
                 /* GDOME_LOAD_VALIDATING  pending until kill warning of no-dtd*/           const char* URI_cstr;
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,          const char* URI_cstr_ptr;
                 &exc);          if(params->count()>1) { // absolute(param)
         if(!document || exc)                  const String& URI=params->as_string(0, "URI must be string");
                 throw Exception(0, 0,                   URI_cstr=URI_cstr_ptr=r.absolute(URI)->cstr();
                         &method_name,           } else // default = disk path to requested document
                         exc);                  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));
   
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          vdoc.set_document(&&r.charsets, document);
 }  }
   
 static void _load(Request& r, const String& method_name, MethodParams *params) {  static void _load(Request& r, MethodParams* params) {
         Pool& pool=r.pool();          Charset& source_charset=r.charsets.source();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // 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;          void *data;  size_t size;
         GdomeDocument *document=gdome_di_createDocFromURI(domimpl,          File_read_result file=file_read(source_charset, uri, false/*not text*/,
                 uri.cstr(),                  params->count()>1?params->as_no_junction(1, "additional params must be hash")
                 GDOME_LOAD_PARSING                          ->get_hash()
                 /* GDOME_LOAD_VALIDATING  pending until kill warning of no-dtd*/                           :0);
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,  
                 &exc);          GdomeDocument *document=(GdomeDocument *)
         if(!document || exc)                  gdome_xml_n_mkref((xmlNode *)xmlParseMemory(file.data, file.length));
                 throw Exception(0, 0,           if(!document || xmlHaveGenericErrors()) {
                         &method_name,                   GdomeException exc=0;
                         exc);                  throw Exception(uri, exc);
           }
           const char* URI_cstr=uri->cstr();
           xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
           if(URI_cstr)
                   doc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          vdoc.set_document(&&r.charsets, document);
 }  }
   
 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,
                                                                                         const String *& output_option) {                                                                                          String* & output_option) {
         if(Value *value=static_cast<Value *>(param_options->get(*new(pool) String(pool,           if(Value* value=param_options.get(String* (new String(option_name))))
                 option_name))))                  output_option=value->as_string();
                 output_option=&value->as_string();  
 }  }
 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* (new String(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 void prepare_output_options(  /// @test valid_options check
                                                                    Pool& pool, const String& method_name, MethodParams *params, int index,  static void prepare_output_options(Request& r,
                                                                      const String& method_name, MethodParams* params, int index,
                                                                    VXdoc::Output_options& oo) {                                                                     VXdoc::Output_options& oo) {
 /*  /*
 <xsl:output  <xsl:output
Line 439  static void prepare_output_options( Line 518  static void prepare_output_options(
 */  */
   
         // 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* (new String(XDOC_OUTPUT_METHOD_OPTION_NAME))))
                                         String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME))))                                          oo.method=vmethod->as_string();
                                         oo.method=&vmethod->as_string();  
   
                                 // $.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]
                                 param_option_over_output_option(pool, options, "omit-xml-declaration", oo.omitXmlDeclaration);                                  param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration);
                                 // $.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.indent);                                  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)          if(!oo.encoding)
                 oo.encoding=&pool.get_source_charset().name();                  oo.encoding=r.charsets.source().name();
         // default method=xml          // default method=xml
         if(!oo.method)          if(!oo.method)
                 oo.method=new(pool) String(pool, XDOC_OUTPUT_METHOD_OPTION_VALUE_XML);                  oo.method=String* (new String(XDOC_OUTPUT_METHOD_OPTION_VALUE_XML));
         // default mediaType = depending on method          // default mediaType = depending on method
         if(!oo.mediaType) {          if(!oo.mediaType) {
                 if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML)                  if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML)
                         oo.mediaType=new(pool) String(pool, "text/xml");                          oo.mediaType=String* (new String("text/xml"));
                 else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)                  else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)
                         oo.mediaType=new(pool) String(pool, "text/html");                          oo.mediaType=String* (new String("text/html"));
                 else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others                  else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others
                         oo.mediaType=new(pool) String(pool, "text/plain");                          oo.mediaType=String* (new String("text/plain"));
         }          }
 }  }
   
   struct Xdoc2buf_result {
 static void _save(Request& r, const String& method_name, MethodParams *params) {          char* ptr;
         Pool& pool=r.pool();          size_t size;
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  };
   static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc, 
         const String& file_name=params->as_string(0, "file name must be string");                                           const String& method_name, MethodParams* params, int index,
         const String& filespec=r.absolute(file_name);                                           VXdoc::Output_options& oo,
                                                    const String& file_spec) {
         GdomeException exc;          Xdoc2buf_result result;
         if(!gdome_di_saveDocToFile(domimpl,          prepare_output_options(r, method_name, params, index,
                 vdoc.get_document(&method_name),  
                 filespec.cstr(String::UL_FILE_SPEC),  
                 GDOME_SAVE_LIBXML_INDENT /*GDOME_SAVE_STANDARD */,  
                 &exc))  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
 }  
   
 static void _string(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         VXdoc::Output_options oo(vdoc.output_options);  
         prepare_output_options(pool, method_name, params, 0,  
                 oo);                  oo);
   
         xmlCharEncodingHandler *encoder=0;          const char* encoding_cstr=oo.encoding->cstr();
         if(oo.encoding) {          xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);
                 const char *encoding_cstr=oo.encoding->cstr();          if(!encoder)
                 encoder=xmlFindCharEncodingHandler(encoding_cstr);                  throw Exception("parser.runtime",
                 if(!encoder)                          method_name,
                         throw Exception(0, 0,                          "encoding '%s' not supported", encoding_cstr.get());
                                 &method_name,  
                                 "encoding '%s' not supported", encoding_cstr);  
         }  
         // UTF-8 encoder contains empty input/output converters,           // UTF-8 encoder contains empty input/output converters, 
         // which is wrong for xmlOutputBufferCreateIO          // which is wrong for xmlOutputBufferCreateIO
         // while zero encoder goes perfectly           // while zero encoder goes perfectly 
Line 529  static void _string(Request& r, const St Line 589  static void _string(Request& r, const St
   
         xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));          xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));
   
         xsltStylesheet *stylesheet=xsltNewStylesheet();          xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());
         if(!stylesheet)          if(!stylesheet.get())
                 throw Exception(0, 0,                  throw Exception(0,
                         &method_name,                          method_name,
                         "xsltNewStylesheet failed");                          "xsltNewStylesheet failed");
   
         #define OOS2STYLE(name) \          #define OOS2STYLE(name) \
                 stylesheet->name=oo.name?BAD_CAST g_strdup(pool.transcode(*oo.name)->str):0                  stylesheet->name=oo.name?BAD_CAST g_strdup(r.transcode(oo.name)->str):0
         #define OOE2STYLE(name) \          #define OOE2STYLE(name) \
                 stylesheet->name=oo.name                  stylesheet->name=oo.name
   
Line 550  static void _string(Request& r, const St Line 610  static void _string(Request& r, const St
         OOE2STYLE(standalone);          OOE2STYLE(standalone);
         OOE2STYLE(omitXmlDeclaration);          OOE2STYLE(omitXmlDeclaration);
   
         xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n;          xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());
         xsltSaveResultTo(outputBuffer.get(), document, stylesheet);          if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {
         xsltFreeStylesheet(stylesheet);                  GdomeException exc=0;
                   throw Exception(
                           method_name, 
                           exc);
           }
   
         // write out result          // write out result
         char *gnome_buf; size_t buf_size;          char *gnome_buf;  size_t gnome_size;
     if(outputBuffer->conv) {          if(outputBuffer->conv) {
                 buf_size=outputBuffer->conv->use;                  gnome_size=outputBuffer->conv->use;
                 gnome_buf=(char *)outputBuffer->conv->content;                  gnome_buf=(char *)outputBuffer->conv->content;
     } else {          } else {
                 buf_size=outputBuffer->buffer->use;                  gnome_size=outputBuffer->buffer->use;
                 gnome_buf=(char *)outputBuffer->buffer->content;                  gnome_buf=(char *)outputBuffer->buffer->content;
     }          }
           if(file_spec)
                   file_write(file_spec,
                                           gnome_buf, gnome_size, 
                                           true/*as_text*/);
           else if(result.size=gnome_size) {
                   result.ptr=pool.copy(gnome_buf, gnome_size);
           } else
                   result.ptr=0;
   
         char *request_buf=(char *)pool.malloc(buf_size);          return result;
         memcpy(request_buf, gnome_buf, buf_size);  }
         r.write_no_lang(*new(pool) String(pool, request_buf, buf_size));  
 }  
   
 /// @test remove text/xml const. <output method+mediatype / ^file[method+mediatype  
 static void _file(Request& r, const String& method_name, MethodParams *params) {  
         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  static void _file(Request& r, MethodParams* params) {
         size_t buf_size=strlen(mem);          VXdoc& vdoc=GET_SELF(r, VXdoc);
         char *buf=(char *)pool.malloc(buf_size);          VXdoc::Output_options oo(vdoc.output_options);
         memcpy(buf, mem, buf_size);          Xdoc2buf_result buf=xdoc2buf(r, vdoc, method_name, params, 0, 
         g_free(mem);                  oo,
                   0/*not to file, to memory*/);
           // write out result
           r.write_no_lang(String(buf.ptr, buf.length));
   
         // write out result          // write out result
         VFile& vfile=*new(pool) VFile(pool);          VFile* vfile(new VFile);
         const String& scontent_type=*new(pool) String(pool, "text/xml");          Value* vcontent_type;
         Value *vcontent_type=new(pool) VString(scontent_type);          VHash* vhcontent_type(new VHash);
         VHash *vhcontent_type=new(pool) VHash(pool);          vhcontent_type->hash().put(
         vhcontent_type->hash(&method_name).put(*value_name, new(pool) VString(scontent_type));                  value_name, 
         const String& scharset=pool.get_source_charset().name();                  Value*(new VString(oo.mediaType)));
         vhcontent_type->hash(&method_name).put(*new(pool) String(pool, "charset"), new(pool) VString(scharset));          vhcontent_type->hash().put(
                   String* (new String("charset")), 
                   Value*(new VString(oo.encoding)));
         vcontent_type=vhcontent_type;          vcontent_type=vhcontent_type;
           
         vfile.set(false/*tainted*/, buf, buf_size, 0/*file_name*/, vcontent_type);          vfile->set(false/*tainted*/, buf.ptr?buf.ptr:""/*to distinguish from stat-ed file*/, buf.size, 
                   0/*file_name*/, vcontent_type);
         r.write_no_lang(vfile);          r.write_no_lang(vfile);
 }  }
   
 static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning,   static void _save(Request& r, MethodParams* params) {
                                                    void *info) {          VXdoc& vdoc=GET_SELF(r, VXdoc);
         Value *meaning=static_cast<Value *>(ameaning);  
         Pool& pool=meaning->pool();  
         const char **transform_params=(const char **)info;  
         *transform_params++=pool.transcode(aattribute)->str;  
         *transform_params++=pool.transcode(meaning->as_string())->str;  
 }  
 static void _transform(Request& r, const String& method_name, MethodParams *params) {  
         //_asm int 3;  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // params          const String& file_spec=r.absolute(params->as_string(0, "file name must be string"));
         const char **transform_params=0;          
         if(params->size()>1) {          VXdoc::Output_options oo(vdoc.output_options);
                 Value& vparams=params->as_no_junction(1, "transform parameters must be hash");          xdoc2buf(r, vdoc, method_name, params, 1, 
                 if(vparams.is_defined())                  oo,
                         if(Hash *params=vparams.get_hash(&method_name)) {                  file_spec);
                                 transform_params=  }
                                         (const char **)pool.malloc(sizeof(const char *)*params->size()*2+1);  
                                 params->for_each(add_xslt_param, transform_params);  
                                 transform_params[params->size()*2]=0;                             
                         } else  
                                 throw Exception(0, 0,  
                                         &method_name,  
                                         "transform parameters parameter must be hash");  
         }  
   
         // stylesheet  static void _string(Request& r, MethodParams* params) {
         const String& stylesheet_filespec=r.absolute(params->as_string(0, "file name must be string"));          VXdoc& vdoc=GET_SELF(r, VXdoc);
         Stylesheet_connection& connection=stylesheet_manager->get_connection(stylesheet_filespec);          VXdoc::Output_options oo(vdoc.output_options);
           Xdoc2buf_result buf=xdoc2buf(r, vdoc, method_name, params, 0, 
         // transform                  oo,
         xsltStylesheet *stylesheet=connection.stylesheet(false/*nocache*/);                  0/*not to file, to memory*/);
         xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n;          // write out result
         xsltTransformContext *transformContext=xsltNewTransformContext(stylesheet, document);          r.write_no_lang(String(buf.ptr, buf.length));
   }
   
   #ifndef DOXYGEN
   struct Add_xslt_param_info {
           Request* r;
           Array<GdomeDOMString_auto_ptr>* strings;
           const char** current_transform_param;
   };
   #endif
   static void add_xslt_param(
                                                      HashStringValue::key_type attribute, 
                                                      HashStringValue::value_type meaning, 
                                                      Add_xslt_param_info* info) {
           GdomeDOMString_auto_ptr s;
           *info->current_transform_param++=(s=info->r->transcode(attribute))->str; *info->strings+=s;
           *info->current_transform_param++=(s=info->r->transcode(meaning->as_string(&info->r->pool())))->str; *info->strings+=s;
   }
   static VXdocPtr _transform(Request& r, const String& doc_source, const String& stylesheet_source, 
                                                      VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params) {
           xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(doc_source));
           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(          xmlDoc *transformed=xsltApplyStylesheetUser(
                 stylesheet,                  stylesheet,
                 document,                  document,
                 transform_params,                  0/*already quoted-inserted  transform_params*/,
                 0/*const char *output*/,                  0/*const char* output*/,
                 0/*FILE *profile*/,                  0/*FILE *profile*/,
                 transformContext);                  transformContext.get());
         if(!transformed) {          if(!transformed || xmlHaveGenericErrors()) {
                 xsltFreeTransformContext(transformContext);                  GdomeException exc=0;
                 // close                  throw Exception(
                 connection.close();                          stylesheet_source, 
                 throw Exception(0, 0,                          exc);
                         &method_name,   
                         "transform failed. TODO: show errors");  
         }          }
   
         //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing          //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing
Line 663  static void _transform(Request& r, const Line 730  static void _transform(Request& r, const
         // constructing result          // constructing result
         GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);          GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);
         if(!gdomeDocument)          if(!gdomeDocument)
                 throw Exception(0, 0,                  throw Exception(0,
                         &method_name,                          doc_source,
                         "gdome_xml_doc_mkref failed");                          "gdome_xml_doc_mkref failed");
         VXdoc& result=*new(pool) VXdoc(pool, gdomeDocument);          VXdocPtr result(new VXdoc(&&r.charsets, gdomeDocument));
         /* grabbing options          /* grabbing options
   
                 <xsl:output                  <xsl:output
Line 682  static void _transform(Request& r, const Line 749  static void _transform(Request& r, const
                 !indent = "yes" | "no"                  !indent = "yes" | "no"
                 !media-type = string />                   !media-type = string /> 
         */          */
         memset(&result.output_options, 0, sizeof(result.output_options));          VXdoc::Output_options& oo=result->output_options;
         VXdoc::Output_options& oo=result.output_options;  
   
         oo.method=stylesheet->method?&pool.transcode(stylesheet->method):0;          oo.method=stylesheet->method?r.transcode(stylesheet->method, stylesheet_source):0;
         oo.encoding=stylesheet->encoding?&pool.transcode(stylesheet->encoding):0;          oo.encoding=stylesheet->encoding?r.transcode(stylesheet->encoding, stylesheet_source):0;
         oo.mediaType=stylesheet->mediaType?&pool.transcode(stylesheet->mediaType):0;          oo.mediaType=stylesheet->mediaType?r.transcode(stylesheet->mediaType, stylesheet_source):0;
         oo.doctypeSystem=stylesheet->doctypeSystem?&pool.transcode(stylesheet->doctypeSystem):0;          oo.doctypeSystem=stylesheet->doctypeSystem?r.transcode(stylesheet->doctypeSystem, stylesheet_source):0;
         oo.doctypePublic=stylesheet->doctypePublic?&pool.transcode(stylesheet->doctypePublic):0;          oo.doctypePublic=stylesheet->doctypePublic?r.transcode(stylesheet->doctypePublic, stylesheet_source):0;
         oo.indent=stylesheet->indent!=0;          oo.indent=stylesheet->indent!=0;
         oo.version=stylesheet->version?&pool.transcode(stylesheet->version):0;          oo.version=stylesheet->version?r.transcode(stylesheet->version, stylesheet_source):0;
         oo.standalone=stylesheet->standalone!=0;          oo.standalone=stylesheet->standalone!=0;
         oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;          oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;
   
         xsltFreeTransformContext(transformContext);          // return
         // close          return result;
         connection.close();  }
   static void _transform(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // params
           Array<GdomeDOMString_auto_ptr> transform_strings;
           smart_ptr<const char*> transform_params;
           if(params->count()>1) {
                   Value* vparams=params->as_no_junction(1, "transform parameters must be hash");
                   if(!vparams->is_string())
                           if(HashStringValue* params=vparams->get_hash()) {
                                   transform_params=smart_ptr<const char*>(new const char*[params->count()*2+1]);
                                   Add_xslt_param_info info={
                                           &r, 
                                           &transform_strings,
                                           transform_params
                                   };
                                   params->for_each(add_xslt_param, &info);
                                   transform_params[params->count()*2]=0;                          
                           } else
                                   throw Exception("parser.runtime",
                                           method_name,
                                           "transform parameters parameter must be hash");
           }
   
           VXdocPtr result;
           Value* vmaybe_xdoc=(*params)[0];
           if(Value *vxdoc=vmaybe_xdoc->as(VXDOC_TYPE, false)) { // stylesheet (xdoc)
                   xmlDoc *document=gdome_xml_doc_get_xmlDoc(
                           static_cast<VXdoc *>(vxdoc)->get_document());
                   // compile xdoc stylesheet
                   xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document)); 
                   // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor
                   // we don't need that
                   stylesheet_ptr->doc=0;
                   if(xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw Exception(method_name, exc);
                   }
                   if(!stylesheet_ptr.get())
                           throw Exception("xml",
                                   method_name,
                                   "stylesheet failed to compile");
   
                   // transform!
                   result=_transform(r, method_name, method_name,
                           vdoc, stylesheet_ptr.get(),
                           transform_params);
           } else { // stylesheet (file name)
                   // extablish stylesheet connection
                   const String& stylesheet_filespec=
                           r.absolute(params->as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)"));
                   Stylesheet_connection* connection=stylesheet_manager.get_connection(stylesheet_filespec);
   
                   // load and compile file to stylesheet [or get cached if any]
                   // transform!
                   result=_transform(r, method_name, stylesheet_filespec,
                           vdoc, connection->stylesheet(false/*nocache*/),
                           transform_params);
           }
   
         // write out result          // write out result
         r.write_no_lang(result);          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 729  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 850  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);
   
           // 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 761  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 888  MXdoc::MXdoc(Pool& apool) : MXnode(apool
         // ^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);
   
 }  }
Line 770  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 897  MXdoc::MXdoc(Pool& apool) : MXnode(apool
 void MXdoc::configure_admin(Request& r) {  void MXdoc::configure_admin(Request& r) {
 }  }
   
 // global variable  # else
   
 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.62  
changed lines
  Added in v.1.108.2.19.2.11


E-mail: