Diff for /parser3/src/classes/xdoc.C between versions 1.133 and 1.201

version 1.133, 2004/02/17 14:22:53 version 1.201, 2021/10/19 16:16:35
Line 1 Line 1
 /** @file  /** @file
         Parser: @b xdoc parser class.          Parser: @b xdoc parser class.
   
         Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com)          Copyright (c) 2001-2020 Art. Lebedev Studio (http://www.artlebedev.com)
         Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)          Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
 */  */
   
Line 9 Line 9
   
 #ifdef XML  #ifdef XML
   
 static const char * const IDENT_XDOC_C="$Date$";  
   
 #include "gdome.h"  
 #include "libxml/tree.h"  #include "libxml/tree.h"
 #include "libxml/HTMLtree.h"  #include "libxml/HTMLtree.h"
 #include "libxslt/xsltInternals.h"  #include "libxslt/xsltInternals.h"
Line 29  static const char * const IDENT_XDOC_C=" Line 26  static const char * const IDENT_XDOC_C="
 #include "pa_vfile.h"  #include "pa_vfile.h"
 #include "pa_xml_exception.h"  #include "pa_xml_exception.h"
 #include "xnode.h"  #include "xnode.h"
   #include "pa_charsets.h"
   
   volatile const char * IDENT_XDOC_C="$Id$";
   
 // defines  // defines
   
 #define XDOC_CLASS_NAME "xdoc"  #define XDOC_CLASS_NAME "xdoc"
   
 #define XDOC_OUTPUT_METHOD_OPTION_NAME "method"  
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "xml"  
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html"  
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text"  
   
 // class  // class
   
 class MXdoc: public MXnode {  class MXdoc: public MXnode {
 public: // VStateless_class  public: // VStateless_class
         Value* create_new_value(Pool&) { return new VXdoc(0, 0); }          Value* create_new_value(Pool&) { return new VXdoc(); }
   
 public:  public:
         MXdoc();          MXdoc();
Line 52  public: Line 47  public:
   
 // global variable  // global variable
   
 DECLARE_CLASS_VAR(xdoc, new MXdoc, 0);  DECLARE_CLASS_VAR(xnode, new MXnode); // must be here as Xdoc is inherited from Xnode and should be inited before
   DECLARE_CLASS_VAR(xdoc, new MXdoc);
   
 // helper classes  // helper classes
   
Line 122  private: Line 118  private:
         xsltTransformContext *_Ptr;          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, GdomeNode *node,   static void writeNode(Request& r, VXdoc& xdoc, xmlNode* node) {
                                           GdomeException exc) {          if(!node)
         if(!node || exc)                  throw Exception(PARSER_RUNTIME,
                 throw XmlException(0, exc);                          0,
                           "error creating node"); // OOM, bad name, things like that
   
         // write out result          // write out result
         r.write_no_lang(*new VXnode(&r.charsets, node));          r.write(xdoc.wrap(*node));
   }
   
   struct IdsIteratorInfo {
           xmlChar *elementId;
           xmlNode *element;
   };
   
   /* switching to calling convetion of libxml */
   extern "C" void idsHashScanner (void *payload, void *data, const xmlChar *name) {
           IdsIteratorInfo *priv = (IdsIteratorInfo *)data;
   
           if (priv->element == NULL && xmlStrEqual (name, priv->elementId))
           {
                   xmlNode* parent=((xmlID *)payload)->attr->parent;
                   assert(parent);
                   priv->element=parent;
           }
   }
   
   static xmlNode* pa_getElementById(xmlDoc& xmldoc, xmlChar* elementId) {
           xmlHashTable *ids = (xmlHashTable *)xmldoc.ids;
           IdsIteratorInfo iter={elementId, NULL};
           xmlHashScan(ids, (xmlHashScanner)idsHashScanner, &iter);
           return iter.element;
 }  }
   
   /*
   static xmlNode *
   pa_importNode (xmlDoc& xmldoc, xmlNode& importedNode, bool deep) {
           xmlNode *result = NULL;
   
           switch (importedNode.type) {
           case XML_ATTRIBUTE_NODE:
                   result = (xmlNode *)xmlCopyProp(xmldoc, (xmlAttr *)importedNode);
                   result.parent=0; // no idea
                   break;
           case XML_DOCUMENT_FRAG_NODE:
           case XML_ELEMENT_NODE:
           case XML_ENTITY_REF_NODE:
           case XML_PI_NODE:
           case XML_TEXT_NODE:
           case XML_CDATA_SECTION_NODE:
           case XML_COMMENT_NODE:
                   result = xmlCopyNode (importedNode->n, deep);
                   xmlSetTreeDoc (result, priv->n);
                   break;
           default:
                   *exc = GDOME_NOT_SUPPORTED_ERR;
           }
   
           return result;
   }
   */
   
 // Element createElement(in DOMString tagName) raises(DOMException);  // Element createElement(in DOMString tagName) raises(DOMException);
 static void _createElement(Request& r, MethodParams& params) {  static void _createElement(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* tagName=as_xmlname(r, params, 0, "tagName must be string");
   
         const String& tagName=params.as_string(0, "tagName must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=xmlNewDocNode(&xmldoc, NULL, tagName, NULL);
         GdomeNode *node=          writeNode(r, vdoc, node);
                 (GdomeNode *)gdome_doc_createElement(vdoc.get_document(),   
                 r.transcode(tagName).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);  // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
 static void _createElementNS(Request& r, MethodParams& params) {  static void _createElementNS(Request& r, MethodParams& params) {
           xmlChar* namespaceURI=as_xmlnsuri(r, params, 0);
           xmlChar* qualifiedName=as_xmlqname(r, params, 1);
   
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
           xmlChar* prefix=0;
           xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix);
   
         // namespaceURI;localName          xmlNode *node;
         const String& namespaceURI=params.as_string(0, "namespaceURI must be string");          if(localName) {
         const String& qualifiedName=params.as_string(1, "qualifiedName must be string");                  xmlNs& ns=pa_xmlMapNs(xmldoc, namespaceURI, prefix);
                   node=xmlNewDocNode(&xmldoc, &ns, localName, NULL);
         GdomeException exc;          } else
         GdomeNode *node=                  node=xmlNewDocNode(&xmldoc, NULL, qualifiedName/*unqualified, actually*/, NULL);
                 (GdomeNode *)gdome_doc_createElementNS(vdoc.get_document(),           writeNode(r, vdoc, node);
                 r.transcode(namespaceURI).use(),  
                 r.transcode(qualifiedName).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // DocumentFragment createDocumentFragment()  // DocumentFragment createDocumentFragment()
 static void _createDocumentFragment(Request& r, MethodParams&) {  static void _createDocumentFragment(Request& r, MethodParams&) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=xmlNewDocFragment(&xmldoc);
         GdomeNode *node=          writeNode(r, vdoc, node);
                 (GdomeNode *)gdome_doc_createDocumentFragment(  
                 vdoc.get_document(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // Text createTextNode(in DOMString data);  // Text createTextNode(in DOMString data);
 static void _createTextNode(Request& r, MethodParams& params) {  static void _createTextNode(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* data=as_xmlchar(r, params, 0, XML_DATA_MUST_BE_STRING);
   
         const String& data=params.as_string(0, "data must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=xmlNewDocText(&xmldoc, data);
         GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode(          writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(data).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // Comment createComment(in DOMString data)  // Comment createComment(in DOMString data)
 static void _createComment(Request& r, MethodParams& params) {  static void _createComment(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* data=as_xmlchar(r, params, 0, XML_DATA_MUST_BE_STRING);
   
         const String& data=params.as_string(0, "data must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         GdomeException exc;          xmlNode *node=xmlNewComment(data);
         GdomeNode *node=(GdomeNode *)gdome_doc_createComment(          writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(data).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // CDATASection createCDATASection(in DOMString data) raises(DOMException);  // CDATASection createCDATASection(in DOMString data) raises(DOMException);
 static void _createCDATASection(Request& r, MethodParams& params) {  static void _createCDATASection(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* data=as_xmlchar(r, params, 0, XML_DATA_MUST_BE_STRING);
   
         const String& data=params.as_string(0, "data must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=xmlNewCDataBlock(&xmldoc, data, strlen((const char*)data));
         GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection(          writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(data).use(),  
                 &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, MethodParams& params) {  static void _createProcessingInstruction(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* target=as_xmlchar(r, params, 0, XML_DATA_MUST_BE_STRING);
           xmlChar* data=as_xmlchar(r, params, 1, XML_DATA_MUST_BE_STRING);
   
         const String& target=params.as_string(0, "data must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
         const String& data=params.as_string(1, "data must be string");          xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=xmlNewDocPI(&xmldoc, target, data);
         GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction(          writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(target).use(),   
                 r.transcode(data).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // Attr createAttribute(in DOMString name) raises(DOMException);  // Attr createAttribute(in DOMString name) raises(DOMException);
 static void _createAttribute(Request& r, MethodParams& params) {  static void _createAttribute(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* name=as_xmlname(r, params, 0);
   
         const String& name=params.as_string(0, "name must be string");          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          xmlNode *node=(xmlNode*)xmlNewDocProp(&xmldoc, name, 0);
         GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute(          writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(name).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  }
   
 // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);  // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
 static void _createAttributeNS(Request& r, MethodParams& params) {  static void _createAttributeNS(Request& r, MethodParams& params) {
           xmlChar* namespaceURI=as_xmlnsuri(r, params, 0);
           xmlChar* qualifiedName=as_xmlqname(r, params, 1);
   
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
           xmlChar* prefix=0;
           xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix);
   
         // namespaceURI;qualifiedName          xmlNode *node;
         const String& namespaceURI=params.as_string(0, "namespaceURI must be string");          if(localName) {
         const String& qualifiedName=params.as_string(1, "name must be string");                  xmlNs& ns=pa_xmlMapNs(xmldoc, namespaceURI, prefix);
                   node=(xmlNode*)xmlNewDocProp(&xmldoc, localName, NULL);
         GdomeException exc;                  xmlSetNs(node, &ns);
         GdomeNode *node=(GdomeNode *)gdome_doc_createAttributeNS(          } else
                 vdoc.get_document(),                  node=(xmlNode*)xmlNewDocProp(&xmldoc, qualifiedName/*unqualified, actually*/, NULL);
                 r.transcode(namespaceURI).use(),          writeNode(r, vdoc, node);
                 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, MethodParams& params) {  static void _createEntityReference(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* name=as_xmlname(r, params, 0);
   
         const String& name=params.as_string(0, "name must be string");  
   
         GdomeException exc;  
         GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(  
                 vdoc.get_document(),  
                 r.transcode(name).use(),  
                 &exc);  
         writeNode(r, node, exc);  
 }  
   
 // NodeList getElementsByTagName(in DOMString name);  
 static void _getElementsByTagName(Request& r, MethodParams& params) {  
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         const String& name=params.as_string(0, "name must be string");          xmlNode *node=xmlNewReference(&xmldoc, name);
           writeNode(r, vdoc, node);
         VHash& result=*new VHash;  
         GdomeException exc;  
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagName(  
                         vdoc.get_document(),   
                         r.transcode(name).use(),   
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++)  
                         result.hash().put(  
                                 String::Body::Format(i),   
                                 new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));  
         } else if(exc)  
                 throw XmlException(0, exc);  
   
         // write out result  
         r.write_no_lang(result);  
 }  }
   
 static void _getElementsByTagNameNS(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& localName=params.as_string(1, "localName must be string");  
   
         GdomeException exc;  
         VHash& result=*new VHash;  
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagNameNS(  
                         vdoc.get_document(),   
                         r.transcode(namespaceURI).use(),  
                         r.transcode(localName).use(),  
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++)  
                         result.hash().put(  
                                 String::Body::Format(i),   
                                 new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));  
         }  
   
         // write out result  
         r.write_no_lang(result);  
 }  
   
 static void _getElementById(Request& r, MethodParams& params) {  static void _getElementById(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* elementId=as_xmlname(r, params, 0, "elementID must be string");
   
         // elementId          VXdoc& vdoc=GET_SELF(r, VXdoc);
         const String& elementId=params.as_string(0, "elementID must be string");          xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeException exc;          if(xmlNode *node=pa_getElementById(xmldoc, elementId))
         if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(                  writeNode(r, vdoc, node);
                 vdoc.get_document(),  
                 r.transcode(elementId).use(),  
                 &exc)) {  
                 // write out result  
                 r.write_no_lang(*new VXnode(&r.charsets, node));  
         } else if(exc || xmlHaveGenericErrors())  
                 throw XmlException(&elementId, exc);  
 }  }
   
 static void _importNode(Request& r, MethodParams& params) {  static void _importNode(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlNode& importedNode=as_node(params, 0, "importedNode must be node");
           bool deep=params.as_bool(1, "deep must be bool", r);
   
         GdomeNode *importedNode=          VXdoc& vdoc=GET_SELF(r, VXdoc);
                 as_node(params, 0, "importedNode must be node");          xmlDoc& xmldoc=vdoc.get_xmldoc();
         bool deep=  
                 params.as_bool(1, "deep must be bool", r);  
   
         GdomeException exc;  
         GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(),   
                 importedNode,  
                 deep, &exc);  
         if(exc)  
                 throw XmlException(0, exc);  
   
         // write out result          xmlNode *node=xmlDocCopyNode(&importedNode, &xmldoc, deep?1: 0);
         r.write_no_lang(*new VXnode(&r.charsets, outputNode));          writeNode(r, vdoc, node);
 }  }
 /*  
 GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);  #define XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD | XML_PARSE_NOENT | XML_PARSE_HUGE)
 GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);  
 */  
   
 static void _create(Request& r, MethodParams& params) {  static void _create(Request& r, MethodParams& params) {
         Charset& source_charset=r.charsets.source();          Charset& source_charset=r.charsets.source();
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         Value& param=params[params.count()-1];          Value& param=params[params.count()-1];
         GdomeDocument *document;          xmlDoc* xmldoc;
         bool set_encoding=false;          bool set_encoding=false;
         if(param.get_junction()) { // {<?xml?>...}          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, 0, &r.charsets);                  const String& xml=r.process_to_string(param);
                 document=(GdomeDocument *)                  String::Body sbody=xml.cstr_to_string_body_untaint(String::L_XML, r.connection(false), &r.charsets);
                         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);  
                 }  
   
                 // must be last action in if, see after if}                  xmldoc=xmlReadMemory(sbody.cstr(), sbody.length(), NULL, NULL, XML_PARSE_OPTIONS);
         } else { // [name]  
                 const String& qualifiedName=param.as_string();  
   
                 GdomeException exc;                  if(!xmldoc || xmlHaveGenericErrors())
 #if 0                          throw XmlException(0, r);
                 GdomeDocumentType *documentType=gdome_di_createDocumentType (  
                         docimpl,   
                         r.transcode(qualifiedName),   
                         0/*publicId*/,   
                         0/*systemId*/,   
                         &exc);  
                 if(!documentType || exc || xmlHaveGenericErrors())  
                         throw Exception(  
                                 method_name,   
                                 exc);  
                 /// +xalan createXMLDecl ?  
 #endif  
                 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 last action in if, see after if}
           } else { // [localName]
                   if(const String* value = param.get_string()){
                           xmlChar* localName=r.transcode(*value);
                           if(xmlValidateNCName(localName, 0) != 0)
                                   throw XmlException(0, XML_INVALID_LOCAL_NAME, localName);
   
                           xmldoc=xmlNewDoc(0);
                           if(!xmldoc || xmlHaveGenericErrors())
                                   throw XmlException(0, r);
   
                           xmlNode* node=xmlNewChild((xmlNode*)xmldoc, NULL, localName, NULL);
                           if(!node || xmlHaveGenericErrors())
                                   throw XmlException(0, r);
   
                           set_encoding=true;
                           // must be last action in if, see after if}
                   } else {
                           VFile* vfile=param.as_vfile();
                           xmldoc=xmlReadMemory(vfile->value_ptr(), vfile->value_size(), NULL, NULL, XML_PARSE_OPTIONS);
                           if(!xmldoc || xmlHaveGenericErrors())
                                   throw XmlException(0, r);
                   }
         }          }
         // must be first action after if}          // must be first action after if}
         // replace any previous parsed source          // replace any previous parsed source
         {          vdoc.set_xmldoc(r.charsets, *xmldoc); 
                 vdoc.set_document(&r.charsets, document);   
                 GdomeException exc;  
                 gdome_doc_unref(document, &exc);  
         }  
                   
         // URI           // URI 
         const char* URI_cstr;          const char* URI_cstr;
         const char* URI_cstr_ptr;  
         if(params.count()>1) { // absolute(param)          if(params.count()>1) { // absolute(param)
                 const String& URI=params.as_string(0, "URI must be string");                  const String& URI=params.as_string(0, "URI must be string");
                 URI_cstr=URI_cstr_ptr=r.absolute(URI).cstr();                  URI_cstr=r.full_disk_path(URI).cstr();
         } else // default = disk path to requested document          } else // default = disk path to requested document
                 URI_cstr=r.request_info.path_translated;                  URI_cstr=r.request_info.path_translated;
         xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);  
         if(URI_cstr)          if(URI_cstr)
                 doc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));                  xmldoc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   
         if(set_encoding) {          if(set_encoding) {
                 const char* source_charset_name=source_charset.NAME().cstr();                  const char* source_charset_name=source_charset.NAME().cstr();
                 doc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));                  xmldoc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
         }          }
 }  }
   
Line 484  static void _load(Request& r, MethodPara Line 398  static void _load(Request& r, MethodPara
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // filespec          // filespec
         const String* uri=&params.as_string(0, "uri must be string");          const String* uri=&params.as_string(0, "URI must be string");
         const char* uri_cstr;          const char* uri_cstr;
         if(uri->pos("://")==STRING_NOT_FOUND) // disk path          if(uri->pos("://")==STRING_NOT_FOUND) // disk path
                 uri_cstr=r.absolute(*uri).cstr(String::L_FILE_SPEC);                  uri_cstr=r.full_disk_path(*uri).taint_cstr(String::L_FILE_SPEC);
         else // xxx://           else // xxx:// 
                 uri_cstr=uri->cstr(String::L_AS_IS); // leave as-is for xmlParseFile to handle                  uri_cstr=uri->taint_cstr(String::L_AS_IS); // leave as-is for xmlParseFile to handle
   
         /// todo!! add SAFE MODE!!          /// @todo!! add SAFE MODE!!
         GdomeDocument *document=(GdomeDocument *)          xmlDoc* xmldoc=xmlReadFile(uri_cstr, NULL, XML_PARSE_OPTIONS);
                 gdome_xml_n_mkref((xmlNode *)xmlParseFile(uri_cstr));          if(!xmldoc || xmlHaveGenericErrors())
         if(!document || xmlHaveGenericErrors()) {                  throw XmlException(uri, r);
                 GdomeException exc=0;          
                 throw XmlException(uri, exc);  
         }  
         // must be first action after if}          // must be first action after if}
         // replace any previous parsed source          // replace any previous parsed source
         {          vdoc.set_xmldoc(r.charsets, *xmldoc); 
                 vdoc.set_document(&r.charsets, document);   
                 GdomeException exc;  
                 gdome_doc_unref(document, &exc);  
         }  
 /* xmlParseFile does that itself. old peace for xmlParseMemory  
         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(  
                                             HashStringValue& param_options, const char* option_name,  
                                             const String*& output_option) {  
         if(Value* value=param_options.get(String::Body(option_name)))  
                 output_option=&value->as_string();  
 }  
 static void param_option_over_output_option(  
                                             HashStringValue& param_options, const char* option_name,  
                                             bool& output_option) {  
         if(Value* value=param_options.get(String::Body(option_name))) {  
                 const String& s=value->as_string();  
                 if(s=="yes")  
                         output_option=true;  
                 else if(s=="no")  
                         output_option=false;  
                 else  
                         throw Exception("parser.runtime",  
                                 &s,  
                                 "%s must be either 'yes' or 'no'", option_name);  
         }  
 }  
   
 /// @test valid_options check  
 static void prepare_output_options(Request& r,  
                                    MethodParams& params, size_t index,  
                                    VXdoc::Output_options& oo) {  
 /*  
 <xsl:output  
   !method = "xml" | "html" | "text" | qname-but-not-ncname   
   !version = nmtoken   
   !encoding = string   
   !omit-xml-declaration = "yes" | "no"  
   !standalone = "yes" | "no"  
   !doctype-public = string   
   !doctype-system = string   
   cdata-section-elements = qnames   
   !indent = "yes" | "no"  
   !media-type = string />   
 */  
   
         // configuring with options from parameter...  
         if(params.count()>index) {  
                 Value& voptions=params.as_no_junction(index, "options must be string");  
                 if(voptions.is_defined()) {  
                         if(HashStringValue *options=voptions.get_hash()) {  
                                 // $.method[xml|html|text]  
                                 if(Value* vmethod=options->get(String::Body(XDOC_OUTPUT_METHOD_OPTION_NAME)))  
                                         oo.method=&vmethod->as_string();  
   
                                 // $.version[1.0]  
                                 param_option_over_output_option(*options, "version", oo.version);  
                                 // $.encoding[windows-1251|...]  
                                 param_option_over_output_option(*options, "encoding", oo.encoding);  
                                 // $.omit-xml-declaration[yes|no]  
                                 param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration);  
                                 // $.standalone[yes|no]  
                                 param_option_over_output_option(*options, "standalone", oo.standalone);  
                                 // $.indent[yes|no]  
                                 param_option_over_output_option(*options, "indent", oo.indent);  
                                 // $.media-type[text/{html|xml|plain}]  
                                 param_option_over_output_option(*options, "media-type", oo.mediaType);                             
                         }  
                 }  
         }  
   
         // default encoding from pool  
         if(!oo.encoding)  
                 oo.encoding=new String(r.charsets.source().NAME(), String::L_TAINTED);  
         // default method=xml  
         if(!oo.method)  
                 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");  
         }  
 }  }
   
 /// patching piece from libxslt not to set meta encoding  String::C xdoc2buf(Request& r, VXdoc& vdoc, 
 static int                                          XDocOutputOptions& oo,
 pa_xsltSaveResultTo(xmlOutputBufferPtr buf, xmlDocPtr result,                                          const String* file_spec,
                xsltStylesheetPtr style) {                                          bool use_source_charset_to_render_and_client_charset_to_write_to_header=false) {
     const xmlChar *encoding;          Charset* render=0;
     int base;          Charset* header=0;
     const xmlChar *method;          if(use_source_charset_to_render_and_client_charset_to_write_to_header) {
     int indent;                  render=&r.charsets.source();
                   header=&r.charsets.client();
     if ((buf == NULL) || (result == NULL) || (style == NULL))          } else {
         return(-1);                  header=render=&pa_charsets.get(*oo.encoding);
     if ((result->children == NULL) ||  
         ((result->children->type == XML_DTD_NODE) &&  
          (result->children->next == NULL)))  
         return(0);  
   
     if ((style->methodURI != NULL) &&  
         ((style->method == NULL) ||  
          (!xmlStrEqual(style->method, (const xmlChar *) "xhtml")))) {  
         xsltGenericError(xsltGenericErrorContext,  
                 "xsltSaveResultTo : unknown ouput method\n");  
         return(-1);  
     }  
   
     base = buf->written;  
   
     XSLT_GET_IMPORT_PTR(method, style, method)  
     XSLT_GET_IMPORT_PTR(encoding, style, encoding)  
     XSLT_GET_IMPORT_INT(indent, style, indent);  
   
     if ((method == NULL) && (result->type == XML_HTML_DOCUMENT_NODE))  
         method = (const xmlChar *) "html";  
   
     if ((method != NULL) &&  
         (xmlStrEqual(method, (const xmlChar *) "html"))) {  
         if (indent == -1)  
             indent = 1;  
         htmlDocContentDumpFormatOutput(buf, result, (const char *) encoding,  
                                        indent);  
         xmlOutputBufferFlush(buf);  
     } else if ((method != NULL) &&  
         (xmlStrEqual(method, (const xmlChar *) "xhtml"))) {  
         htmlDocContentDumpOutput(buf, result, (const char *) encoding);  
         xmlOutputBufferFlush(buf);  
     } else if ((method != NULL) &&  
                (xmlStrEqual(method, (const xmlChar *) "text"))) {  
         xmlNodePtr cur;  
   
         cur = result->children;  
         while (cur != NULL) {  
             if (cur->type == XML_TEXT_NODE)  
                 xmlOutputBufferWriteString(buf, (const char *) cur->content);  
   
             /*  
              * Skip to next node  
              */  
             if (cur->children != NULL) {  
                 if ((cur->children->type != XML_ENTITY_DECL) &&  
                     (cur->children->type != XML_ENTITY_REF_NODE) &&  
                     (cur->children->type != XML_ENTITY_NODE)) {  
                     cur = cur->children;  
                     continue;  
                 }  
             }  
             if (cur->next != NULL) {  
                 cur = cur->next;  
                 continue;  
             }  
               
             do {  
                 cur = cur->parent;  
                 if (cur == NULL)  
                     break;  
                 if (cur == (xmlNodePtr) style->doc) {  
                     cur = NULL;  
                     break;  
                 }  
                 if (cur->next != NULL) {  
                     cur = cur->next;  
                     break;  
                 }  
             } while (cur != NULL);  
         }  
         xmlOutputBufferFlush(buf);  
     } else {  
         int omitXmlDecl;  
         int standalone;  
   
         XSLT_GET_IMPORT_INT(omitXmlDecl, style, omitXmlDeclaration);  
         XSLT_GET_IMPORT_INT(standalone, style, standalone);  
   
         if (omitXmlDecl != 1) {  
             xmlOutputBufferWriteString(buf, "<?xml version=");  
             if (result->version != NULL)   
                 xmlBufferWriteQuotedString(buf->buffer, result->version);  
             else  
                 xmlOutputBufferWriteString(buf, "\"1.0\"");  
             if (encoding == NULL) {  
                 if (result->encoding != NULL)  
                     encoding = result->encoding;  
                 else if (result->charset != XML_CHAR_ENCODING_UTF8)  
                     encoding = (const xmlChar *)  
                                xmlGetCharEncodingName((xmlCharEncoding)  
                                                       result->charset);  
             }  
             if (encoding != NULL) {  
                 xmlOutputBufferWriteString(buf, " encoding=");  
                 xmlBufferWriteQuotedString(buf->buffer, (xmlChar *) encoding);  
             }  
             switch (standalone) {  
                 case 0:  
                     xmlOutputBufferWriteString(buf, " standalone=\"no\"");  
                     break;  
                 case 1:  
                     xmlOutputBufferWriteString(buf, " standalone=\"yes\"");  
                     break;  
                 default:  
                     break;  
             }  
             xmlOutputBufferWriteString(buf, "?>\n");  
         }  
         if (result->children != NULL) {  
             xmlNodePtr child = result->children;  
   
             while (child != NULL) {  
                 xmlNodeDumpOutput(buf, result, child, 0, (indent == 1),  
                                   (const char *) encoding);  
                 if (child->type == XML_DTD_NODE)  
                     xmlOutputBufferWriteString(buf, "\n");  
                 child = child->next;  
             }  
             xmlOutputBufferWriteString(buf, "\n");  
         }          }
         xmlOutputBufferFlush(buf);          const char* render_encoding=render->NAME_CSTR();
     }          const char* header_encoding=header->NAME_CSTR();
     return(buf->written - base);  
 }  
   
   
 struct Xdoc2buf_result {          xmlCharEncodingHandler *renderer=xmlFindCharEncodingHandler(render_encoding);
         char* str;          // UTF-8 renderer contains empty input/output converters, 
         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          // which is wrong for xmlOutputBufferCreateIO
         // while zero encoder goes perfectly           // while zero renderer goes perfectly 
         const char* encoder_name=encoder->name;          if(render->isUTF8())
         if(strcmp(encoder_name, "UTF-8")==0)                  renderer=0;
                 encoder=0;  
           xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(renderer));
         xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));  
           xsltStylesheet *stylesheet = xsltNewStylesheet();
         xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());          if(!stylesheet)
         if(!stylesheet.get())                  throw Exception(0, 0, "xsltNewStylesheet failed");
                 throw Exception(0,  
                         0,          #define OOSTRING2STYLE(name) \
                         "xsltNewStylesheet failed");                  stylesheet->name=oo.name?BAD_CAST xmlMemStrdup((const char*)r.transcode(*oo.name)):0
           #define OOBOOL2STYLE(name) \
         #define OOS2STYLE(name) \                  if(oo.name>=0) stylesheet->name=oo.name
                 stylesheet->name=oo.name?BAD_CAST xmlMemStrdup(r.transcode(*oo.name)->str):0  
         #define OOE2STYLE(name) \          OOSTRING2STYLE(method);
                 stylesheet->name=oo.name          OOSTRING2STYLE(encoding);
           OOSTRING2STYLE(mediaType);
         OOS2STYLE(method);  //      OOSTRING2STYLE(doctypeSystem);
         OOS2STYLE(encoding);  //      OOSTRING2STYLE(doctypePublic);
         OOS2STYLE(mediaType);          OOBOOL2STYLE(indent);
 //      OOS2STYLE(doctypeSystem);          OOSTRING2STYLE(version);
 //      OOS2STYLE(doctypePublic);          OOBOOL2STYLE(standalone);
         OOE2STYLE(indent);          OOBOOL2STYLE(omitXmlDeclaration);
         OOS2STYLE(version);  
         OOE2STYLE(standalone);          xmlDoc& xmldoc=vdoc.get_xmldoc();
         OOE2STYLE(omitXmlDeclaration);          xmldoc.encoding=BAD_CAST xmlMemStrdup(render_encoding);
           if(header_encoding)
         xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());                  stylesheet->encoding=BAD_CAST xmlMemStrdup(header_encoding);
         document->encoding=BAD_CAST xmlMemStrdup(encoder_name);          if(xsltSaveResultTo(outputBuffer.get(), &xmldoc, stylesheet)<0
         if(pa_xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {                  || xmlHaveGenericErrors())
                 GdomeException exc=0;                  throw XmlException(0, r);
                 throw XmlException(0, exc);  
         }  
   
         // write out result          // write out result
         char *gnome_str;  size_t gnome_length;          char *gnome_str;
           size_t gnome_length;
   #ifdef LIBXML2_NEW_BUFFER
           if(outputBuffer->conv) {
                   gnome_length=xmlBufUse(outputBuffer->conv);
                   gnome_str=(char *)xmlBufContent(outputBuffer->conv);
           } else {
                   gnome_length=xmlOutputBufferGetSize(&(*outputBuffer));
                   gnome_str=(char *)xmlOutputBufferGetContent(&(*outputBuffer));
           }
   #else
         if(outputBuffer->conv) {          if(outputBuffer->conv) {
                 gnome_length=outputBuffer->conv->use;                  gnome_length=outputBuffer->conv->use;
                 gnome_str=(char *)outputBuffer->conv->content;                  gnome_str=(char *)outputBuffer->conv->content;
Line 798  static Xdoc2buf_result xdoc2buf(Request& Line 485  static Xdoc2buf_result xdoc2buf(Request&
                 gnome_length=outputBuffer->buffer->use;                  gnome_length=outputBuffer->buffer->use;
                 gnome_str=(char *)outputBuffer->buffer->content;                  gnome_str=(char *)outputBuffer->buffer->content;
         }          }
   #endif
   
         if((result.length=gnome_length)) {          if(file_spec){
                 result.str=pa_strdup(gnome_str, gnome_length);                  file_write(r.charsets,
         } else                          *file_spec,
                 result.str=0;                          gnome_str,
                           gnome_length, 
         if(file_spec)  
                 file_write(*file_spec,  
                         gnome_str, gnome_length,   
                         true/*as_text*/);                          true/*as_text*/);
                   return String::C(); // actually, we don't need this output at all
           } else
                   return String::C(gnome_length ? pa_strdup(gnome_str, gnome_length) : 0, gnome_length);
   }
   
         return result;  inline HashStringValue* get_options(MethodParams& params, size_t index){
           return (params.count()>index) ? params.as_hash(index) : 0;
 }  }
   
 static void _file(Request& r, MethodParams& params) {  static void _file(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          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));  
   
         // write out result          XDocOutputOptions oo(vdoc.output_options);
           oo.append(r, get_options(params, 0), true/* $.name[filename] could be specified by user */);
           String::C buf=xdoc2buf(r, vdoc, oo, 0/*file_name. not to file, to memory*/);
   
         VFile& vfile=*new VFile;          VFile& vfile=*new VFile;
         VHash& vhcontent_type=*new VHash;          VHash& vhcontent_type=*new VHash;
         vhcontent_type.hash().put(          vhcontent_type.hash().put(value_name, new VString(*oo.mediaType));
                 value_name,           vhcontent_type.hash().put("charset", new VString(*oo.encoding));
                 new VString(*oo.mediaType));  
         vhcontent_type.hash().put(          vfile.set_binary(false/*not tainted*/, buf.str?buf.str:""/*to distinguish from stat-ed file*/, buf.length, oo.filename, &vhcontent_type);
                 String::Body("charset"),   
                 new VString(*oo.encoding));          // write out result
           r.write(vfile);
         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, MethodParams& params) {  static void _save(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         const String& file_spec=r.absolute(params.as_string(0, "file name must be string"));          const String& file_spec=r.full_disk_path(params.as_string(0, FILE_NAME_MUST_BE_STRING));
                   
         VXdoc::Output_options oo(vdoc.output_options);          XDocOutputOptions oo(vdoc.output_options);
         xdoc2buf(r, vdoc, params, 1,           oo.append(r, get_options(params, 1));
                 oo,          xdoc2buf(r, vdoc, oo, &file_spec);
                 &file_spec);  
 }  }
   
 static void _string(Request& r, MethodParams& params) {  static void _string(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc::Output_options oo(vdoc.output_options);  
         Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0,           XDocOutputOptions oo(vdoc.output_options);
                 oo,          oo.append(r, get_options(params, 0));
                 0/*not to file, to memory*/);          String::C buf=xdoc2buf(r, vdoc, oo,
                   0/*file_name. not to file, to memory*/,
                   true/*use source charset to render, client charset to put to header*/);
   
         // write out result          // write out result
         r.write_no_lang(String(buf.str, buf.length));          r.write(String(buf, String::L_AS_IS));
 }  }
   
 #ifndef DOXYGEN  #ifndef DOXYGEN
 struct Add_xslt_param_info {  struct Add_xslt_param_info {
         Request* r;          Request* r;
         Array<GdomeDOMString_auto_ptr>* strings;          Array<const xmlChar*>* strings;
         const char** current_transform_param;          const xmlChar** current_transform_param;
 };  };
 #endif  #endif
 static void add_xslt_param(  static void add_xslt_param(
                            HashStringValue::key_type attribute,                              HashStringValue::key_type attribute, 
                            HashStringValue::value_type meaning,                              HashStringValue::value_type meaning, 
                            Add_xslt_param_info* info) {                             Add_xslt_param_info* info) {
         GdomeDOMString_auto_ptr s;          xmlChar* s;
         *info->current_transform_param++=(s=info->r->transcode(attribute))->str; *info->strings+=s;          *info->current_transform_param++=(s=info->r->transcode(attribute)); *info->strings+=s;
         *info->current_transform_param++=(s=info->r->transcode(meaning->as_string()))->str; *info->strings+=s;          *info->current_transform_param++=(s=info->r->transcode(meaning->as_string())); *info->strings+=s;
 }  }
   
 static VXdoc& _transform(Request& r, const String* stylesheet_source,   static VXdoc& _transform(Request& r, const String* stylesheet_source, VXdoc& vdoc, xsltStylesheetPtr stylesheet, const xmlChar** transform_params) 
                                                    VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params)   
 {  {
         xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());          xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         xsltTransformContext_auto_ptr transformContext(          xsltTransformContext_auto_ptr transformContext(
                 xsltNewTransformContext(stylesheet, document));                  xsltNewTransformContext(stylesheet, &xmldoc));
         // make params literal          // make params literal
         if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext          if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext
                 transformContext->globalVars = xmlHashCreate(20);                  transformContext->globalVars = xmlHashCreate(20);
         xsltQuoteUserParams(transformContext.get(), transform_params);          xsltQuoteUserParams(transformContext.get(), (const char**)transform_params);
         // do transform          // do transform
         xmlDoc *transformed=xsltApplyStylesheetUser(          xmlDoc *transformed=xsltApplyStylesheetUser(
                 stylesheet,                  stylesheet,
                 document,                  &xmldoc,
                 0/*already quoted-inserted  transform_params*/,                  0/*already quoted-inserted  transform_params*/,
                 0/*const char* output*/,                  0/*const char* output*/,
                 0/*FILE *profile*/,                  0/*FILE *profile*/,
                 transformContext.get());                  transformContext.get());
         if(!transformed || xmlHaveGenericErrors()) {          if(!transformed || xmlHaveGenericErrors())
                 GdomeException exc=0;                  throw XmlException(stylesheet_source, r);
                 throw XmlException(stylesheet_source, exc);  
         }  
   
         //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing          //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing
         transformed->type=XML_DOCUMENT_NODE;          transformed->type=XML_DOCUMENT_NODE;
         // constructing result          // constructing result
         GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);          VXdoc& result=*new VXdoc(r.charsets, *transformed);
         if(!gdomeDocument)  
                 throw Exception(0,  
                         0,  
                         "gdome_xml_doc_mkref failed");  
         VXdoc& result=*new VXdoc(&r.charsets, gdomeDocument);  
         /* grabbing options          /* grabbing options
   
                 <xsl:output                  <xsl:output
Line 920  static VXdoc& _transform(Request& r, con Line 599  static VXdoc& _transform(Request& r, con
                 !indent = "yes" | "no"                  !indent = "yes" | "no"
                 !media-type = string />                   !media-type = string /> 
         */          */
         VXdoc::Output_options& oo=result.output_options;          XDocOutputOptions& oo=result.output_options;
   
         oo.method=stylesheet->method?&r.transcode(stylesheet->method):0;          oo.method=stylesheet->method?&r.transcode(stylesheet->method):0;
         oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0;          oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0;
         oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0;          oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0;
         oo.indent=stylesheet->indent!=0;          oo.indent=stylesheet->indent;
         oo.version=stylesheet->version?&r.transcode(stylesheet->version):0;          oo.version=stylesheet->version?&r.transcode(stylesheet->version):0;
         oo.standalone=stylesheet->standalone!=0;          oo.standalone=stylesheet->standalone;
         oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;          oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration;
   
         // return          // return
         return result;          return result;
Line 937  static void _transform(Request& r, Metho Line 616  static void _transform(Request& r, Metho
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // params          // params
         Array<GdomeDOMString_auto_ptr> transform_strings;          Array<const xmlChar*> transform_strings;
         const char** transform_params=0;          const xmlChar** transform_params=0;
         if(params.count()>1) {          if(params.count()>1)
                 Value& vparams=params.as_no_junction(1, "transform parameters must be hash");                  if(HashStringValue* hash=params.as_hash(1, "transform options")) {
                 if(!vparams.is_string())                          transform_params=new(PointerGC) const xmlChar*[hash->count()*2+1];
                         if(HashStringValue* hash=vparams.get_hash()) {                          Add_xslt_param_info info={
                                 transform_params=new(UseGC) const char*[hash->count()*2+1];                                  &r, 
                                 Add_xslt_param_info info={                                  &transform_strings,
                                         &r,                                   transform_params
                                         &transform_strings,                          };
                                         transform_params                          hash->for_each<Add_xslt_param_info*>(add_xslt_param, &info);
                                 };                          transform_params[hash->count()*2]=0;
                                 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");  
         }  
   
         VXdoc* result;          VXdoc* result;
         if(Value *vxdoc=params[0].as(VXDOC_TYPE, false)) { // stylesheet (xdoc)          if(Value *vxdoc=params[0].as(VXDOC_TYPE)) { // stylesheet (xdoc)
                 xmlDoc *document=gdome_xml_doc_get_xmlDoc(                  VXdoc& vstylesheet=static_cast<VXdoc &>(*vxdoc);
                         static_cast<VXdoc *>(vxdoc)->get_document());                  xmlDoc& stylesheetdoc=vstylesheet.get_xmldoc();
   
                 // compile xdoc stylesheet                  // compile xdoc stylesheet
                 xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document));                   xsltStylesheet *stylesheet=xsltParseStylesheetDoc(&stylesheetdoc);
                 if(xmlHaveGenericErrors()) {                  if(xmlHaveGenericErrors())
                         GdomeException exc=0;                          throw XmlException(0, r);
                         throw XmlException(0, exc);                  if(!stylesheet)
                 }                          throw Exception("xml", 0, "stylesheet failed to compile");
                 if(!stylesheet_ptr.get())  
                         throw Exception("xml",  
                                 0,  
                                 "stylesheet failed to compile");  
                 // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor  
                 // we don't need that  
                 stylesheet_ptr->doc=0;  
   
                 // transform!                  // transform!
                 result=&_transform(r, 0,                  result=&_transform(r, 0, vdoc, stylesheet, transform_params);
                         vdoc, stylesheet_ptr.get(),  
                         transform_params);  
         } else { // stylesheet (file name)          } else { // stylesheet (file name)
                 // extablish stylesheet connection                  // extablish stylesheet connection
                 const String& stylesheet_filespec=                  const String& stylesheet_filespec=r.full_disk_path(params.as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)"));
                         r.absolute(params.as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)"));                  Stylesheet_connection_ptr connection(stylesheet_manager->get_connection(stylesheet_filespec));
                 Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec);  
   
                 // load and compile file to stylesheet [or get cached if any]                  // load and compile file to stylesheet [or get cached if any]
                 // transform!                  // transform!
                 result=&_transform(r, &stylesheet_filespec, vdoc, connection->stylesheet(),                  result=&_transform(r, &stylesheet_filespec, vdoc, connection->stylesheet(), transform_params);
                         transform_params);  
         }          }
   
         // write out result          // write out result
         r.write_no_lang(*result);          r.write(*result);
 }  }
   
 // constructor  // constructor
   
 /// @test how to create empty type html?  /// @test how to create empty type html?
 MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, xnode_class) {  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME) {
           set_base(xnode_class);
   
         /// DOM1          /// DOM1
   
         // Element createElement(in DOMString tagName) raises(DOMException);          // Element createElement(in DOMString tagName) raises(DOMException);
Line 1017  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 682  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
         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 name);  
         add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);  
   
         /// DOM2          /// DOM2
   
Line 1034  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 697  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
         // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);          // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
         add_native_method("createElementNS", Method::CT_DYNAMIC, _createElementNS, 2, 2);          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}
Line 1073  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 733  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
   
 // global variable  // global variable
   
 DECLARE_CLASS_VAR(xdoc, 0, 0); // fictive  DECLARE_CLASS_VAR(xnode, 0); // fictive
   DECLARE_CLASS_VAR(xdoc, 0); // fictive
   
 #endif  #endif

Removed from v.1.133  
changed lines
  Added in v.1.201


E-mail: