Diff for /parser3/src/classes/xdoc.C between versions 1.108.2.19.2.2 and 1.204

version 1.108.2.19.2.2, 2003/03/18 16:00:06 version 1.204, 2024/11/04 03:53:25
Line 1 Line 1
 /** @file  /** @file
         Parser: @b xdoc parser class.          Parser: @b xdoc parser class.
   
         Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com)          Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
         Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)          Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
 */  */
   
 #include "classes.h"  #include "pa_config_includes.h"
   
 #ifdef XML  #ifdef XML
   
 static const char* IDENT_XDOC_C="$Date$";  #include "libxml/tree.h"
   #include "libxml/HTMLtree.h"
   #include "libxslt/xsltInternals.h"
   #include "libxslt/transform.h"
   #include "libxslt/xsltutils.h"
   #include "libxslt/variables.h"
   #include "libxslt/imports.h"
   
 #include "pa_vmethod_frame.h"  #include "pa_vmethod_frame.h"
   
 #include "pa_stylesheet_connection.h"  #include "pa_stylesheet_manager.h"
 #include "pa_request.h"  #include "pa_request.h"
 #include "pa_vxdoc.h"  #include "pa_vxdoc.h"
 #include "pa_charset.h"  #include "pa_charset.h"
 #include "pa_vfile.h"  #include "pa_vfile.h"
   #include "pa_xml_exception.h"
 #include "xnode.h"  #include "xnode.h"
   #include "pa_charsets.h"
   
 #include "gdome.h"  volatile const char * IDENT_XDOC_C="$Id$";
 #include "libxml/tree.h"  
 extern "C" {  
 #include "gdomecore/gdome-xml-node.h"  
 #include "gdomecore/gdome-xml-document.h"  
 };  
 #include "libxslt/xsltInternals.h"  
 #include "libxslt/transform.h"  
 #include "libxslt/xsltutils.h"  
 #include "libxslt/variables.h"  
   
 // 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
         ValuePtr create_new_value() { return ValuePtr(new VXdoc(0, 0, 0)); }          Value* create_new_value(Pool&) { return new VXdoc(); }
   
 public:  public:
         MXdoc();          MXdoc();
   
 public: // Methoded  
         void configure_admin(Request& r);  
 };  };
   
 // 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 124  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, const String& method_name, GdomeNode *node,   static void writeNode(Request& r, VXdoc& xdoc, xmlNode* node) {
                                           GdomeException exc) {          if(!node)
         if(!node || exc)                  throw Exception(PARSER_RUNTIME,
                 throw Exception(                          0,
                         method_name,                           "error creating node"); // OOM, bad name, things like that
                         exc);  
   
         // write out result          // write out result
         r.write_no_lang(ValuePtr(new VXnode(&pool, &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, const String& method_name, MethodParams* params) {  static void _createElement(Request& r, MethodParams& params) {
           xmlChar* tagName=as_xmlname(r, params, 0, "tagName must be string");
   
           VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
           xmlNode *node=xmlNewDocNode(&xmldoc, NULL, tagName, NULL);
           writeNode(r, vdoc, node);
   }
   
   // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
   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();
   
         const String& tagName=params->as_string(0, "tagName must be string");          xmlChar* prefix=0;
           xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix);
   
         GdomeException exc;          xmlNode *node;
         GdomeNode *node=          if(localName) {
                 (GdomeNode *)gdome_doc_createElement(vdoc.get_document(method_name),                   xmlNs& ns=pa_xmlMapNs(xmldoc, namespaceURI, prefix);
                 r.transcode(tagName).get(),                  node=xmlNewDocNode(&xmldoc, &ns, localName, NULL);
                 &exc);          } else
         writeNode(r, method_name, node, exc);                  node=xmlNewDocNode(&xmldoc, NULL, qualifiedName/*unqualified, actually*/, NULL);
           writeNode(r, vdoc, node);
 }  }
   
 // DocumentFragment createDocumentFragment()  // DocumentFragment createDocumentFragment()
 static void _createDocumentFragment(Request& r, const String& method_name, 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(method_name),  
                 &exc);  
         writeNode(r, method_name, 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) {
         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(method_name),  
                 r.transcode(data).get(),  
                 &exc);  
         writeNode(r, method_name, 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) {
         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(method_name),  
                 r.transcode(data).get(),  
                 &exc);  
         writeNode(r, method_name, 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) {
         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(method_name),  
                 r.transcode(data).get(),  
                 &exc);  
         writeNode(r, method_name, 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) {
         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(method_name),  
                 r.transcode(target).get(),   
                 r.transcode(data).get(),  
                 &exc);  
         writeNode(r, method_name, 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) {
         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_createAttribute(  
                 vdoc.get_document(method_name),  
                 r.transcode(name).get(),  
                 &exc);  
         writeNode(r, method_name, node, exc);  
 }  
 // EntityReference createEntityReference(in DOMString name) raises(DOMException);  
 static void _createEntityReference(Request& r, const String& method_name, 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=(xmlNode*)xmlNewDocProp(&xmldoc, name, 0);
           writeNode(r, vdoc, node);
         GdomeException exc;  
         GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(  
                 vdoc.get_document(method_name),  
                 r.transcode(name).get(),  
                 &exc);  
         writeNode(r, method_name, node, exc);  
 }  }
   
 // NodeList getElementsByTagName(in DOMString name);  // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
 static void _getElementsByTagName(Request& r, const String& method_name, MethodParams* params) {  static void _createAttributeNS(Request& r, MethodParams& params) {
         VXdoc& vdoc=GET_SELF(r, VXdoc);          xmlChar* namespaceURI=as_xmlnsuri(r, params, 0);
           xmlChar* qualifiedName=as_xmlqname(r, params, 1);
         const String& name=params->as_string(0, "name must be string");  
   
         VHashPtr result(new VHash);          VXdoc& vdoc=GET_SELF(r, VXdoc);
         GdomeException exc;          xmlDoc& xmldoc=vdoc.get_xmldoc();
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagName(  
                         vdoc.get_document(method_name),   
                         r.transcode(name).get(),   
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++) {  
                         const String& skey(new String);  
                         *skey << pool.format_integer(i);  
   
                         result->hash(Exception::undefined_source).put(          xmlChar* prefix=0;
                                 skey,           xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix);
                                 ValuePtr(new VXnode(&pool, &r.charsets, gdome_nl_item(nodes, i, &exc))));  
                 }  
         } else if(exc)  
                 throw Exception(  
                         method_name,   
                         exc);  
   
         // write out result          xmlNode *node;
         r.write_no_lang(result);          if(localName) {
                   xmlNs& ns=pa_xmlMapNs(xmldoc, namespaceURI, prefix);
                   node=(xmlNode*)xmlNewDocProp(&xmldoc, localName, NULL);
                   xmlSetNs(node, &ns);
           } else
                   node=(xmlNode*)xmlNewDocProp(&xmldoc, qualifiedName/*unqualified, actually*/, NULL);
           writeNode(r, vdoc, node);
 }  }
   
 static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams* params) {  // EntityReference createEntityReference(in DOMString name) raises(DOMException);
         VXdoc& vdoc=GET_SELF(r, VXdoc);  static void _createEntityReference(Request& r, MethodParams& params) {
           xmlChar* name=as_xmlname(r, params, 0);
   
         // namespaceURI;localName          VXdoc& vdoc=GET_SELF(r, VXdoc);
         const String& namespaceURI=params->as_string(0, "namespaceURI must be string");          xmlDoc& xmldoc=vdoc.get_xmldoc();
         const String& localName=params->as_string(1, "localName must be string");  
   
         GdomeException exc;  
         VHashPtr result(new VHash);  
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagNameNS(  
                         vdoc.get_document(method_name),   
                         r.transcode(namespaceURI).get(),  
                         r.transcode(localName).get(),  
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++) {  
                         const String& skey(new String);  
                         *skey << pool.format_integer(i);  
   
                         result->hash(Exception::undefined_source).put(  
                                 skey,   
                                 ValuePtr(new VXnode(&pool, &r.charsets, gdome_nl_item(nodes, i, &exc))));  
                 }  
         }  
   
         // write out result          xmlNode *node=xmlNewReference(&xmldoc, name);
         r.write_no_lang(result);          writeNode(r, vdoc, node);
 }  }
   
 static void _getElementById(Request& r, const String& method_name, MethodParams* params) {  
         VXdoc& vdoc=GET_SELF(r, VXdoc);  
   
         // elementId  
         const String& elementId=params->as_string(0, "elementID must be string");  
   
         GdomeException exc;  static void _getElementById(Request& r, MethodParams& params) {
         if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(          xmlChar* elementId=as_xmlname(r, params, 0, "elementID must be string");
                 vdoc.get_document(method_name),  
                 r.transcode(elementId).get(),  
                 &exc)) {  
                 // write out result  
                 r.write_no_lang(ValuePtr(new VXnode(&pool, &r.charsets, node)));  
         } else if(exc || xmlHaveGenericErrors())  
                 throw Exception(  
                         method_name,   
                         exc);  
 }  
   
 static void _importNode(Request& r, const String& method_name, MethodParams* params) {  
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           xmlDoc& xmldoc=vdoc.get_xmldoc();
   
         GdomeNode *importedNode=          if(xmlNode *node=pa_getElementById(xmldoc, elementId))
                 as_node(method_name, params, 0, "importedNode must be node");                  writeNode(r, vdoc, node);
         bool deep=  }
                 params->as_bool(1, "deep must be bool", r);  
   
         GdomeException exc;  static void _importNode(Request& r, MethodParams& params) {
         GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(method_name),           xmlNode& importedNode=as_node(params, 0, "importedNode must be node");
                 importedNode,          bool deep=params.as_bool(1, "deep must be bool", r);
                 deep, &exc);  
         if(exc)  
                 throw Exception(  
                         method_name,   
                         exc);  
   
         // write out result          VXdoc& vdoc=GET_SELF(r, VXdoc);
         r.write_no_lang(ValuePtr(new VXnode(&pool, &r.charsets, outputNode)));          xmlDoc& xmldoc=vdoc.get_xmldoc();
   
           xmlNode *node=xmlDocCopyNode(&importedNode, &xmldoc, deep?1: 0);
           writeNode(r, vdoc, node);
 }  }
 /*  
 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 _create(Request& r, const String& method_name, MethodParams* params) {  #define XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD | XML_PARSE_NOENT | XML_PARSE_HUGE)
   
   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);
   
         ValuePtr param=(*params)[params->count()-1];          Value& param=params[params.count()-1];
         GdomeDocument *document;          xmlDoc* xmldoc;
         if(param->get_junction()) { // {<?xml?>...}          bool set_encoding=false;
                 Temp_lang temp_lang(r, String::UL_XML);          if(param.get_junction()) { // {<?xml?>...}
   
                 const String& xml=r.process_to_string(param);                  const String& xml=r.process_to_string(param);
                   String::Body sbody=xml.cstr_to_string_body_untaint(String::L_XML, r.connection(false), &r.charsets);
   
                 const char* cstr=xml->cstr(String::UL_UNSPECIFIED);                  xmldoc=xmlReadMemory(sbody.cstr(), sbody.length(), NULL, NULL, XML_PARSE_OPTIONS);
                 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(&pool);  
   
                 GdomeException exc;                  if(!xmldoc || xmlHaveGenericErrors())
                 /*                          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);  
                 */  
                 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));  
   
                 /// +xalan createXMLDecl ?                  // 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}
           // replace any previous parsed source
           vdoc.set_xmldoc(r.charsets, *xmldoc); 
                   
         // 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=r.full_disk_path(URI).cstr();
                 URI_cstr=URI_cstr_ptr=r.absolute(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));
   
         // replace any previous parsed source          if(set_encoding) {
         vdoc.set_document(&pool, &r.charsets, document);                  const char* source_charset_name=source_charset.NAME().cstr();
                   xmldoc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
           }
 }  }
   
 static void _load(Request& r, const String& method_name, MethodParams* params) {  static void _load(Request& r, MethodParams& params) {
         Charset& source_charset=r.charsets.source();  
         VXdoc& vdoc=GET_SELF(r, VXdoc);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // filespec          // filespec
         const String& file_name=params->as_string(0, "uri must be string");          const String* uri=&params.as_string(0, "URI must be string");
         const String& uri=r.absolute(file_name);          const char* uri_cstr;
           if(uri->pos("://")==STRING_NOT_FOUND) // disk path
         void *data;  size_t size;                  uri_cstr=r.full_disk_path(*uri).taint_cstr(String::L_FILE_SPEC);
         File_read_result file=file_read(pool, source_charset, uri, false/*not text*/,          else // xxx:// 
                 params->count()>1?params->as_no_junction(1, "additional params must be hash")                  uri_cstr=uri->taint_cstr(String::L_AS_IS); // leave as-is for xmlParseFile to handle
                         ->get_hash(method_name)  
                         :0);          /// @todo!! add SAFE MODE!!
           xmlDoc* xmldoc=xmlReadFile(uri_cstr, NULL, XML_PARSE_OPTIONS);
         GdomeDocument *document=(GdomeDocument *)          if(!xmldoc || xmlHaveGenericErrors())
                 gdome_xml_n_mkref((xmlNode *)xmlParseMemory(file.data, file.size));                  throw XmlException(uri, r);
         if(!document || xmlHaveGenericErrors()) {          
                 GdomeException exc=0;          // must be first action after if}
                 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(&pool, &r.charsets, document);          vdoc.set_xmldoc(r.charsets, *xmldoc); 
 }  }
   
 static void param_option_over_output_option  String::C xdoc2buf(Request& r, VXdoc& vdoc, 
                                                                                         HashStringValue& param_options, const char* option_name,                                          XDocOutputOptions& oo,
                                                                                         String* & output_option) {                                          const String* file_spec,
         if(ValuePtr value=param_options.get(String* (new String(option_name))))                                          bool use_source_charset_to_render_and_client_charset_to_write_to_header=false) {
                 output_option=value->as_string(&pool);          Charset* render=0;
 }          Charset* header=0;
 static void param_option_over_output_option          if(use_source_charset_to_render_and_client_charset_to_write_to_header) {
                                                                                         HashStringValue& param_options, const char* option_name,                  render=&r.charsets.source();
                                                                                         bool& output_option) {                  header=&r.charsets.client();
         if(ValuePtr value=param_options.get(String* (new String(option_name)))) {          } else {
                 const String& s=value->as_string(&pool);                  header=render=&pa_charsets.get(*oo.encoding);
                 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,  
                                                                    const String& method_name, MethodParams* params, int 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) {  
                 ValuePtr voptions=params->as_no_junction(index, "options must be string");  
                 if(voptions->is_defined()) {  
                         if(HashStringValue *options=voptions->get_hash(method_name)) {  
                                 // $.method[xml|html|text]  
                                 if(ValuePtr vmethod=options->get(String* (new String(XDOC_OUTPUT_METHOD_OPTION_NAME))))  
                                         oo.method=vmethod->as_string(&pool);  
   
                                 // $.version[1.0]  
                                 param_option_over_output_option(pool, *options, "version", oo.version);  
                                 // $.encoding[windows-1251|...]  
                                 param_option_over_output_option(pool, *options, "encoding", oo.encoding);  
                                 // $.omit-xml-declaration[yes|no]  
                                 param_option_over_output_option(pool, *options, "omit-xml-declaration", oo.omitXmlDeclaration);  
                                 // $.standalone[yes|no]  
                                 param_option_over_output_option(pool, *options, "standalone", oo.standalone);  
                                 // $.doctype-public[?]  
                                 param_option_over_output_option(pool, *options, "doctype-public", oo.doctypePublic);  
                                 // $.doctype-system[?]  
                                 param_option_over_output_option(pool, *options, "doctype-system", oo.doctypeSystem);  
                                 // $.indent[yes|no]  
                                 param_option_over_output_option(pool, *options, "indent", oo.indent);  
                                 // $.media-type[text/{html|xml|plain}]  
                                 param_option_over_output_option(pool, *options, "media-type", oo.mediaType);                               
                         }  
                 }  
         }  
   
         // default encoding from pool  
         if(!oo.encoding)  
                 oo.encoding=r.charsets.source().name();  
         // default method=xml  
         if(!oo.method)  
                 oo.method=String* (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=String* (new String("text/xml"));  
                 else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)  
                         oo.mediaType=String* (new String("text/html"));  
                 else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others  
                         oo.mediaType=String* (new String("text/plain"));  
         }          }
 }          const char* render_encoding=render->NAME_CSTR();
           const char* header_encoding=header->NAME_CSTR();
   
 struct Xdoc2buf_result {          xmlCharEncodingHandler *renderer=xmlFindCharEncodingHandler(render_encoding);
         char* ptr;          // UTF-8 renderer contains empty input/output converters, 
         size_t size;  
 };  
 static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc,   
                                          const String& method_name, MethodParams* params, int index,  
                                          VXdoc::Output_options& oo,  
                                          const String& file_spec) {  
         Xdoc2buf_result result;  
         prepare_output_options(r, method_name, params, index,  
                 oo);  
   
         const char* encoding_cstr=oo.encoding->cstr();  
         xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);  
         if(!encoder)  
                 throw Exception("parser.runtime",  
                         method_name,  
                         "encoding '%s' not supported", encoding_cstr.get());  
         // 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 
         if(encoder && strcmp(encoder->name, "UTF-8")==0)          if(render->isUTF8())
                 encoder=0;                  renderer=0;
   
         xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));          xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(renderer));
   
         xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());          xsltStylesheet *stylesheet = xsltNewStylesheet();
         if(!stylesheet.get())          if(!stylesheet)
                 throw Exception(0,                  throw Exception(0, 0, "xsltNewStylesheet failed");
                         method_name,  
                         "xsltNewStylesheet failed");          #define OOSTRING2STYLE(name) \
                   stylesheet->name=oo.name?BAD_CAST xmlMemStrdup((const char*)r.transcode(*oo.name)):0
         #define OOS2STYLE(name) \          #define OOBOOL2STYLE(name) \
                 stylesheet->name=oo.name?BAD_CAST g_strdup(r.transcode(oo.name)->str):0                  if(oo.name>=0) stylesheet->name=oo.name
         #define OOE2STYLE(name) \  
                 stylesheet->name=oo.name          OOSTRING2STYLE(method);
           OOSTRING2STYLE(encoding);
         OOS2STYLE(method);          OOSTRING2STYLE(mediaType);
         OOS2STYLE(encoding);  //      OOSTRING2STYLE(doctypeSystem);
         OOS2STYLE(mediaType);  //      OOSTRING2STYLE(doctypePublic);
         OOS2STYLE(doctypeSystem);          OOBOOL2STYLE(indent);
         OOS2STYLE(doctypePublic);          OOSTRING2STYLE(version);
         OOE2STYLE(indent);          OOBOOL2STYLE(standalone);
         OOS2STYLE(version);          OOBOOL2STYLE(omitXmlDeclaration);
         OOE2STYLE(standalone);  
         OOE2STYLE(omitXmlDeclaration);          xmlDoc& xmldoc=vdoc.get_xmldoc();
           xmldoc.encoding=BAD_CAST xmlMemStrdup(render_encoding);
         xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(method_name));          if(header_encoding)
         if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {                  stylesheet->encoding=BAD_CAST xmlMemStrdup(header_encoding);
                 GdomeException exc=0;          if(xsltSaveResultTo(outputBuffer.get(), &xmldoc, stylesheet)<0
                 throw Exception(                  || xmlHaveGenericErrors())
                         method_name,                   throw XmlException(0, r);
                         exc);  
         }  
   
         // write out result          // write out result
         char *gnome_buf;  size_t gnome_size;          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_size=outputBuffer->conv->use;                  gnome_length=outputBuffer->conv->use;
                 gnome_buf=(char *)outputBuffer->conv->content;                  gnome_str=(char *)outputBuffer->conv->content;
         } else {          } else {
                 gnome_size=outputBuffer->buffer->use;                  gnome_length=outputBuffer->buffer->use;
                 gnome_buf=(char *)outputBuffer->buffer->content;                  gnome_str=(char *)outputBuffer->buffer->content;
         }          }
         if(file_spec)  #endif
                 file_write(file_spec,  
                                         gnome_buf, gnome_size,           if(file_spec){
                                         true/*as_text*/);                  file_write(r.charsets,
         else if(result.size=gnome_size) {                          *file_spec,
                 result.ptr=pool.copy(gnome_buf, gnome_size);                          gnome_str,
                           gnome_length, 
                           true/*as_text*/);
                   return String::C(); // actually, we don't need this output at all
         } else          } else
                 result.ptr=0;                  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, const String& method_name, 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, method_name, params, 0,           XDocOutputOptions oo(vdoc.output_options);
                 oo,          oo.append(r, get_options(params, 0), true/* $.name[filename] could be specified by user */);
                 0/*not to file, to memory*/);          String::C buf=xdoc2buf(r, vdoc, oo, 0/*file_name. not to file, to memory*/);
         // write out result  
         r.write_no_lang(String(buf.ptr, buf.size));          VFile& vfile=*new VFile;
           VHash& vhcontent_type=*new VHash;
           vhcontent_type.hash().put(value_name, new VString(*oo.mediaType));
           vhcontent_type.hash().put("charset", new VString(*oo.encoding));
   
           vfile.set_binary(false/*not tainted*/, buf.str?buf.str:""/*to distinguish from stat-ed file*/, buf.length, oo.filename, &vhcontent_type);
   
         // write out result          // write out result
         VFilePtr vfile(new VFile);          r.write(vfile);
         ValuePtr vcontent_type;  
         VHashPtr vhcontent_type(new VHash);  
         vhcontent_type->hash(method_name).put(  
                 value_name,   
                 ValuePtr(new VString(oo.mediaType)));  
         vhcontent_type->hash(method_name).put(  
                 String* (new String("charset")),   
                 ValuePtr(new VString(oo.encoding)));  
         vcontent_type=vhcontent_type;  
   
         vfile->set(pool, false/*tainted*/, buf.ptr?buf.ptr:""/*to distinguish from stat-ed file*/, buf.size,   
                 0/*file_name*/, vcontent_type);  
         r.write_no_lang(vfile);  
 }  }
   
 static void _save(Request& r, const String& method_name, 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, method_name, params, 1,           oo.append(r, get_options(params, 1));
                 oo,          xdoc2buf(r, vdoc, oo, &file_spec);
                 file_spec);  
 }  }
   
 static void _string(Request& r, const String& method_name, 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, method_name, 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.ptr, buf.size));          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(&info->r->pool())))->str; *info->strings+=s;          *info->current_transform_param++=(s=info->r->transcode(meaning->as_string())); *info->strings+=s;
 }  }
 static VXdocPtr _transform(Request& r, const String& doc_source, const String& stylesheet_source,   
                                                    VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params) {  static VXdoc& _transform(Request& r, const String* stylesheet_source, VXdoc& vdoc, xsltStylesheetPtr stylesheet, const xmlChar** transform_params) 
         xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(doc_source));  {
           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 Exception(  
                         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,  
                         doc_source,  
                         "gdome_xml_doc_mkref failed");  
         VXdocPtr result(new VXdoc(&pool, &r.charsets, gdomeDocument));  
         /* grabbing options          /* grabbing options
   
                 <xsl:output                  <xsl:output
Line 757  static VXdocPtr _transform(Request& r, c Line 599  static VXdocPtr _transform(Request& r, c
                 !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, stylesheet_source):0;          oo.method=stylesheet->method?&r.transcode(stylesheet->method):0;
         oo.encoding=stylesheet->encoding?r.transcode(stylesheet->encoding, stylesheet_source):0;          oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0;
         oo.mediaType=stylesheet->mediaType?r.transcode(stylesheet->mediaType, stylesheet_source):0;          oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0;
         oo.doctypeSystem=stylesheet->doctypeSystem?r.transcode(stylesheet->doctypeSystem, stylesheet_source):0;          oo.indent=stylesheet->indent;
         oo.doctypePublic=stylesheet->doctypePublic?r.transcode(stylesheet->doctypePublic, stylesheet_source):0;          oo.version=stylesheet->version?&r.transcode(stylesheet->version):0;
         oo.indent=stylesheet->indent!=0;          oo.standalone=stylesheet->standalone;
         oo.version=stylesheet->version?r.transcode(stylesheet->version, stylesheet_source):0;          oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration;
         oo.standalone=stylesheet->standalone!=0;  
         oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;  
   
         // return          // return
         return result;          return result;
 }  }
 static void _transform(Request& r, const String& method_name, MethodParams* params) {  static void _transform(Request& r, MethodParams& params) {
         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;
         smart_ptr<const char*> transform_params;          const xmlChar** transform_params=0;
         if(params->count()>1) {          if(params.count()>1)
                 ValuePtr 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* params=vparams->get_hash(method_name)) {                          Add_xslt_param_info info={
                                 transform_params=smart_ptr<const char*>(new const char*[params->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;
                                 params->for_each(add_xslt_param, &info);                  }
                                 transform_params[params->count()*2]=0;                            
                         } else          VXdoc* result;
                                 throw Exception("parser.runtime",          if(VXdoc *vxdoc=dynamic_cast<VXdoc*>(&params[0])) { // stylesheet (xdoc)
                                         method_name,                  xmlDoc& stylesheetdoc=vxdoc->get_xmldoc();
                                         "transform parameters parameter must be hash");  
         }  
   
         VXdocPtr result;  
         ValuePtr 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(method_name));  
                 // compile xdoc stylesheet                  // compile xdoc stylesheet
                 xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document));                   xsltStylesheet *stylesheet=xsltParseStylesheetDoc(&stylesheetdoc);
                 // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor                  if(xmlHaveGenericErrors())
                 // we don't need that                          throw XmlException(0, r);
                 stylesheet_ptr->doc=0;                  if(!stylesheet)
                 if(xmlHaveGenericErrors()) {                          throw Exception("xml", 0, "stylesheet failed to compile");
                         GdomeException exc=0;  
                         throw Exception(method_name, exc);  
                 }  
                 if(!stylesheet_ptr.get())  
                         throw Exception("xml",  
                                 method_name,  
                                 "stylesheet failed to compile");  
   
                 // transform!                  // transform!
                 result=_transform(r, method_name, method_name,                  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_connectionPtr 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, method_name, stylesheet_filespec,                  result=&_transform(r, &stylesheet_filespec, vdoc, connection->stylesheet(), transform_params);
                         vdoc, connection->stylesheet(false/*nocache*/),  
                         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.get()) {  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 858  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 681  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 869  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 690  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
     // Node (in Node importedNode, in boolean deep) raises(DOMException)      // Node (in Node importedNode, in boolean deep) raises(DOMException)
         add_native_method("importNode", Method::CT_DYNAMIC, _importNode, 2, 2);          add_native_method("importNode", Method::CT_DYNAMIC, _importNode, 2, 2);
   
         // NodeList getElementsByTagNameNS(in DOMString namespaceURI, in DOMString localName);          // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
         add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);          add_native_method("createAttributeNS", Method::CT_DYNAMIC, _createAttributeNS, 2, 2);
   
           // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
           add_native_method("createElementNS", Method::CT_DYNAMIC, _createElementNS, 2, 2);
   
         /// parser          /// parser
                   
Line 882  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 706  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
         add_native_method("set", Method::CT_DYNAMIC, _create, 1, 1);          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, 2);          add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);
   
         // ^xdoc.save[some.xml]          // ^xdoc.save[some.xml]
         // ^xdoc.save[some.xml;options hash]          // ^xdoc.save[some.xml;options hash]
Line 902  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, Line 726  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME,
   
 }  }
   
 void MXdoc::configure_admin(Request& r) {  
 }  
   
 # else  # else
   
   #include "classes.h"
   
 // 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.108.2.19.2.2  
changed lines
  Added in v.1.204


E-mail: