|
|
| version 1.28, 2001/10/18 13:43:24 | version 1.77, 2002/01/25 11:33:46 |
|---|---|
| Line 2 | Line 2 |
| Parser: @b xdoc parser class. | Parser: @b xdoc parser class. |
| Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) | Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) |
| Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf) | Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru) |
| $Id$ | $Id$ |
| */ | */ |
| #include "classes.h" | #include "pa_types.h" |
| #ifdef XML | #ifdef XML |
| #include "gdome.h" | |
| #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 "pa_stylesheet_connection.h" | |
| #include "classes.h" | |
| #include "pa_request.h" | #include "pa_request.h" |
| #include "pa_vxdoc.h" | #include "pa_vxdoc.h" |
| #include "pa_xslt_stylesheet_manager.h" | #include "pa_charset.h" |
| #include "pa_stylesheet_connection.h" | |
| #include "pa_vfile.h" | #include "pa_vfile.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 |
| Line 51 | Line 37 |
| #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& pool) { return new(pool) VXdoc(pool, 0); } |
| public: | public: |
| MXdoc(Pool& pool); | MXdoc(Pool& pool); |
| Line 69 public: // Methoded | Line 51 public: // Methoded |
| void configure_admin(Request& r); | void configure_admin(Request& r); |
| }; | }; |
| // helper classes | |
| class xmlOutputBuffer_auto_ptr { | |
| public: | |
| explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) | |
| : _Owns(_APtr != 0), _Ptr(_APtr) {} | |
| xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) | |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) | |
| {if (this != &_Y) | |
| {if (_Ptr != _Y.get()) | |
| {if (_Owns && _Ptr) | |
| xmlOutputBufferClose(_Ptr); | |
| _Owns = _Y._Owns; } | |
| else if (_Y._Owns) | |
| _Owns = true; | |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xmlOutputBuffer_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xmlOutputBufferClose(_Ptr); } | |
| xmlOutputBuffer& operator*() const | |
| {return (*get()); } | |
| xmlOutputBuffer *operator->() const | |
| {return (get()); } | |
| xmlOutputBuffer *get() const | |
| {return (_Ptr); } | |
| xmlOutputBuffer *release() const | |
| {((xmlOutputBuffer_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xmlOutputBuffer *_Ptr; | |
| }; | |
| class xsltTransformContext_auto_ptr { | |
| public: | |
| explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) | |
| : _Owns(_APtr != 0), _Ptr(_APtr) {} | |
| xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) | |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) | |
| {if (this != &_Y) | |
| {if (_Ptr != _Y.get()) | |
| {if (_Owns && _Ptr) | |
| xsltFreeTransformContext(_Ptr); | |
| _Owns = _Y._Owns; } | |
| else if (_Y._Owns) | |
| _Owns = true; | |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xsltTransformContext_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xsltFreeTransformContext(_Ptr); } | |
| xsltTransformContext& operator*() const | |
| {return (*get()); } | |
| xsltTransformContext *operator->() const | |
| {return (get()); } | |
| xsltTransformContext *get() const | |
| {return (_Ptr); } | |
| xsltTransformContext *release() const | |
| {((xsltTransformContext_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xsltTransformContext *_Ptr; | |
| }; | |
| class xsltStylesheet_auto_ptr { | |
| public: | |
| explicit xsltStylesheet_auto_ptr(xsltStylesheet *_APtr = 0) | |
| : _Owns(_APtr != 0), _Ptr(_APtr) {} | |
| xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y) | |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y) | |
| {if (this != &_Y) | |
| {if (_Ptr != _Y.get()) | |
| {if (_Owns && _Ptr) | |
| xsltFreeStylesheet(_Ptr); | |
| _Owns = _Y._Owns; } | |
| else if (_Y._Owns) | |
| _Owns = true; | |
| _Ptr = _Y.release(); } | |
| return (*this); } | |
| ~xsltStylesheet_auto_ptr() | |
| {if (_Owns && _Ptr) | |
| xsltFreeStylesheet(_Ptr); } | |
| xsltStylesheet& operator*() const | |
| {return (*get()); } | |
| xsltStylesheet *operator->() const | |
| {return (get()); } | |
| xsltStylesheet *get() const | |
| {return (_Ptr); } | |
| xsltStylesheet *release() const | |
| {((xsltStylesheet_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | |
| bool _Owns; | |
| xsltStylesheet *_Ptr; | |
| }; | |
| // methods | // methods |
| static void writeNode(Request& r, const String& method_name, GdomeNode *node, | |
| GdomeException exc) { | |
| if(!node || exc) | |
| throw Exception(0, 0, | |
| &method_name, | |
| exc); | |
| Pool& pool=r.pool(); | |
| // write out result | |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } | |
| // Element createElement(in DOMString tagName) raises(DOMException); | // Element createElement(in DOMString tagName) raises(DOMException); |
| static void _createElement(Request& r, const String& method_name, MethodParams *params) { | static void _createElement(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| Line 78 static void _createElement(Request& r, c | Line 175 static void _createElement(Request& r, c |
| const String& tagName=params->as_string(0, "tagName must be string"); | const String& tagName=params->as_string(0, "tagName must be string"); |
| try { | GdomeException exc; |
| XalanNode *node= | GdomeNode *node= |
| vdoc.get_document(pool, &method_name). | (GdomeNode *)gdome_doc_createElement(vdoc.get_document(&method_name), |
| createElement(pool.transcode(tagName)); | pool.transcode(tagName).get(), |
| // write out result | &exc); |
| VXnode& result=*new(pool) VXnode(pool, node); | writeNode(r, method_name, node, exc); |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| // DocumentFragment createDocumentFragment() | // DocumentFragment createDocumentFragment() |
| Line 95 static void _createDocumentFragment(Requ | Line 188 static void _createDocumentFragment(Requ |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| XalanNode *node= | GdomeException exc; |
| vdoc.get_document(pool, &method_name). | GdomeNode *node= |
| createDocumentFragment(); | (GdomeNode *)gdome_doc_createDocumentFragment( |
| // write out result | vdoc.get_document(&method_name), |
| VXnode& result=*new(pool) VXnode(pool, node); | &exc); |
| r.write_no_lang(result); | writeNode(r, method_name, node, exc); |
| } | } |
| // Text createTextNode(in DOMString data); | // Text createTextNode(in DOMString data); |
| Line 110 static void _createTextNode(Request& r, | Line 203 static void _createTextNode(Request& r, |
| const String& data=params->as_string(0, "data must be string"); | const String& data=params->as_string(0, "data must be string"); |
| XalanNode *node= | GdomeException exc; |
| vdoc.get_document(pool, &method_name). | GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode( |
| createTextNode(pool.transcode(data)); | vdoc.get_document(&method_name), |
| // write out result | pool.transcode(data).get(), |
| VXnode& result=*new(pool) VXnode(pool, node); | &exc); |
| r.write_no_lang(result); | writeNode(r, method_name, node, exc); |
| } | } |
| // Comment createComment(in DOMString data) | // Comment createComment(in DOMString data) |
| Line 125 static void _createComment(Request& r, c | Line 218 static void _createComment(Request& r, c |
| const String& data=params->as_string(0, "data must be string"); | const String& data=params->as_string(0, "data must be string"); |
| XalanNode *node= | GdomeException exc; |
| vdoc.get_document(pool, &method_name). | GdomeNode *node=(GdomeNode *)gdome_doc_createComment( |
| createComment(pool.transcode(data)); | vdoc.get_document(&method_name), |
| // write out result | pool.transcode(data).get(), |
| VXnode& result=*new(pool) VXnode(pool, node); | &exc); |
| r.write_no_lang(result); | writeNode(r, method_name, node, exc); |
| } | } |
| // CDATASection createCDATASection(in DOMString data) raises(DOMException); | // CDATASection createCDATASection(in DOMString data) raises(DOMException); |
| Line 140 static void _createCDATASection(Request& | Line 233 static void _createCDATASection(Request& |
| const String& data=params->as_string(0, "data must be string"); | const String& data=params->as_string(0, "data must be string"); |
| try { | GdomeException exc; |
| XalanNode *node= | GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection( |
| vdoc.get_document(pool, &method_name). | vdoc.get_document(&method_name), |
| createCDATASection(pool.transcode(data)); | pool.transcode(data).get(), |
| // write out result | &exc); |
| VXnode& result=*new(pool) VXnode(pool, node); | writeNode(r, method_name, node, exc); |
| 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); | // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException); |
| Line 160 static void _createProcessingInstruction | Line 249 static void _createProcessingInstruction |
| const String& target=params->as_string(0, "data must be string"); | const String& target=params->as_string(0, "data must be string"); |
| const String& data=params->as_string(1, "data must be string"); | const String& data=params->as_string(1, "data must be string"); |
| try { | GdomeException exc; |
| XalanNode *node= | GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction( |
| vdoc.get_document(pool, &method_name). | vdoc.get_document(&method_name), |
| createProcessingInstruction(pool.transcode(target), pool.transcode(data)); | pool.transcode(target).get(), |
| // write out result | pool.transcode(data).get(), |
| VXnode& result=*new(pool) VXnode(pool, node); | &exc); |
| r.write_no_lang(result); | writeNode(r, method_name, node, exc); |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| // Attr createAttribute(in DOMString name) raises(DOMException); | // Attr createAttribute(in DOMString name) raises(DOMException); |
| Line 179 static void _createAttribute(Request& r, | Line 265 static void _createAttribute(Request& r, |
| const String& name=params->as_string(0, "name must be string"); | const String& name=params->as_string(0, "name must be string"); |
| try { | GdomeException exc; |
| XalanNode *node= | GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute( |
| vdoc.get_document(pool, &method_name). | vdoc.get_document(&method_name), |
| createAttribute(pool.transcode(name)); | pool.transcode(name).get(), |
| // write out result | &exc); |
| VXnode& result=*new(pool) VXnode(pool, node); | writeNode(r, method_name, node, exc); |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | // EntityReference createEntityReference(in DOMString name) raises(DOMException); |
| static void _createEntityReference(Request& r, const String& method_name, MethodParams *params) { | static void _createEntityReference(Request& r, const String& method_name, MethodParams *params) { |
| Line 197 static void _createEntityReference(Reque | Line 279 static void _createEntityReference(Reque |
| const String& name=params->as_string(0, "name must be string"); | const String& name=params->as_string(0, "name must be string"); |
| try { | GdomeException exc; |
| XalanNode *node= | GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference( |
| vdoc.get_document(pool, &method_name). | vdoc.get_document(&method_name), |
| createEntityReference(pool.transcode(name)); | pool.transcode(name).get(), |
| // write out result | &exc); |
| VXnode& result=*new(pool) VXnode(pool, node); | writeNode(r, method_name, node, exc); |
| r.write_no_lang(result); | |
| } catch(const XalanDOMException& e) { | |
| pool.exception()._throw(pool, &method_name, e); | |
| } | |
| } | } |
| /* | |
| static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) { | static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // tagname | const String& name=params->as_string(0, "name must be string"); |
| const char *name=params->as_string(0, "name must be string").cstr(String::UL_XML); | |
| GdomeException exc; | |
| VHash& result=*new(pool) VHash(pool); | VHash& result=*new(pool) VHash(pool); |
| if(const XalanNodeList *nodes= | if(GdomeNodeList *nodes= |
| vdoc.get_document(pool, &method_name).getElementsByTagName(XalanDOMString(name))) { | gdome_doc_getElementsByTagName( |
| for(int i=0; i<nodes->getLength(); i++) { | vdoc.get_document(&method_name), |
| pool.transcode(name).get(), | |
| &exc)) { | |
| gulong length=gdome_nl_length(nodes, &exc); | |
| for(gulong i=0; i<length; i++) { | |
| String& skey=*new(pool) String(pool); | String& skey=*new(pool) String(pool); |
| { | { |
| char *buf=(char *)pool.malloc(MAX_NUMBER); | char *buf=(char *)pool.malloc(MAX_NUMBER); |
| Line 228 static void _getElementsByTagName(Reques | Line 309 static void _getElementsByTagName(Reques |
| skey << buf; | skey << buf; |
| } | } |
| result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i))); | result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc))); |
| } | } |
| } | } |
| Line 241 static void _getElementsByTagNameNS(Requ | Line 322 static void _getElementsByTagNameNS(Requ |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // namespaceURI;localName | // namespaceURI;localName |
| const char *namespaceURI=params->as_string(0, "namespaceURI must be string").cstr(String::UL_XML); | const String& namespaceURI=params->as_string(0, "namespaceURI must be string"); |
| const char *localName=params->as_string(0, "localName must be string").cstr(String::UL_XML); | const String& localName=params->as_string(0, "localName must be string"); |
| GdomeException exc; | |
| VHash& result=*new(pool) VHash(pool); | VHash& result=*new(pool) VHash(pool); |
| if(const XalanNodeList *nodes= | if(GdomeNodeList *nodes= |
| vdoc.get_document(pool, &method_name).getElementsByTagNameNS( | gdome_doc_getElementsByTagNameNS( |
| XalanDOMString(namespaceURI), XalanDOMString(localName))) { | vdoc.get_document(&method_name), |
| for(int i=0; i<nodes->getLength(); i++) { | pool.transcode(namespaceURI).get(), |
| pool.transcode(localName).get(), | |
| &exc)) { | |
| gulong length=gdome_nl_length(nodes, &exc); | |
| for(gulong i=0; i<length; i++) { | |
| String& skey=*new(pool) String(pool); | String& skey=*new(pool) String(pool); |
| { | { |
| char *buf=(char *)pool.malloc(MAX_NUMBER); | char *buf=(char *)pool.malloc(MAX_NUMBER); |
| Line 256 static void _getElementsByTagNameNS(Requ | Line 342 static void _getElementsByTagNameNS(Requ |
| skey << buf; | skey << buf; |
| } | } |
| result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i))); | result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc))); |
| } | } |
| } | } |
| // write out result | // write out result |
| r.write_no_lang(result); | r.write_no_lang(result); |
| } | } |
| */ | |
| class ParserStringXalanOutputStream: public XalanOutputStream { | static void _getElementById(Request& r, const String& method_name, MethodParams *params) { |
| public: | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| explicit ParserStringXalanOutputStream(String& astring) : fstring(astring) {} | |
| protected: // XalanOutputStream | |
| virtual void writeData(const char *theBuffer, unsigned long theBufferLength) { | |
| char *copy=(char *)fstring.malloc((size_t)theBufferLength); | |
| memcpy(copy, theBuffer, (size_t)theBufferLength); | |
| fstring.APPEND_CLEAN(copy, (size_t)theBufferLength, "xdoc", 0); | |
| } | |
| virtual void doFlush() {} | |
| private: | |
| String& fstring; | |
| }; | |
| class XalanSourceTreeParserLiaison2: public XalanSourceTreeParserLiaison { | // elementId |
| public: | const String& elementId=params->as_string(0, "elementID must be string"); |
| XalanSourceTreeParserLiaison2(XalanSourceTreeDOMSupport& theSupport) : XalanSourceTreeParserLiaison(theSupport), | |
| ferror_handler(new HandlerBase) { | |
| } | |
| XalanDocument* | GdomeException exc; |
| parseXMLStream2( | if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById( |
| const InputSource& inputSource) { | vdoc.get_document(&method_name), |
| XalanSourceTreeContentHandler theContentHandler(createXalanSourceTreeDocument()); | pool.transcode(elementId).get(), |
| XalanAutoPtr<SAX2XMLReader> theReader(XMLReaderFactory::createXMLReader()); | &exc)) { |
| theReader->setContentHandler(&theContentHandler); | // write out result |
| theReader->setDTDHandler(&theContentHandler); | VXnode& result=*new(pool) VXnode(pool, node); |
| theReader->setErrorHandler(ferror_handler); // disable stderr output | r.write_no_lang(result); |
| theReader->setLexicalHandler(&theContentHandler); | } else if(exc || xmlHaveGenericErrors()) |
| EntityResolver* const theResolver = getEntityResolver(); | throw Exception(0, 0, |
| if (theResolver != 0) { | &method_name, |
| theReader->setEntityResolver(theResolver); | exc); |
| } | } |
| theReader->parse(inputSource); | /* |
| return theContentHandler.getDocument(); | GdomeNode *gdome_doc_importNode (GdomeDocument *self, GdomeNode *importedNode, GdomeBoolean deep, GdomeException *exc); |
| } | GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); |
| GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); | |
| ~XalanSourceTreeParserLiaison2() { | */ |
| delete ferror_handler; | |
| } | |
| private: | |
| ErrorHandler *ferror_handler; | |
| }; | |
| class XalanDefaultParsedSource2 : public XalanParsedSource | |
| { | |
| public: | |
| XalanDefaultParsedSource2(const XSLTInputSource& theInputSource); | static void _create(Request& r, const String& method_name, MethodParams *params) { |
| //_asm int 3; | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| virtual XalanDocument* | const String& qualifiedName=params->as_string(0, "qualifiedName must be string"); |
| getDocument() const; | |
| virtual XalanParsedSourceHelper* | GdomeException exc; |
| createHelper() const; | /* |
| GdomeDocumentType *documentType=gdome_di_createDocumentType ( | |
| docimpl, | |
| pool.transcode(qualifiedName), | |
| 0/*publicId* /, | |
| 0/*systemId* /, | |
| &exc); | |
| if(!documentType || exc || xmlHaveGenericErrors()) | |
| throw Exception(0, 0, | |
| &method_name, | |
| exc); | |
| */ | |
| GdomeDocument *document=gdome_di_createDocument (domimpl, | |
| 0/*namespaceURI*/, | |
| pool.transcode(qualifiedName).get(), | |
| 0/*doctype*/, | |
| &exc); | |
| if(!document || exc || xmlHaveGenericErrors()) | |
| throw Exception(0, 0, | |
| &method_name, | |
| exc); | |
| private: | /// +xalan createXMLDecl ? |
| XalanSourceTreeDOMSupport m_domSupport; | // replace any previous parsed source |
| vdoc.set_document(document); | |
| } | |
| XalanSourceTreeParserLiaison2 m_parserLiaison2; | static void _set(Request& r, const String& method_name, MethodParams *params) { |
| // _asm int 3; | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| XalanSourceTreeDocument* const m_parsedSource; | Value& vxml=params->as_junction(0, "xml must be code"); |
| }; | Temp_lang temp_lang(r, String::UL_XML); |
| const String& xml=r.process(vxml).as_string(); | |
| XalanDefaultParsedSource2::XalanDefaultParsedSource2(const XSLTInputSource& theInputSource): | GdomeDocument *document=(GdomeDocument *) |
| XalanParsedSource(), | gdome_xml_n_mkref((xmlNode *)xmlParseMemory( |
| m_domSupport(), | xml.cstr(String::UL_AS_IS), xml.size() |
| m_parserLiaison2(m_domSupport), | )); |
| m_parsedSource(m_parserLiaison2.mapDocument(m_parserLiaison2.parseXMLStream2(theInputSource))) | if(!document || xmlHaveGenericErrors()) { |
| { | GdomeException exc=0; |
| assert(m_parsedSource != 0); | throw Exception(0, 0, |
| &method_name, | |
| exc); | |
| } | |
| m_domSupport.setParserLiaison(&m_parserLiaison2); | // replace any previous parsed source |
| vdoc.set_document(document); | |
| } | } |
| static void _load(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // filespec | |
| const String& file_name=params->as_string(0, "uri must be string"); | |
| const String& uri=r.absolute(file_name); | |
| GdomeDocument *document=(GdomeDocument *) | |
| gdome_xml_n_mkref((xmlNode *)xmlParseFile(uri.cstr())); | |
| if(!document || xmlHaveGenericErrors()) { | |
| GdomeException exc=0; | |
| throw Exception(0, 0, | |
| &uri, | |
| exc); | |
| } | |
| XalanDocument* | // replace any previous parsed source |
| XalanDefaultParsedSource2::getDocument() const | vdoc.set_document(document); |
| { | |
| return m_parsedSource; | |
| } | } |
| static void param_option_over_output_option(Pool& pool, | |
| Hash *param_options, const char *option_name, | |
| XalanParsedSourceHelper* | const String *& output_option) { |
| XalanDefaultParsedSource2::createHelper() const | if(Value *value=static_cast<Value *>(param_options->get(*new(pool) String(pool, |
| { | option_name)))) |
| return new XalanDefaultParsedSourceHelper(m_domSupport); | output_option=&value->as_string(); |
| } | |
| static void param_option_over_output_option(Pool& pool, | |
| Hash *param_options, const char *option_name, | |
| bool& output_option) { | |
| if(Value *value=static_cast<Value *>(param_options->get(*new(pool) | |
| String(pool, option_name)))) { | |
| const String& s=value->as_string(); | |
| if(s=="yes") | |
| output_option=true; | |
| else if(s=="no") | |
| output_option=false; | |
| else | |
| throw Exception(0, 0, | |
| &s, | |
| "%s must be either 'yes' or 'no'", option_name); | |
| } | |
| } | } |
| static void prepare_output_options( | |
| Pool& pool, 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... | |
| static void create_optioned_listener( | |
| const char *& content_type, const char *& charset, FormatterListener *& listener, | |
| Pool& pool, | |
| const String& method_name, MethodParams *params, int index, Writer& writer) { | |
| // default encoding from pool | |
| const String *scharset=&pool.get_charset(); | |
| const String *method=0; | |
| XalanDOMString xalan_encoding; | |
| if(params->size()>index) { | if(params->size()>index) { |
| Value& voptions=params->as_no_junction(index, "options must be string"); | Value& voptions=params->as_no_junction(index, "options must be string"); |
| if(voptions.is_defined()) { | if(voptions.is_defined()) { |
| if(Hash *options=voptions.get_hash()) { | if(Hash *options=voptions.get_hash(&method_name)) { |
| // $.method[xml|html|text] | // $.method[xml|html|text] |
| if(Value *vmethod=static_cast<Value *>(options->get(*new(pool) | if(Value *vmethod=static_cast<Value *>(options->get(*new(pool) |
| String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME)))) | String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME)))) |
| method=&vmethod->as_string(); | oo.method=&vmethod->as_string(); |
| // $.version[1.0] | |
| param_option_over_output_option(pool, options, "version", oo.version); | |
| // $.encoding[windows-1251|...] | // $.encoding[windows-1251|...] |
| if(Value *vencoding=static_cast<Value *>(options->get(*new(pool) | param_option_over_output_option(pool, options, "encoding", oo.encoding); |
| String(pool, XDOC_OUTPUT_ENCODING_OPTION_NAME)))) { | // $.omit-xml-declaration[yes|no] |
| scharset=&vencoding->as_string(); | 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); | |
| } | } |
| } | } |
| } | } |
| xalan_encoding.append(charset=scharset->cstr()); | // default encoding from pool |
| if(!method/*default='xml'*/ || *method == XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) { | if(!oo.encoding) |
| content_type="text/xml"; | oo.encoding=&pool.get_source_charset().name(); |
| listener=new FormatterToXML(writer, | // default method=xml |
| XalanDOMString(), // version | if(!oo.method) |
| true, // doIndent | oo.method=new(pool) String(pool, XDOC_OUTPUT_METHOD_OPTION_VALUE_XML); |
| XDOC_OUTPUT_DEFAULT_INDENT, // indent | // default mediaType = depending on method |
| xalan_encoding // encoding | if(!oo.mediaType) { |
| ); | if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) |
| } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) { | oo.mediaType=new(pool) String(pool, "text/xml"); |
| content_type="text/html"; | else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) |
| listener=new FormatterToHTML(writer, | oo.mediaType=new(pool) String(pool, "text/html"); |
| xalan_encoding, // encoding | else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others |
| XalanDOMString(), // mediaType | oo.mediaType=new(pool) String(pool, "text/plain"); |
| XalanDOMString(), // doctypeSystem; String to be printed at the top of the document | |
| XalanDOMString(), // doctypePublic | |
| 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) { | |
| Pool& pool=r.pool(); | |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | |
| // filespec | |
| 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); | |
| // node | |
| XalanNode& node=vnode.get_node(pool, &method_name); | |
| 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 xdoc2buf(Pool& pool, VXdoc& vdoc, |
| Pool& pool=r.pool(); | const String& method_name, MethodParams *params, int index, |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc::Output_options& oo, |
| const String *file_spec, | |
| // node | char **parser_buf, size_t *parser_size) { |
| XalanNode *node=&vdoc.get_document(pool, &method_name);//.getDocumentElement(); | prepare_output_options(pool, method_name, params, index, |
| if(!node) | oo); |
| PTHROW(0, 0, | |
| const char *encoding_cstr=oo.encoding->cstr(); | |
| xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr); | |
| if(!encoder) | |
| throw Exception(0, 0, | |
| &method_name, | &method_name, |
| "no documentElement"); | "encoding '%s' not supported", encoding_cstr); |
| // UTF-8 encoder contains empty input/output converters, | |
| try { | // which is wrong for xmlOutputBufferCreateIO |
| String parserString=*new(pool) String(pool); | // while zero encoder goes perfectly |
| ParserStringXalanOutputStream stream(parserString); | if(encoder && strcmp(encoder->name, "UTF-8")==0) |
| XalanOutputStreamPrintWriter writer(stream); | encoder=0; |
| const char *content_type, *charset; | |
| FormatterListener *formatterListener; | xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder)); |
| create_optioned_listener(content_type, charset, formatterListener, | |
| pool, method_name, params, 0, writer); | xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet()); |
| FormatterTreeWalker treeWalker(*formatterListener); | if(!stylesheet.get()) |
| treeWalker.traverse(node); // Walk that node and produce the XML... | throw Exception(0, 0, |
| &method_name, | |
| "xsltNewStylesheet failed"); | |
| // write out result | #define OOS2STYLE(name) \ |
| r.write_no_lang(parserString); | stylesheet->name=oo.name?BAD_CAST g_strdup(pool.transcode(*oo.name)->str):0 |
| } catch(const XSLException& e) { | #define OOE2STYLE(name) \ |
| pool.exception()._throw(pool, &method_name, e); | stylesheet->name=oo.name |
| OOS2STYLE(method); | |
| OOS2STYLE(encoding); | |
| OOS2STYLE(mediaType); | |
| OOS2STYLE(doctypeSystem); | |
| OOS2STYLE(doctypePublic); | |
| OOE2STYLE(indent); | |
| OOS2STYLE(version); | |
| OOE2STYLE(standalone); | |
| OOE2STYLE(omitXmlDeclaration); | |
| xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name)); | |
| if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) { | |
| GdomeException exc=0; | |
| throw Exception(0, 0, | |
| &method_name, | |
| exc); | |
| } | } |
| } | |
| static void _file(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | |
| // node | |
| XalanNode& node=vnode.get_node(pool, &method_name); | |
| try { | // write out result |
| String& parserString=*new(pool) String(pool); | char *gnome_buf; size_t gnome_size; |
| ParserStringXalanOutputStream stream(parserString); | if(outputBuffer->conv) { |
| XalanOutputStreamPrintWriter writer(stream); | gnome_size=outputBuffer->conv->use; |
| const char *content_type, *charset; | gnome_buf=(char *)outputBuffer->conv->content; |
| FormatterListener *formatterListener; | } else { |
| create_optioned_listener(content_type, charset, formatterListener, | gnome_size=outputBuffer->buffer->use; |
| pool, method_name, params, 0, writer); | gnome_buf=(char *)outputBuffer->buffer->content; |
| FormatterTreeWalker treeWalker(*formatterListener); | } |
| treeWalker.traverse(&node); // Walk that node and produce the XML... | if(file_spec) |
| file_write( | |
| // write out result | *file_spec, |
| VFile& vfile=*new(pool) VFile(pool); | gnome_buf, gnome_size, |
| const char *cstr=parserString.cstr(); | true/*as_text*/); |
| String *scontent_type=new(pool) String(pool, content_type); | else if(*parser_size=gnome_size) { |
| Value *vcontent_type; | *parser_buf=(char *)pool.malloc(gnome_size); |
| if(charset) { | memcpy(*parser_buf, gnome_buf, gnome_size); |
| VHash *vhcontent_type=new(pool) VHash(pool); | } else |
| vhcontent_type->hash().put(*value_name, new(pool) VString(*scontent_type)); | *parser_buf=0; |
| String *scharset=new(pool) String(pool, charset); | |
| vhcontent_type->hash().put(*new(pool) String(pool, "charset"), new(pool) VString(*scharset)); | |
| vcontent_type=vhcontent_type; | |
| } else | |
| 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) { | static void _file(Request& r, const String& method_name, MethodParams *params) { |
| //_asm int 3; | |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| VXdoc::Output_options oo(vdoc.output_options); | |
| char *buf; size_t buf_size; | |
| xdoc2buf(pool, vdoc, method_name, params, 0, | |
| oo, | |
| 0/*not to file, to memory*/, | |
| &buf, &buf_size); | |
| // write out result | |
| r.write_no_lang(*new(pool) String(pool, buf, buf_size)); | |
| Value& vxml=params->as_junction(0, "xml must be code"); | // write out result |
| Temp_lang temp_lang(r, String::UL_XML); | VFile& vfile=*new(pool) VFile(pool); |
| const String& xml=r.process(vxml).as_string(); | Value *vcontent_type; |
| VHash *vhcontent_type=new(pool) VHash(pool); | |
| std::istrstream stream(xml.cstr()); | vhcontent_type->hash(&method_name).put( |
| const XalanParsedSource* parsedSource; | *value_name, |
| new(pool) VString(*oo.mediaType)); | |
| try { | vhcontent_type->hash(&method_name).put( |
| parsedSource = new XalanDefaultParsedSource2(&stream); | *new(pool) String(pool, "charset"), |
| } | new(pool) VString(*oo.encoding)); |
| catch (XSLException& e) { | vcontent_type=vhcontent_type; |
| pool.exception()._throw(pool, &method_name, e); | |
| } | vfile.set(false/*tainted*/, buf, buf_size, 0/*file_name*/, vcontent_type); |
| catch (SAXParseException& e) { | r.write_no_lang(vfile); |
| 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) { | static void _save(Request& r, const String& method_name, MethodParams *params) { |
| //_asm int 3; | |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| const String& qualifiedName=params->as_string(0, "qualifiedName must be string"); | const String& file_spec=r.absolute(params->as_string(0, "file name must be string")); |
| XalanDocument& document=*new XercesDocumentBridge( | VXdoc::Output_options oo(vdoc.output_options); |
| DOM_Document::createDocument(), | xdoc2buf(pool, vdoc, method_name, params, 1, |
| 0, | oo, |
| false /*threadSafe*/, | &file_spec, |
| false /*don' buildBridge -- too early, empty document*/); | 0, 0); |
| /// +createXMLDecl ? | |
| document.appendChild(document.createElement(pool.transcode(qualifiedName))); | |
| // replace any previous document | |
| vdoc.set_document(document, true/*owns*/); | |
| } | } |
| static void _load(Request& r, const String& method_name, MethodParams *params) { | static void _string(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| VXdoc::Output_options oo(vdoc.output_options); | |
| // filespec | char *buf; size_t buf_size; |
| const String& file_name=params->as_string(0, "file name must be string"); | xdoc2buf(pool, vdoc, method_name, params, 0, |
| const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC); | oo, |
| 0/*not to file, to memory*/, | |
| const XalanParsedSource* parsedSource; | &buf, &buf_size); |
| try { | // write out result |
| parsedSource = new XalanDefaultParsedSource2(filespec); | r.write_no_lang(*new(pool) String(pool, buf, buf_size)); |
| } | |
| 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 add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning, | static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning, |
| void *info) { | void *info) { |
| XalanTransformer2& transformer=*static_cast<XalanTransformer2 *>(info); | Value *meaning=static_cast<Value *>(ameaning); |
| const char *attribute_cstr=aattribute.cstr(); | Pool& pool=meaning->pool(); |
| const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr(); | const char **transform_params=(const char **)info; |
| *transform_params++=pool.transcode(aattribute)->str; | |
| transformer.setStylesheetParam( | *transform_params++=pool.transcode(meaning->as_string())->str; |
| XalanDOMString(attribute_cstr), | |
| XalanDOMString(meaning_cstr)); | |
| } | } |
| /* | |
| static void _transform(Request& r, const String& method_name, MethodParams *params) { | static void _transform(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // params | |
| if(params->size()>1) { | |
| Value& vparams=params->as_no_junction(1, "transform parameters parameter must be string"); | |
| if(vparams.is_defined()) | |
| 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 | |
| const XalanParsedSource &parsed_source=vdoc.get_parsed_source(pool, &method_name); | |
| // stylesheet | |
| const String& stylesheet_file_name=params->as_string(0, "file name must be string"); | |
| const String& stylesheet_filespec=r.absolute(stylesheet_file_name); | |
| //_asm int 3; | //_asm int 3; |
| Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec); | |
| // target | |
| 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 | |
| VXdoc& result=*new(pool) VXdoc(pool); | |
| result.set_document(*target); | |
| r.write_no_lang(result); | |
| } | |
| */ | |
| static void _transform(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // params | // params |
| const char **transform_params=0; | |
| if(params->size()>1) { | if(params->size()>1) { |
| Value& vparams=params->as_no_junction(1, "transform parameters parameter must be string"); | Value& vparams=params->as_no_junction(1, "transform parameters must be hash"); |
| if(vparams.is_defined()) | if(vparams.is_defined()) |
| if(Hash *params=vparams.get_hash()) | if(Hash *params=vparams.get_hash(&method_name)) { |
| params->for_each(add_xslt_param, &vdoc.transformer()); | transform_params= |
| else | (const char **)pool.malloc(sizeof(const char *)*params->size()*2+1); |
| PTHROW(0, 0, | params->for_each(add_xslt_param, transform_params); |
| transform_params[params->size()*2]=0; | |
| } else | |
| throw Exception(0, 0, | |
| &method_name, | &method_name, |
| "transform parameters parameter must be hash"); | "transform parameters parameter must be hash"); |
| } | } |
| // source | |
| XalanDocument &xalan_document=vdoc.get_document(pool, &method_name); | |
| // stylesheet | // stylesheet |
| const String& stylesheet_file_name=params->as_string(0, "file name must be string"); | const String& stylesheet_filespec=r.absolute(params->as_string(0, "file name must be string")); |
| const String& stylesheet_filespec=r.absolute(stylesheet_file_name); | Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec); |
| //_asm int 3; | |
| Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec); | |
| // target | |
| XalanDocument* target=vdoc.parser_liaison().createDocument(); | |
| // transform | // transform |
| try { | xsltStylesheet *stylesheet=connection->stylesheet(false/*nocache*/); |
| vdoc.transformer().transform2( | xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name)); |
| &xalan_document, | xsltTransformContext_auto_ptr transformContext( |
| &connection.stylesheet(true/*nocache*/), | xsltNewTransformContext(stylesheet, document)); |
| target); | xmlDoc *transformed=xsltApplyStylesheetUser( |
| } | stylesheet, |
| catch (XSLException& e) { | document, |
| connection.close(); | transform_params, |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | 0/*const char *output*/, |
| } | 0/*FILE *profile*/, |
| catch (SAXParseException& e) { | transformContext.get()); |
| connection.close(); | if(!transformed || xmlHaveGenericErrors()) { |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | GdomeException exc=0; |
| } | throw Exception(0, 0, |
| catch (SAXException& e) { | &stylesheet_filespec, |
| connection.close(); | exc); |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | } |
| } | |
| catch (XMLException& e) { | //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE type, fixing |
| connection.close(); | transformed->type=XML_DOCUMENT_NODE; |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | // constructing result |
| } | GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed); |
| catch(const XalanDOMException& e) { | if(!gdomeDocument) |
| connection.close(); | throw Exception(0, 0, |
| pool.exception()._throw(pool, &stylesheet_file_name, e); | &method_name, |
| } | "gdome_xml_doc_mkref failed"); |
| VXdoc& result=*new(pool) VXdoc(pool, gdomeDocument); | |
| /* grabbing options | |
| <xsl:output | |
| !method = "xml" | "html" | "text" | |
| X| qname-but-not-ncname | |
| !version = nmtoken | |
| !encoding = string | |
| !omit-xml-declaration = "yes" | "no" | |
| !standalone = "yes" | "no" | |
| !doctype-public = string | |
| !doctype-system = string | |
| Xcdata-section-elements = qnames | |
| !indent = "yes" | "no" | |
| !media-type = string /> | |
| */ | |
| memset(&result.output_options, 0, sizeof(result.output_options)); | |
| VXdoc::Output_options& oo=result.output_options; | |
| oo.method=stylesheet->method?&pool.transcode(stylesheet->method):0; | |
| oo.encoding=stylesheet->encoding?&pool.transcode(stylesheet->encoding):0; | |
| oo.mediaType=stylesheet->mediaType?&pool.transcode(stylesheet->mediaType):0; | |
| oo.doctypeSystem=stylesheet->doctypeSystem?&pool.transcode(stylesheet->doctypeSystem):0; | |
| oo.doctypePublic=stylesheet->doctypePublic?&pool.transcode(stylesheet->doctypePublic):0; | |
| oo.indent=stylesheet->indent!=0; | |
| oo.version=stylesheet->version?&pool.transcode(stylesheet->version):0; | |
| oo.standalone=stylesheet->standalone!=0; | |
| oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0; | |
| // 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) { | MXdoc::MXdoc(Pool& apool) : MXnode(apool) { |
| Line 784 MXdoc::MXdoc(Pool& apool) : MXnode(apool | Line 792 MXdoc::MXdoc(Pool& apool) : MXnode(apool |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | // EntityReference createEntityReference(in DOMString name) raises(DOMException); |
| add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1); | add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1); |
| // NodeList getElementsByTagName(in DOMString tagname); | // NodeList getElementsByTagName(in DOMString tagname); |
| /* | add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1); |
| // ^xdoc.getElementsByTagName[tagname] | // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes |
| add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1); | add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2); |
| // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes | |
| add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2); | |
| */ | |
| /// DOM2(?) | /// DOM2(?) |
| Line 799 MXdoc::MXdoc(Pool& apool) : MXnode(apool | Line 803 MXdoc::MXdoc(Pool& apool) : MXnode(apool |
| /// parser | /// parser |
| // ^xdoc::create{qualifiedName} | |
| add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1); | |
| // ^xdoc::set[<some>xml</some>] | |
| add_native_method("set", Method::CT_DYNAMIC, _set, 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 823 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>] | |
| add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1); | |
| // ^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] |
| // ^xdoc.transform[stylesheet file_name;params hash] | // ^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); |
| Line 839 Methoded *Xdoc_class; | Line 843 Methoded *Xdoc_class; |
| Methoded *MXdoc_create(Pool& pool) { | Methoded *MXdoc_create(Pool& pool) { |
| return | return |
| #ifdef XML | #ifdef XML |
| Xdoc_class=new(pool) MXdoc(pool); | Xdoc_class=new(pool) MXdoc(pool) |
| #else | #else |
| 0 | 0 |
| #endif | #endif |