|
|
| version 1.28, 2001/10/18 13:43:24 | version 1.161, 2009/07/06 08:49:50 |
|---|---|
| Line 1 | Line 1 |
| /** @file | /** @file |
| Parser: @b xdoc parser class. | Parser: @b xdoc parser class. |
| Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) | Copyright (c) 2001-2009 ArtLebedev Group (http://www.artlebedev.com) |
| Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf) | Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) |
| $Id$ | |
| */ | */ |
| #include "classes.h" | |
| #include "pa_config_includes.h" | |
| #ifdef XML | #ifdef XML |
| static const char * const 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_stylesheet_manager.h" | |
| #include "pa_request.h" | #include "pa_request.h" |
| #include "pa_vxdoc.h" | #include "pa_vxdoc.h" |
| #include "pa_xslt_stylesheet_manager.h" | #include "pa_charset.h" |
| #include "pa_stylesheet_connection.h" | |
| #include "pa_vfile.h" | #include "pa_vfile.h" |
| #include "pa_xml_exception.h" | |
| #include "xnode.h" | #include "xnode.h" |
| #include <strstream> | |
| #include <Include/PlatformDefinitions.hpp> | |
| #include <util/PlatformUtils.hpp> | |
| #include <util/TransENameMap.hpp> | |
| #include "XalanTransformer2.hpp" | |
| #include <XalanTransformer/XalanParsedSource.hpp> | |
| # include <XalanTransformer/XalanDefaultParsedSource.hpp> | |
| # include <XalanSourceTree/XalanSourceTreeDocument.hpp> | |
| # include <XalanSourceTree/XalanSourceTreeContentHandler.hpp> | |
| # include <sax2/XMLReaderFactory.hpp> | |
| #include <XMLSupport/FormatterToXML.hpp> | |
| #include <XMLSupport/FormatterToHTML.hpp> | |
| #include <XMLSupport/FormatterToText.hpp> | |
| #include <XMLSupport/FormatterTreeWalker.hpp> | |
| #include <PlatformSupport/XalanFileOutputStream.hpp> | |
| #include <PlatformSupport/XalanOutputStreamPrintWriter.hpp> | |
| #include <PlatformSupport/DOMStringPrintWriter.hpp> | |
| #include <XalanDOM/XalanElement.hpp> | |
| #include <XalanDOM/XalanNodeList.hpp> | |
| #include <XalanDOM/XalanDocumentFragment.hpp> | |
| #include <XalanDOM/XalanCDATASection.hpp> | |
| #include <XalanDOM/XalanEntityReference.hpp> | |
| #include <DOM/DOM_Document.hpp> | |
| #include <XercesParserLiaison/XercesDocumentBridge.hpp> | |
| #include <XalanTransformer/XercesDOMParsedSource.hpp> | |
| // defines | // defines |
| #define XDOC_CLASS_NAME "xdoc" | #define XDOC_CLASS_NAME "xdoc" |
| Line 51 | Line 38 |
| #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html" | #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html" |
| #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text" | #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text" |
| #define XDOC_OUTPUT_ENCODING_OPTION_NAME "encoding" | |
| #define XDOC_OUTPUT_DEFAULT_INDENT 4 | |
| // class | // class |
| class MXdoc : public MXnode { | class MXdoc: public MXnode { |
| public: // VStateless_class | public: // VStateless_class |
| Value *create_new_value(Pool& pool) { return new(pool) VXdoc(pool, 0, false); } | Value* create_new_value(Pool&, HashStringValue*) { return new VXdoc(); } |
| public: | public: |
| MXdoc(Pool& pool); | MXdoc(); |
| public: // Methoded | |
| bool used_directly() { return true; } | |
| void configure_admin(Request& r); | |
| }; | }; |
| // methods | // global variable |
| // Element createElement(in DOMString tagName) raises(DOMException); | DECLARE_CLASS_VAR(xdoc, new MXdoc, 0); |
| static void _createElement(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| const String& tagName=params->as_string(0, "tagName must be string"); | |
| try { | |
| XalanNode *node= | |
| vdoc.get_document(pool, &method_name). | |
| createElement(pool.transcode(tagName)); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | |
| // DocumentFragment createDocumentFragment() | // helper classes |
| static void _createDocumentFragment(Request& r, const String& method_name, MethodParams *) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| XalanNode *node= | |
| vdoc.get_document(pool, &method_name). | |
| createDocumentFragment(); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } | |
| // Text createTextNode(in DOMString data); | class xmlOutputBuffer_auto_ptr { |
| static void _createTextNode(Request& r, const String& method_name, MethodParams *params) { | public: |
| Pool& pool=r.pool(); | explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | : _Owns(_APtr != 0), _Ptr(_APtr) {} |
| xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) | |
| const String& data=params->as_string(0, "data must be string"); | : _Owns(_Y._Owns), _Ptr(_Y.release()) {} |
| xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) | |
| XalanNode *node= | {if (this != &_Y) |
| vdoc.get_document(pool, &method_name). | {if (_Ptr != _Y.get()) |
| createTextNode(pool.transcode(data)); | {if (_Owns && _Ptr) |
| // write out result | xmlOutputBufferClose(_Ptr); |
| VXnode& result=*new(pool) VXnode(pool, node); | _Owns = _Y._Owns; } |
| r.write_no_lang(result); | else if (_Y._Owns) |
| } | _Owns = true; |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xmlOutputBuffer_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xmlOutputBufferClose(_Ptr); } | |
| xmlOutputBuffer& operator*() const | |
| {return (*get()); } | |
| xmlOutputBuffer *operator->() const | |
| {return (get()); } | |
| xmlOutputBuffer *get() const | |
| {return (_Ptr); } | |
| xmlOutputBuffer *release() const | |
| {((xmlOutputBuffer_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xmlOutputBuffer *_Ptr; | |
| }; | |
| class xsltTransformContext_auto_ptr { | |
| public: | |
| explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) | |
| : _Owns(_APtr != 0), _Ptr(_APtr) {} | |
| xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) | |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) | |
| {if (this != &_Y) | |
| {if (_Ptr != _Y.get()) | |
| {if (_Owns && _Ptr) | |
| xsltFreeTransformContext(_Ptr); | |
| _Owns = _Y._Owns; } | |
| else if (_Y._Owns) | |
| _Owns = true; | |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xsltTransformContext_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xsltFreeTransformContext(_Ptr); } | |
| xsltTransformContext& operator*() const | |
| {return (*get()); } | |
| xsltTransformContext *operator->() const | |
| {return (get()); } | |
| xsltTransformContext *get() const | |
| {return (_Ptr); } | |
| xsltTransformContext *release() const | |
| {((xsltTransformContext_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xsltTransformContext *_Ptr; | |
| }; | |
| class xsltStylesheet_auto_ptr { | |
| public: | |
| explicit xsltStylesheet_auto_ptr(xsltStylesheet *_APtr = 0) | |
| : _Owns(_APtr != 0), _Ptr(_APtr) {} | |
| xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y) | |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y) | |
| {if (this != &_Y) | |
| {if (_Ptr != _Y.get()) | |
| {if (_Owns && _Ptr) | |
| xsltFreeStylesheet(_Ptr); | |
| _Owns = _Y._Owns; } | |
| else if (_Y._Owns) | |
| _Owns = true; | |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xsltStylesheet_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xsltFreeStylesheet(_Ptr); } | |
| xsltStylesheet& operator*() const | |
| {return (*get()); } | |
| xsltStylesheet *operator->() const | |
| {return (get()); } | |
| xsltStylesheet *get() const | |
| {return (_Ptr); } | |
| xsltStylesheet *release() const | |
| {((xsltStylesheet_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xsltStylesheet *_Ptr; | |
| }; | |
| // methods | |
| static void writeNode(Request& r, VXdoc& xdoc, xmlNode* node) { | |
| if(!node) | |
| throw Exception(PARSER_RUNTIME, | |
| 0, | |
| "error creating node"); // OOM, bad name, things like that | |
| // Comment createComment(in DOMString data) | |
| static void _createComment(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| const String& data=params->as_string(0, "data must be string"); | |
| XalanNode *node= | |
| vdoc.get_document(pool, &method_name). | |
| createComment(pool.transcode(data)); | |
| // write out result | // write out result |
| VXnode& result=*new(pool) VXnode(pool, node); | r.write_no_lang(xdoc.wrap(*node)); |
| r.write_no_lang(result); | |
| } | } |
| // CDATASection createCDATASection(in DOMString data) raises(DOMException); | struct IdsIteratorInfo { |
| static void _createCDATASection(Request& r, const String& method_name, MethodParams *params) { | xmlChar *elementId; |
| Pool& pool=r.pool(); | xmlNode *element; |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | }; |
| const String& data=params->as_string(0, "data must be string"); | |
| try { | |
| XalanNode *node= | |
| vdoc.get_document(pool, &method_name). | |
| createCDATASection(pool.transcode(data)); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | |
| // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException); | /* Hash Scanner function for pa_getElementById */ |
| static void _createProcessingInstruction(Request& r, const String& method_name, MethodParams *params) { | extern "C" void // switching to calling convetion of libxml |
| Pool& pool=r.pool(); | idsHashScanner (void *payload, void *data, xmlChar *name) { |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | IdsIteratorInfo *priv = (IdsIteratorInfo *)data; |
| const String& target=params->as_string(0, "data must be string"); | if (priv->element == NULL && xmlStrEqual (name, priv->elementId)) |
| const String& data=params->as_string(1, "data must be string"); | { |
| xmlNode* parent=((xmlID *)payload)->attr->parent; | |
| try { | assert(parent); |
| XalanNode *node= | priv->element=parent; |
| vdoc.get_document(pool, &method_name). | |
| createProcessingInstruction(pool.transcode(target), pool.transcode(data)); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | } |
| } | } |
| // Attr createAttribute(in DOMString name) raises(DOMException); | static xmlNode* |
| static void _createAttribute(Request& r, const String& method_name, MethodParams *params) { | pa_getElementById(xmlDoc& xmldoc, xmlChar* elementId) { |
| Pool& pool=r.pool(); | xmlHashTable *ids = (xmlHashTable *)xmldoc.ids; |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | IdsIteratorInfo iter={elementId, NULL}; |
| xmlHashScan(ids, idsHashScanner, &iter); | |
| const String& name=params->as_string(0, "name must be string"); | return iter.element; |
| try { | |
| XalanNode *node= | |
| vdoc.get_document(pool, &method_name). | |
| createAttribute(pool.transcode(name)); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | |
| static void _createEntityReference(Request& r, const String& method_name, MethodParams *params) { | /* |
| Pool& pool=r.pool(); | static xmlNode * |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | pa_importNode (xmlDoc& xmldoc, xmlNode& importedNode, bool deep) { |
| xmlNode *result = NULL; | |
| const String& name=params->as_string(0, "name must be string"); | |
| switch (importedNode.type) { | |
| try { | case XML_ATTRIBUTE_NODE: |
| XalanNode *node= | result = (xmlNode *)xmlCopyProp(xmldoc, (xmlAttr *)importedNode); |
| vdoc.get_document(pool, &method_name). | result.parent=0; // no idea |
| createEntityReference(pool.transcode(name)); | break; |
| // write out result | case XML_DOCUMENT_FRAG_NODE: |
| VXnode& result=*new(pool) VXnode(pool, node); | case XML_ELEMENT_NODE: |
| r.write_no_lang(result); | case XML_ENTITY_REF_NODE: |
| } catch(const XalanDOMException& e) { | case XML_PI_NODE: |
| pool.exception()._throw(pool, &method_name, e); | 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); |
| static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) { | static void _createElement(Request& r, MethodParams& params) { |
| Pool& pool=r.pool(); | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | xmlDoc& xmldoc=vdoc.get_xmldoc(); |
| // tagname | |
| const char *name=params->as_string(0, "name must be string").cstr(String::UL_XML); | |
| VHash& result=*new(pool) VHash(pool); | |
| if(const XalanNodeList *nodes= | |
| vdoc.get_document(pool, &method_name).getElementsByTagName(XalanDOMString(name))) { | |
| for(int i=0; i<nodes->getLength(); i++) { | |
| String& skey=*new(pool) String(pool); | |
| { | |
| char *buf=(char *)pool.malloc(MAX_NUMBER); | |
| snprintf(buf, MAX_NUMBER, "%d", i); | |
| skey << buf; | |
| } | |
| result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i))); | xmlChar* tagName=as_xmlchar(r, params, 0, "tagName must be string"); |
| } | |
| } | |
| // write out result | xmlNode *node=xmlNewDocNode(&xmldoc, NULL, tagName, NULL); |
| r.write_no_lang(result); | writeNode(r, vdoc, node); |
| } | } |
| static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) { | // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException); |
| Pool& pool=r.pool(); | static void _createElementNS(Request& r, MethodParams& params) { |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| // namespaceURI;localName | // namespaceURI;localName |
| const char *namespaceURI=params->as_string(0, "namespaceURI must be string").cstr(String::UL_XML); | xmlChar* namespaceURI=as_xmlchar(r, params, 0, NAMESPACEURI_MUST_BE_STRING); |
| const char *localName=params->as_string(0, "localName must be string").cstr(String::UL_XML); | xmlChar* qualifiedName=as_xmlchar(r, params, 1, "qualifiedName must be string"); |
| VHash& result=*new(pool) VHash(pool); | xmlChar* prefix=0; |
| if(const XalanNodeList *nodes= | xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix); |
| vdoc.get_document(pool, &method_name).getElementsByTagNameNS( | |
| XalanDOMString(namespaceURI), XalanDOMString(localName))) { | |
| for(int i=0; i<nodes->getLength(); i++) { | |
| String& skey=*new(pool) String(pool); | |
| { | |
| char *buf=(char *)pool.malloc(MAX_NUMBER); | |
| snprintf(buf, MAX_NUMBER, "%d", i); | |
| skey << buf; | |
| } | |
| result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i))); | xmlNode *node; |
| } | if(localName) { |
| } | xmlNs& ns=pa_xmlMapNs(xmldoc, namespaceURI, prefix); |
| node=xmlNewDocNode(&xmldoc, &ns, localName, NULL); | |
| } else | |
| node=xmlNewDocNode(&xmldoc, NULL, qualifiedName/*unqualified, actually*/, NULL); | |
| writeNode(r, vdoc, node); | |
| } | |
| // write out result | // DocumentFragment createDocumentFragment() |
| r.write_no_lang(result); | static void _createDocumentFragment(Request& r, MethodParams&) { |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| xmlNode *node=xmlNewDocFragment(&xmldoc); | |
| writeNode(r, vdoc, node); | |
| } | } |
| */ | |
| // Text createTextNode(in DOMString data); | |
| static void _createTextNode(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| class ParserStringXalanOutputStream: public XalanOutputStream { | xmlChar* data=as_xmlchar(r, params, 0, DATA_MUST_BE_STRING); |
| public: | |
| explicit ParserStringXalanOutputStream(String& astring) : fstring(astring) {} | |
| protected: // XalanOutputStream | xmlNode *node=xmlNewDocText(&xmldoc, data); |
| writeNode(r, vdoc, node); | |
| } | |
| virtual void writeData(const char *theBuffer, unsigned long theBufferLength) { | // Comment createComment(in DOMString data) |
| char *copy=(char *)fstring.malloc((size_t)theBufferLength); | static void _createComment(Request& r, MethodParams& params) { |
| memcpy(copy, theBuffer, (size_t)theBufferLength); | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| fstring.APPEND_CLEAN(copy, (size_t)theBufferLength, "xdoc", 0); | |
| } | |
| virtual void doFlush() {} | xmlChar* data=as_xmlchar(r, params, 0, DATA_MUST_BE_STRING); |
| private: | xmlNode *node=xmlNewComment(data); |
| writeNode(r, vdoc, node); | |
| } | |
| String& fstring; | // CDATASection createCDATASection(in DOMString data) raises(DOMException); |
| static void _createCDATASection(Request& r, MethodParams& params) { | |
| }; | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| class XalanSourceTreeParserLiaison2: public XalanSourceTreeParserLiaison { | xmlChar* data=as_xmlchar(r, params, 0, DATA_MUST_BE_STRING); |
| public: | |
| XalanSourceTreeParserLiaison2(XalanSourceTreeDOMSupport& theSupport) : XalanSourceTreeParserLiaison(theSupport), | |
| ferror_handler(new HandlerBase) { | |
| } | |
| XalanDocument* | xmlNode *node=xmlNewCDataBlock(&xmldoc, data, strlen((const char*)data)); |
| parseXMLStream2( | writeNode(r, vdoc, node); |
| const InputSource& inputSource) { | } |
| XalanSourceTreeContentHandler theContentHandler(createXalanSourceTreeDocument()); | |
| XalanAutoPtr<SAX2XMLReader> theReader(XMLReaderFactory::createXMLReader()); | |
| theReader->setContentHandler(&theContentHandler); | |
| theReader->setDTDHandler(&theContentHandler); | |
| theReader->setErrorHandler(ferror_handler); // disable stderr output | |
| theReader->setLexicalHandler(&theContentHandler); | |
| EntityResolver* const theResolver = getEntityResolver(); | |
| if (theResolver != 0) { | |
| theReader->setEntityResolver(theResolver); | |
| } | |
| theReader->parse(inputSource); | |
| return theContentHandler.getDocument(); | |
| } | |
| ~XalanSourceTreeParserLiaison2() { | |
| delete ferror_handler; | |
| } | |
| private: | |
| ErrorHandler *ferror_handler; | |
| }; | |
| class XalanDefaultParsedSource2 : public XalanParsedSource | // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException); |
| { | static void _createProcessingInstruction(Request& r, MethodParams& params) { |
| public: | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| XalanDefaultParsedSource2(const XSLTInputSource& theInputSource); | xmlChar* target=as_xmlchar(r, params, 0, DATA_MUST_BE_STRING); |
| xmlChar* data=as_xmlchar(r, params, 1, DATA_MUST_BE_STRING); | |
| virtual XalanDocument* | xmlNode *node=xmlNewDocPI(&xmldoc, target, data); |
| getDocument() const; | writeNode(r, vdoc, node); |
| } | |
| virtual XalanParsedSourceHelper* | // Attr createAttribute(in DOMString name) raises(DOMException); |
| createHelper() const; | static void _createAttribute(Request& r, MethodParams& params) { |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| private: | xmlChar* name=as_xmlchar(r, params, 0, NAME_MUST_BE_STRING); |
| XalanSourceTreeDOMSupport m_domSupport; | xmlNode *node=(xmlNode*)xmlNewDocProp(&xmldoc, name, 0); |
| writeNode(r, vdoc, node); | |
| } | |
| XalanSourceTreeParserLiaison2 m_parserLiaison2; | // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException); |
| static void _createAttributeNS(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| XalanSourceTreeDocument* const m_parsedSource; | xmlChar* namespaceURI=as_xmlchar(r, params, 0, NAMESPACEURI_MUST_BE_STRING); |
| }; | xmlChar* qualifiedName=as_xmlchar(r, params, 1, NAME_MUST_BE_STRING); |
| XalanDefaultParsedSource2::XalanDefaultParsedSource2(const XSLTInputSource& theInputSource): | xmlChar* prefix=0; |
| XalanParsedSource(), | xmlChar* localName=xmlSplitQName2(qualifiedName, &prefix); |
| m_domSupport(), | |
| m_parserLiaison2(m_domSupport), | |
| m_parsedSource(m_parserLiaison2.mapDocument(m_parserLiaison2.parseXMLStream2(theInputSource))) | |
| { | |
| assert(m_parsedSource != 0); | |
| m_domSupport.setParserLiaison(&m_parserLiaison2); | xmlNode *node; |
| 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); | |
| } | } |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | |
| static void _createEntityReference(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| xmlChar* name=as_xmlchar(r, params, 0, NAME_MUST_BE_STRING); | |
| XalanDocument* | xmlNode *node=xmlNewReference(&xmldoc, name); |
| XalanDefaultParsedSource2::getDocument() const | writeNode(r, vdoc, node); |
| { | |
| return m_parsedSource; | |
| } | } |
| static void _getElementById(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| XalanParsedSourceHelper* | // elementId |
| XalanDefaultParsedSource2::createHelper() const | xmlChar* elementId=as_xmlchar(r, params, 0, "elementID must be string"); |
| { | |
| return new XalanDefaultParsedSourceHelper(m_domSupport); | |
| } | |
| if(xmlNode *node=pa_getElementById(xmldoc, elementId)) { | |
| // write out result | |
| writeNode(r, vdoc, node); | |
| } | |
| } | |
| static void _importNode(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| static void create_optioned_listener( | xmlNode& importedNode= |
| const char *& content_type, const char *& charset, FormatterListener *& listener, | as_node(params, 0, "importedNode must be node"); |
| Pool& pool, | bool deep= |
| const String& method_name, MethodParams *params, int index, Writer& writer) { | params.as_bool(1, "deep must be bool", r); |
| // default encoding from pool | |
| const String *scharset=&pool.get_charset(); | |
| const String *method=0; | |
| XalanDOMString xalan_encoding; | |
| if(params->size()>index) { | xmlNode *node=xmlDocCopyNode(&importedNode, &xmldoc, deep?1: 0); |
| Value& voptions=params->as_no_junction(index, "options must be string"); | // write out result |
| if(voptions.is_defined()) { | writeNode(r, vdoc, node); |
| if(Hash *options=voptions.get_hash()) { | } |
| // $.method[xml|html|text] | /* |
| if(Value *vmethod=static_cast<Value *>(options->get(*new(pool) | GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); |
| String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME)))) | GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); |
| method=&vmethod->as_string(); | */ |
| // $.encoding[windows-1251|...] | static void _create(Request& r, MethodParams& params) { |
| if(Value *vencoding=static_cast<Value *>(options->get(*new(pool) | Charset& source_charset=r.charsets.source(); |
| String(pool, XDOC_OUTPUT_ENCODING_OPTION_NAME)))) { | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| scharset=&vencoding->as_string(); | |
| } | Value& param=params[params.count()-1]; |
| } | xmlDoc* xmldoc; |
| bool set_encoding=false; | |
| 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); | |
| xmldoc=xmlParseMemory(cstr, strlen(cstr)); | |
| //printf("document=0x%p\n", document); | |
| if(!xmldoc || xmlHaveGenericErrors()) | |
| throw XmlException(0); | |
| // must be last action in if, see after if} | |
| } else { // [localName] | |
| if(const String* value = param.get_string()){ | |
| xmlChar* localName=r.transcode(*value); | |
| #if 0 | |
| 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 | |
| xmldoc=xmlNewDoc(0); | |
| if(!xmldoc || xmlHaveGenericErrors()) | |
| throw XmlException(0); | |
| xmlNode* node=xmlNewChild((xmlNode*)xmldoc, NULL, localName, NULL); | |
| if(!node || xmlHaveGenericErrors()) | |
| throw XmlException(0); | |
| set_encoding=true; | |
| // must be last action in if, see after if} | |
| } else { | |
| VFile* vfile=param.as_vfile(String::L_AS_IS); | |
| xmldoc=xmlParseMemory(vfile->value_ptr(), vfile->value_size()); | |
| if(!xmldoc || xmlHaveGenericErrors()) | |
| throw XmlException(0); | |
| } | } |
| } | } |
| // must be first action after if} | |
| xalan_encoding.append(charset=scharset->cstr()); | // replace any previous parsed source |
| if(!method/*default='xml'*/ || *method == XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) { | vdoc.set_xmldoc(r.charsets, *xmldoc); |
| content_type="text/xml"; | |
| listener=new FormatterToXML(writer, | // URI |
| XalanDOMString(), // version | const char* URI_cstr; |
| true, // doIndent | if(params.count()>1) { // absolute(param) |
| XDOC_OUTPUT_DEFAULT_INDENT, // indent | const String& URI=params.as_string(0, "URI must be string"); |
| xalan_encoding // encoding | URI_cstr=r.absolute(URI).cstr(); |
| ); | } else // default = disk path to requested document |
| } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) { | URI_cstr=r.request_info.path_translated; |
| content_type="text/html"; | if(URI_cstr) |
| listener=new FormatterToHTML(writer, | xmldoc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr)); |
| xalan_encoding, // encoding | |
| XalanDOMString(), // mediaType | if(set_encoding) { |
| XalanDOMString(), // doctypeSystem; String to be printed at the top of the document | const char* source_charset_name=source_charset.NAME().cstr(); |
| XalanDOMString(), // doctypePublic | xmldoc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name)); |
| true, // doIndent | } |
| XDOC_OUTPUT_DEFAULT_INDENT // indent | |
| ); | |
| } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT) { | |
| content_type="text/plain"; | |
| listener=new FormatterToText(writer, | |
| xalan_encoding // encoding | |
| ); | |
| } else | |
| PTHROW(0, 0, | |
| method, | |
| XDOC_OUTPUT_METHOD_OPTION_NAME " option is invalid; valid methods are: " | |
| "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "', " | |
| "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "', " | |
| "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "'"); | |
| // never reached | |
| } | } |
| static void _save(Request& r, const String& method_name, MethodParams *params) { | static void _load(Request& r, MethodParams& params) { |
| Pool& pool=r.pool(); | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | |
| // filespec | // filespec |
| const String& file_name=params->as_string(0, "file name must be string"); | const String* uri=¶ms.as_string(0, "URI must be string"); |
| const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC); | const char* uri_cstr; |
| if(uri->pos("://")==STRING_NOT_FOUND) // disk path | |
| uri_cstr=r.absolute(*uri).cstr_taint(String::L_FILE_SPEC); | |
| else // xxx:// | |
| uri_cstr=uri->cstr_taint(String::L_AS_IS); // leave as-is for xmlParseFile to handle | |
| /// @todo!! add SAFE MODE!! | |
| xmlDoc* xmldoc=xmlParseFile(uri_cstr); | |
| if(!xmldoc || xmlHaveGenericErrors()) | |
| throw XmlException(uri); | |
| // node | // must be first action after if} |
| XalanNode& node=vnode.get_node(pool, &method_name); | // replace any previous parsed source |
| vdoc.set_xmldoc(r.charsets, *xmldoc); | |
| try { | |
| XalanFileOutputStream stream(XalanDOMString(filespec, strlen(filespec))); | |
| XalanOutputStreamPrintWriter writer(stream); | |
| const char *content_type, *charset; | |
| FormatterListener *formatterListener; | |
| create_optioned_listener(content_type, charset, formatterListener, | |
| pool, method_name, params, 1, writer); | |
| FormatterTreeWalker treeWalker(*formatterListener); | |
| treeWalker.traverse(&node); // Walk that node and produce the XML... | |
| } catch(const XSLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| static void _string(Request& r, const String& method_name, MethodParams *params) { | static void param_option_over_output_option( |
| Pool& pool=r.pool(); | HashStringValue& param_options, const char* option_name, |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | const String*& output_option) { |
| if(Value* value=param_options.get(String::Body(option_name))) | |
| // node | output_option=&value->as_string(); |
| XalanNode *node=&vdoc.get_document(pool, &method_name);//.getDocumentElement(); | } |
| if(!node) | static void param_option_over_output_option( |
| PTHROW(0, 0, | HashStringValue& param_options, const char* option_name, |
| &method_name, | int& output_option) { |
| "no documentElement"); | if(Value* value=param_options.get(String::Body(option_name))) { |
| const String& s=value->as_string(); | |
| try { | if(s=="yes") |
| String parserString=*new(pool) String(pool); | output_option=1; |
| ParserStringXalanOutputStream stream(parserString); | else if(s=="no") |
| XalanOutputStreamPrintWriter writer(stream); | output_option=0; |
| const char *content_type, *charset; | else |
| FormatterListener *formatterListener; | throw Exception(PARSER_RUNTIME, |
| create_optioned_listener(content_type, charset, formatterListener, | &s, |
| pool, method_name, params, 0, writer); | "%s must be either 'yes' or 'no'", option_name); |
| FormatterTreeWalker treeWalker(*formatterListener); | |
| treeWalker.traverse(node); // Walk that node and produce the XML... | |
| // write out result | |
| r.write_no_lang(parserString); | |
| } catch(const XSLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | } |
| } | } |
| /// @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 /> | |
| */ | |
| static void _file(Request& r, const String& method_name, MethodParams *params) { | // configuring with options from parameter... |
| Pool& pool=r.pool(); | if(params.count()>index) { |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | Value& voptions=params.as_no_junction(index, "options must be string"); |
| if(voptions.is_defined()) { | |
| // node | if(HashStringValue *options=voptions.get_hash()) { |
| XalanNode& node=vnode.get_node(pool, &method_name); | // $.method[xml|html|text] |
| if(Value* vmethod=options->get(String::Body(XDOC_OUTPUT_METHOD_OPTION_NAME))) | |
| try { | oo.method=&vmethod->as_string(); |
| String& parserString=*new(pool) String(pool); | |
| ParserStringXalanOutputStream stream(parserString); | |
| XalanOutputStreamPrintWriter writer(stream); | |
| const char *content_type, *charset; | |
| FormatterListener *formatterListener; | |
| create_optioned_listener(content_type, charset, formatterListener, | |
| pool, method_name, params, 0, writer); | |
| FormatterTreeWalker treeWalker(*formatterListener); | |
| treeWalker.traverse(&node); // Walk that node and produce the XML... | |
| // write out result | // $.version[1.0] |
| VFile& vfile=*new(pool) VFile(pool); | param_option_over_output_option(*options, "version", oo.version); |
| const char *cstr=parserString.cstr(); | // $.encoding[windows-1251|...] |
| String *scontent_type=new(pool) String(pool, content_type); | param_option_over_output_option(*options, "encoding", oo.encoding); |
| Value *vcontent_type; | // $.omit-xml-declaration[yes|no] |
| if(charset) { | param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration); |
| VHash *vhcontent_type=new(pool) VHash(pool); | // $.standalone[yes|no] |
| vhcontent_type->hash().put(*value_name, new(pool) VString(*scontent_type)); | param_option_over_output_option(*options, "standalone", oo.standalone); |
| String *scharset=new(pool) String(pool, charset); | // $.indent[yes|no] |
| vhcontent_type->hash().put(*new(pool) String(pool, "charset"), new(pool) VString(*scharset)); | param_option_over_output_option(*options, "indent", oo.indent); |
| vcontent_type=vhcontent_type; | // $.media-type[text/{html|xml|plain}] |
| } else | param_option_over_output_option(*options, "media-type", oo.mediaType); |
| vcontent_type=new(pool) VString(*scontent_type); | } |
| vfile.set(false/*tainted*/, cstr, strlen(cstr), 0/*file_name*/, vcontent_type); | } |
| r.write_no_lang(vfile); | |
| } catch(const XSLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | } |
| } | |
| static void _set(Request& r, const String& method_name, MethodParams *params) { | // default encoding from pool |
| //_asm int 3; | if(!oo.encoding) |
| Pool& pool=r.pool(); | oo.encoding=new String(r.charsets.source().NAME(), String::L_TAINTED); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | // default method=xml |
| if(!oo.method) | |
| Value& vxml=params->as_junction(0, "xml must be code"); | oo.method=new String(XDOC_OUTPUT_METHOD_OPTION_VALUE_XML); |
| Temp_lang temp_lang(r, String::UL_XML); | // default mediaType = depending on method |
| const String& xml=r.process(vxml).as_string(); | if(!oo.mediaType) { |
| if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) | |
| std::istrstream stream(xml.cstr()); | oo.mediaType=new String("text/xml"); |
| const XalanParsedSource* parsedSource; | else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) |
| oo.mediaType=new String("text/html"); | |
| try { | else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others |
| parsedSource = new XalanDefaultParsedSource2(&stream); | oo.mediaType=new String("text/plain"); |
| } | |
| catch (XSLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (SAXParseException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (SAXException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (XMLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | } |
| // replace any previous parsed source | |
| vdoc.set_parsed_source(*parsedSource); | |
| } | } |
| static void _create(Request& r, const String& method_name, MethodParams *params) { | struct Xdoc2buf_result { |
| //_asm int 3; | char* str; |
| Pool& pool=r.pool(); | size_t length; |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | }; |
| static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc, | |
| MethodParams& params, int index, | |
| VXdoc::Output_options& oo, | |
| const String* file_spec, | |
| bool use_source_charset_to_render_and_client_charset_to_write_to_header=false) { | |
| Xdoc2buf_result result; | |
| prepare_output_options(r, params, index, | |
| oo); | |
| const char* render_encoding; | |
| const char* header_encoding; | |
| if(use_source_charset_to_render_and_client_charset_to_write_to_header) { | |
| render_encoding=r.charsets.source().NAME_CSTR(); | |
| header_encoding=r.charsets.client().NAME_CSTR(); | |
| } else { | |
| header_encoding=render_encoding=oo.encoding->cstr(); | |
| } | |
| xmlCharEncodingHandler *renderer=xmlFindCharEncodingHandler(render_encoding); | |
| if(!renderer) | |
| throw Exception(PARSER_RUNTIME, | |
| 0, | |
| "encoding '%s' not supported", render_encoding); | |
| // UTF-8 renderer contains empty input/output converters, | |
| // which is wrong for xmlOutputBufferCreateIO | |
| // while zero renderer goes perfectly | |
| if(strcmp(render_encoding, "UTF-8")==0) | |
| renderer=0; | |
| xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(renderer)); | |
| xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet()); | |
| if(!stylesheet.get()) | |
| throw Exception(0, | |
| 0, | |
| "xsltNewStylesheet failed"); | |
| #define OOSTRING2STYLE(name) \ | |
| stylesheet->name=oo.name?BAD_CAST xmlMemStrdup((const char*)r.transcode(*oo.name)):0 | |
| #define OOBOOL2STYLE(name) \ | |
| if(oo.name>=0) stylesheet->name=oo.name | |
| OOSTRING2STYLE(method); | |
| OOSTRING2STYLE(encoding); | |
| OOSTRING2STYLE(mediaType); | |
| // OOSTRING2STYLE(doctypeSystem); | |
| // OOSTRING2STYLE(doctypePublic); | |
| OOBOOL2STYLE(indent); | |
| OOSTRING2STYLE(version); | |
| OOBOOL2STYLE(standalone); | |
| OOBOOL2STYLE(omitXmlDeclaration); | |
| xmlDoc& xmldoc=vdoc.get_xmldoc(); | |
| xmldoc.encoding=BAD_CAST xmlMemStrdup(render_encoding); | |
| if(header_encoding) | |
| stylesheet->encoding=BAD_CAST xmlMemStrdup(header_encoding); | |
| if(xsltSaveResultTo(outputBuffer.get(), &xmldoc, stylesheet.get())<0 | |
| || xmlHaveGenericErrors()) | |
| throw XmlException(0); | |
| const String& qualifiedName=params->as_string(0, "qualifiedName must be string"); | // write out result |
| char *gnome_str; size_t gnome_length; | |
| if(outputBuffer->conv) { | |
| gnome_length=outputBuffer->conv->use; | |
| gnome_str=(char *)outputBuffer->conv->content; | |
| } else { | |
| gnome_length=outputBuffer->buffer->use; | |
| gnome_str=(char *)outputBuffer->buffer->content; | |
| } | |
| XalanDocument& document=*new XercesDocumentBridge( | if((result.length=gnome_length)) { |
| DOM_Document::createDocument(), | result.str=pa_strdup(gnome_str, gnome_length); |
| 0, | } else |
| false /*threadSafe*/, | result.str=0; |
| false /*don' buildBridge -- too early, empty document*/); | |
| /// +createXMLDecl ? | if(file_spec) |
| document.appendChild(document.createElement(pool.transcode(qualifiedName))); | file_write(*file_spec, |
| gnome_str, gnome_length, | |
| true/*as_text*/); | |
| return result; | |
| } | |
| static void _file(Request& r, MethodParams& params) { | |
| VXdoc& vdoc=GET_SELF(r, VXdoc); | |
| VXdoc::Output_options oo(vdoc.output_options); | |
| Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0, | |
| oo, | |
| 0/*not to file, to memory*/); | |
| // write out result | |
| r.write_no_lang(String(buf.str)); | |
| // replace any previous document | // write out result |
| vdoc.set_document(document, true/*owns*/); | VFile& vfile=*new VFile; |
| VHash& vhcontent_type=*new VHash; | |
| vhcontent_type.hash().put( | |
| value_name, | |
| new VString(*oo.mediaType)); | |
| vhcontent_type.hash().put( | |
| String::Body("charset"), | |
| new VString(*oo.encoding)); | |
| vfile.set(false/*tainted*/, buf.str?buf.str:""/*to distinguish from stat-ed file*/, buf.length, | |
| 0/*file_name*/, &vhcontent_type); | |
| r.write_no_lang(vfile); | |
| } | } |
| static void _load(Request& r, const String& method_name, MethodParams *params) { | static void _save(Request& r, MethodParams& params) { |
| Pool& pool=r.pool(); | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // filespec | const String& file_spec=r.absolute(params.as_string(0, FILE_NAME_MUST_BE_STRING)); |
| const String& file_name=params->as_string(0, "file name must be string"); | |
| const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC); | |
| const XalanParsedSource* parsedSource; | VXdoc::Output_options oo(vdoc.output_options); |
| try { | xdoc2buf(r, vdoc, params, 1, |
| parsedSource = new XalanDefaultParsedSource2(filespec); | oo, |
| } | &file_spec); |
| catch (XSLException& e) { | } |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (SAXParseException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (SAXException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch (XMLException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| // replace any previous parsed source | static void _string(Request& r, MethodParams& params) { |
| vdoc.set_parsed_source(*parsedSource); | 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*/, | |
| true/*use source charset to render, client charset to put to header*/); | |
| // write out result | |
| r.write_no_lang(String(buf.str, String::L_AS_IS)); | |
| } | } |
| static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning, | #ifndef DOXYGEN |
| void *info) { | struct Add_xslt_param_info { |
| XalanTransformer2& transformer=*static_cast<XalanTransformer2 *>(info); | Request* r; |
| const char *attribute_cstr=aattribute.cstr(); | Array<const xmlChar*>* strings; |
| const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr(); | const xmlChar** current_transform_param; |
| }; | |
| transformer.setStylesheetParam( | #endif |
| XalanDOMString(attribute_cstr), | static void add_xslt_param( |
| XalanDOMString(meaning_cstr)); | HashStringValue::key_type attribute, |
| HashStringValue::value_type meaning, | |
| Add_xslt_param_info* info) { | |
| xmlChar* 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->strings+=s; | |
| } | } |
| /* | |
| static void _transform(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // params | static VXdoc& _transform(Request& r, const String* stylesheet_source, |
| if(params->size()>1) { | VXdoc& vdoc, xsltStylesheetPtr stylesheet, const xmlChar** transform_params) |
| Value& vparams=params->as_no_junction(1, "transform parameters parameter must be string"); | { |
| if(vparams.is_defined()) | xmlDoc& xmldoc=vdoc.get_xmldoc(); |
| if(Hash *params=vparams.get_hash()) | |
| params->for_each(add_xslt_param, &vdoc.transformer()); | |
| else | |
| PTHROW(0, 0, | |
| &method_name, | |
| "transform parameters parameter must be hash"); | |
| } | |
| // source | xsltTransformContext_auto_ptr transformContext( |
| const XalanParsedSource &parsed_source=vdoc.get_parsed_source(pool, &method_name); | xsltNewTransformContext(stylesheet, &xmldoc)); |
| // make params literal | |
| if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext | |
| transformContext->globalVars = xmlHashCreate(20); | |
| xsltQuoteUserParams(transformContext.get(), (const char**)transform_params); | |
| // do transform | |
| xmlDoc *transformed=xsltApplyStylesheetUser( | |
| stylesheet, | |
| &xmldoc, | |
| 0/*already quoted-inserted transform_params*/, | |
| 0/*const char* output*/, | |
| 0/*FILE *profile*/, | |
| transformContext.get()); | |
| if(!transformed || xmlHaveGenericErrors()) | |
| throw XmlException(stylesheet_source); | |
| //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE type, fixing | |
| transformed->type=XML_DOCUMENT_NODE; | |
| // constructing result | |
| VXdoc& result=*new VXdoc(r.charsets, *transformed); | |
| /* grabbing options | |
| <xsl:output | |
| !method = "xml" | "html" | "text" | |
| X| qname-but-not-ncname | |
| !version = nmtoken | |
| !encoding = string | |
| !omit-xml-declaration = "yes" | "no" | |
| !standalone = "yes" | "no" | |
| !doctype-public = string | |
| !doctype-system = string | |
| Xcdata-section-elements = qnames | |
| !indent = "yes" | "no" | |
| !media-type = string /> | |
| */ | |
| VXdoc::Output_options& oo=result.output_options; | |
| // stylesheet | oo.method=stylesheet->method?&r.transcode(stylesheet->method):0; |
| const String& stylesheet_file_name=params->as_string(0, "file name must be string"); | oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0; |
| const String& stylesheet_filespec=r.absolute(stylesheet_file_name); | oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0; |
| //_asm int 3; | oo.indent=stylesheet->indent; |
| Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec); | oo.version=stylesheet->version?&r.transcode(stylesheet->version):0; |
| oo.standalone=stylesheet->standalone; | |
| // target | oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration; |
| XalanDocument* target=vdoc.parser_liaison().createDocument(); | |
| // transform | |
| try { | |
| vdoc.transformer().transform2( | |
| parsed_source, | |
| &connection.stylesheet(true/*nocache* /), | |
| target); | |
| } | |
| catch (XSLException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch (SAXParseException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch (SAXException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch (XMLException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| // write out result | // return |
| VXdoc& result=*new(pool) VXdoc(pool); | return result; |
| result.set_document(*target); | |
| r.write_no_lang(result); | |
| } | } |
| */ | static void _transform(Request& r, MethodParams& params) { |
| static void _transform(Request& r, const String& method_name, MethodParams *params) { | VXdoc& vdoc=GET_SELF(r, VXdoc); |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // params | // params |
| if(params->size()>1) { | Array<const xmlChar*> transform_strings; |
| Value& vparams=params->as_no_junction(1, "transform parameters parameter must be string"); | const xmlChar** transform_params=0; |
| if(vparams.is_defined()) | if(params.count()>1) { |
| if(Hash *params=vparams.get_hash()) | Value& vparams=params.as_no_junction(1, "transform parameters must be hash"); |
| params->for_each(add_xslt_param, &vdoc.transformer()); | if(!vparams.is_string()) |
| else | if(HashStringValue* hash=vparams.get_hash()) { |
| PTHROW(0, 0, | transform_params=new(UseGC) const xmlChar*[hash->count()*2+1]; |
| &method_name, | Add_xslt_param_info info={ |
| &r, | |
| &transform_strings, | |
| transform_params | |
| }; | |
| hash->for_each<Add_xslt_param_info*>(add_xslt_param, &info); | |
| transform_params[hash->count()*2]=0; | |
| } else | |
| throw Exception(PARSER_RUNTIME, | |
| 0, | |
| "transform parameters parameter must be hash"); | "transform parameters parameter must be hash"); |
| } | } |
| // source | VXdoc* result; |
| XalanDocument &xalan_document=vdoc.get_document(pool, &method_name); | if(Value *vxdoc=params[0].as(VXDOC_TYPE, false)) { // stylesheet (xdoc) |
| xmlDoc& stylesheetdoc=static_cast<VXdoc *>(vxdoc)->get_xmldoc(); | |
| // stylesheet | // compile xdoc stylesheet |
| const String& stylesheet_file_name=params->as_string(0, "file name must be string"); | xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(&stylesheetdoc)); |
| const String& stylesheet_filespec=r.absolute(stylesheet_file_name); | if(xmlHaveGenericErrors()) |
| //_asm int 3; | throw XmlException(0); |
| Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec); | if(!stylesheet_ptr.get()) |
| throw Exception("xml", | |
| // target | 0, |
| XalanDocument* target=vdoc.parser_liaison().createDocument(); | "stylesheet failed to compile"); |
| // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor | |
| // transform | // we don't need that |
| try { | stylesheet_ptr->doc=0; |
| vdoc.transformer().transform2( | |
| &xalan_document, | // transform! |
| &connection.stylesheet(true/*nocache*/), | result=&_transform(r, 0, |
| target); | vdoc, stylesheet_ptr.get(), |
| } | transform_params); |
| catch (XSLException& e) { | } else { // stylesheet (file name) |
| connection.close(); | // extablish stylesheet connection |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | const String& stylesheet_filespec= |
| } | r.absolute(params.as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)")); |
| catch (SAXParseException& e) { | Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec); |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | // load and compile file to stylesheet [or get cached if any] |
| } | // transform! |
| catch (SAXException& e) { | result=&_transform(r, &stylesheet_filespec, vdoc, connection->stylesheet(), |
| connection.close(); | transform_params); |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch (XMLException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| connection.close(); | |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | |
| } | } |
| // write out result | // write out result |
| VXdoc& result=*new(pool) VXdoc(pool, target, false/*owns not*/); | r.write_no_lang(*result); |
| r.write_no_lang(result); | |
| } | } |
| static void _getElementById(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // elementId | |
| const String& elementId=params->as_string(0, "elementID must be string"); | |
| if(XalanNode *node= | |
| vdoc.get_document(pool, &method_name).getElementById(pool.transcode(elementId))) { | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } | |
| } | |
| // constructor | // constructor |
| MXdoc::MXdoc(Pool& apool) : MXnode(apool) { | /// @test how to create empty type html? |
| set_name(*NEW String(pool(), XDOC_CLASS_NAME)); | MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, xnode_class) { |
| /// @test how to create empty type html? | |
| /// DOM1 | /// DOM1 |
| // Element createElement(in DOMString tagName) raises(DOMException); | // Element createElement(in DOMString tagName) raises(DOMException); |
| Line 783 MXdoc::MXdoc(Pool& apool) : MXnode(apool | Line 837 MXdoc::MXdoc(Pool& apool) : MXnode(apool |
| add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1); | add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1); |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | // EntityReference createEntityReference(in DOMString name) raises(DOMException); |
| add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1); | add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1); |
| // NodeList getElementsByTagName(in DOMString tagname); | |
| /* | |
| // ^xdoc.getElementsByTagName[tagname] | |
| add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1); | |
| // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes | |
| add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2); | |
| */ | |
| /// DOM2(?) | /// DOM2 |
| // ^xdoc.getElementById[elementId] | // ^xdoc.getElementById[elementId] |
| add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1); | add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1); |
| // Node (in Node importedNode, in boolean deep) raises(DOMException) | |
| add_native_method("importNode", Method::CT_DYNAMIC, _importNode, 2, 2); | |
| // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException); | |
| add_native_method("createAttributeNS", Method::CT_DYNAMIC, _createAttributeNS, 2, 2); | |
| // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException); | |
| add_native_method("createElementNS", Method::CT_DYNAMIC, _createElementNS, 2, 2); | |
| /// parser | /// parser |
| // ^xdoc::create{qualifiedName} | |
| // ^xdoc::create[<some>xml</some>] | |
| // ^xdoc::create[URI][<some>xml</some>] | |
| add_native_method("create", Method::CT_DYNAMIC, _create, 1, 2); | |
| // for backward compatibility with <=v 1.82 2002/01/31 11:51:46 paf | |
| add_native_method("set", Method::CT_DYNAMIC, _create, 1, 1); | |
| // ^xdoc::load[some.xml] | |
| 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] |
| add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2); | add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2); |
| Line 811 MXdoc::MXdoc(Pool& apool) : MXnode(apool | Line 876 MXdoc::MXdoc(Pool& apool) : MXnode(apool |
| // ^xdoc.file[options hash] file with "<doc/>" | // ^xdoc.file[options hash] file with "<doc/>" |
| add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1); | add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1); |
| // ^xdoc::set[<some>xml</some>] | // ^xdoc.transform[stylesheet file_name/xdoc] |
| add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1); | // ^xdoc.transform[stylesheet file_name/xdoc;params hash] |
| // ^xdoc::create{qualifiedName} | |
| add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1); | |
| // ^xdoc::load[some.xml] | |
| add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1); | |
| // ^xdoc.transform[stylesheet file_name] | |
| // ^xdoc.transform[stylesheet file_name;params hash] | |
| add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2); | add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2); |
| } | } |
| void MXdoc::configure_admin(Request& r) { | # else |
| } | |
| // global variable | |
| Methoded *Xdoc_class; | #include "classes.h" |
| // creator | // global variable |
| #endif | DECLARE_CLASS_VAR(xdoc, 0, 0); // fictive |
| Methoded *MXdoc_create(Pool& pool) { | |
| return | |
| #ifdef XML | |
| Xdoc_class=new(pool) MXdoc(pool); | |
| #else | |
| 0 | |
| #endif | #endif |
| ; | |
| } |