|
|
| version 1.12, 2001/10/08 08:35:56 | version 1.90, 2002/04/09 15:56:35 |
|---|---|
| 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, 2002 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$ | $Id$ |
| */ | */ |
| #include "classes.h" | #include "classes.h" |
| #ifdef XML | #ifdef XML |
| #include "pa_stylesheet_connection.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 "gdome.h" |
| #include <Include/PlatformDefinitions.hpp> | #include "libxml/tree.h" |
| #include <util/PlatformUtils.hpp> | extern "C" { |
| #include <util/TransENameMap.hpp> | #include "gdomecore/gdome-xml-node.h" |
| #include <XalanTransformer/XalanTransformer.hpp> | #include "gdomecore/gdome-xml-document.h" |
| #include <XalanTransformer/XalanParsedSource.hpp> | }; |
| # include <XalanTransformer/XalanDefaultParsedSource.hpp> | #include "libxslt/xsltInternals.h" |
| # include <XalanSourceTree/XalanSourceTreeDocument.hpp> | #include "libxslt/transform.h" |
| # include <XalanSourceTree/XalanSourceTreeContentHandler.hpp> | #include "libxslt/xsltutils.h" |
| # include <sax2/XMLReaderFactory.hpp> | #include "libxslt/variables.h" |
| #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> | |
| // defines | // defines |
| Line 45 | Line 36 |
| #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); } | Value *create_new_value(Pool& pool) { return new(pool) VXdoc(pool, 0); } |
| public: | public: |
| MXdoc(Pool& pool); | MXdoc(Pool& pool); |
| Line 63 public: // Methoded | Line 50 public: // Methoded |
| void configure_admin(Request& r); | void configure_admin(Request& r); |
| }; | }; |
| // methods | // helper classes |
| class ParserStringXalanOutputStream: public XalanOutputStream { | class xmlOutputBuffer_auto_ptr { |
| public: | public: |
| explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) | |
| explicit ParserStringXalanOutputStream(String& astring) : fstring(astring) {} | : _Owns(_APtr != 0), _Ptr(_APtr) {} |
| xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) | |
| protected: // XalanOutputStream | : _Owns(_Y._Owns), _Ptr(_Y.release()) {} |
| xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) | |
| virtual void writeData(const char *theBuffer, unsigned long theBufferLength) { | {if (this != &_Y) |
| char *copy=(char *)fstring.malloc((size_t)theBufferLength); | {if (_Ptr != _Y.get()) |
| memcpy(copy, theBuffer, (size_t)theBufferLength); | {if (_Owns && _Ptr) |
| fstring.APPEND_CLEAN(copy, (size_t)theBufferLength, "xdoc", 0); | xmlOutputBufferClose(_Ptr); |
| } | _Owns = _Y._Owns; } |
| else if (_Y._Owns) | |
| virtual void doFlush() {} | _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: | private: |
| bool _Owns; | |
| String& fstring; | xmlOutputBuffer *_Ptr; |
| }; | }; |
| class XalanSourceTreeParserLiaison2: public XalanSourceTreeParserLiaison { | class xsltTransformContext_auto_ptr { |
| public: | public: |
| XalanSourceTreeParserLiaison2(XalanSourceTreeDOMSupport& theSupport) : XalanSourceTreeParserLiaison(theSupport), | explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) |
| ferror_handler(new HandlerBase) { | : _Owns(_APtr != 0), _Ptr(_APtr) {} |
| } | xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) |
| : _Owns(_Y._Owns), _Ptr(_Y.release()) {} | |
| XalanDocument* | xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) |
| parseXMLStream2( | {if (this != &_Y) |
| const InputSource& inputSource) { | {if (_Ptr != _Y.get()) |
| XalanSourceTreeContentHandler theContentHandler(createXalanSourceTreeDocument()); | {if (_Owns && _Ptr) |
| XalanAutoPtr<SAX2XMLReader> theReader(XMLReaderFactory::createXMLReader()); | xsltFreeTransformContext(_Ptr); |
| theReader->setContentHandler(&theContentHandler); | _Owns = _Y._Owns; } |
| theReader->setDTDHandler(&theContentHandler); | else if (_Y._Owns) |
| theReader->setErrorHandler(ferror_handler); // disable stderr output | _Owns = true; |
| theReader->setLexicalHandler(&theContentHandler); | _Ptr = _Y.release(); } |
| EntityResolver* const theResolver = getEntityResolver(); | return (*this); } |
| if (theResolver != 0) { | ~xsltTransformContext_auto_ptr() |
| theReader->setEntityResolver(theResolver); | {if (_Owns && _Ptr) |
| } | xsltFreeTransformContext(_Ptr); } |
| theReader->parse(inputSource); | xsltTransformContext& operator*() const |
| return theContentHandler.getDocument(); | {return (*get()); } |
| } | xsltTransformContext *operator->() const |
| {return (get()); } | |
| ~XalanSourceTreeParserLiaison2() { | xsltTransformContext *get() const |
| delete ferror_handler; | {return (_Ptr); } |
| } | xsltTransformContext *release() const |
| {((xsltTransformContext_auto_ptr *)this)->_Owns = false; | |
| return (_Ptr); } | |
| private: | private: |
| ErrorHandler *ferror_handler; | bool _Owns; |
| xsltTransformContext *_Ptr; | |
| }; | }; |
| class XalanDefaultParsedSource2 : public XalanParsedSource | class xsltStylesheet_auto_ptr { |
| { | |
| public: | 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; | |
| }; | |
| XalanDefaultParsedSource2(const XSLTInputSource& theInputSource); | // methods |
| virtual XalanDocument* | static void writeNode(Request& r, const String& method_name, GdomeNode *node, |
| getDocument() const; | GdomeException exc) { |
| if(!node || exc) | |
| throw Exception( | |
| &method_name, | |
| exc); | |
| virtual XalanParsedSourceHelper* | Pool& pool=r.pool(); |
| createHelper() const; | |
| private: | // write out result |
| VXnode& result=*new(pool) VXnode(pool, node); | |
| r.write_no_lang(result); | |
| } | |
| XalanSourceTreeDOMSupport m_domSupport; | // Element createElement(in DOMString tagName) raises(DOMException); |
| static void _createElement(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| XalanSourceTreeParserLiaison2 m_parserLiaison2; | const String& tagName=params->as_string(0, "tagName must be string"); |
| XalanSourceTreeDocument* const m_parsedSource; | GdomeException exc; |
| }; | GdomeNode *node= |
| (GdomeNode *)gdome_doc_createElement(vdoc.get_document(&method_name), | |
| pool.transcode(tagName).get(), | |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | |
| XalanDefaultParsedSource2::XalanDefaultParsedSource2(const XSLTInputSource& theInputSource): | // DocumentFragment createDocumentFragment() |
| XalanParsedSource(), | static void _createDocumentFragment(Request& r, const String& method_name, MethodParams *) { |
| m_domSupport(), | Pool& pool=r.pool(); |
| m_parserLiaison2(m_domSupport), | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| m_parsedSource(m_parserLiaison2.mapDocument(m_parserLiaison2.parseXMLStream2(theInputSource))) | |
| { | |
| assert(m_parsedSource != 0); | |
| m_domSupport.setParserLiaison(&m_parserLiaison2); | GdomeException exc; |
| GdomeNode *node= | |
| (GdomeNode *)gdome_doc_createDocumentFragment( | |
| vdoc.get_document(&method_name), | |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | } |
| // Text createTextNode(in DOMString data); | |
| static void _createTextNode(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"); | |
| XalanDocument* | GdomeException exc; |
| XalanDefaultParsedSource2::getDocument() const | GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode( |
| { | vdoc.get_document(&method_name), |
| return m_parsedSource; | pool.transcode(data).get(), |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | } |
| // 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"); | |
| XalanParsedSourceHelper* | GdomeException exc; |
| XalanDefaultParsedSource2::createHelper() const | GdomeNode *node=(GdomeNode *)gdome_doc_createComment( |
| { | vdoc.get_document(&method_name), |
| return new XalanDefaultParsedSourceHelper(m_domSupport); | pool.transcode(data).get(), |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | } |
| // CDATASection createCDATASection(in DOMString data) raises(DOMException); | |
| static void _createCDATASection(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"); | |
| GdomeException exc; | |
| GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection( | |
| vdoc.get_document(&method_name), | |
| pool.transcode(data).get(), | |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | |
| static void create_optioned_listener( | // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException); |
| const char *& content_type, const char *& charset, FormatterListener *& listener, | static void _createProcessingInstruction(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool, | Pool& pool=r.pool(); |
| const String& method_name, MethodParams *params, int index, Writer& writer) { | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // default encoding from pool | |
| const String *scharset=&pool.get_charset(); | |
| const String *method=0; | |
| XalanDOMString xalan_encoding; | |
| if(params->size()>index) { | const String& target=params->as_string(0, "data must be string"); |
| Value& voptions=params->as_no_junction(index, "options must not be code"); | const String& data=params->as_string(1, "data must be string"); |
| if(voptions.is_defined()) { | |
| if(Hash *options=voptions.get_hash()) { | |
| // $.method[xml|html|text] | |
| if(Value *vmethod=static_cast<Value *>(options->get(*new(pool) | |
| String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME)))) | |
| method=&vmethod->as_string(); | |
| // $.encoding[windows-1251|...] | GdomeException exc; |
| if(Value *vencoding=static_cast<Value *>(options->get(*new(pool) | GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction( |
| String(pool, XDOC_OUTPUT_ENCODING_OPTION_NAME)))) { | vdoc.get_document(&method_name), |
| scharset=&vencoding->as_string(); | pool.transcode(target).get(), |
| } | pool.transcode(data).get(), |
| } else | &exc); |
| PTHROW(0, 0, | writeNode(r, method_name, node, exc); |
| &method_name, | } |
| "options must be hash"); | |
| } | |
| } | |
| xalan_encoding.append(charset=scharset->cstr()); | // Attr createAttribute(in DOMString name) raises(DOMException); |
| if(!method/*default='xml'*/ || *method == XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) { | static void _createAttribute(Request& r, const String& method_name, MethodParams *params) { |
| content_type="text/xml"; | Pool& pool=r.pool(); |
| listener=new FormatterToXML(writer, | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| XalanDOMString(), // version | |
| true, // doIndent | |
| XDOC_OUTPUT_DEFAULT_INDENT, // indent | |
| xalan_encoding // encoding | |
| ); | |
| } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) { | |
| content_type="text/html"; | |
| listener=new FormatterToHTML(writer, | |
| xalan_encoding, // encoding | |
| XalanDOMString(), // mediaType | |
| 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 | const String& name=params->as_string(0, "name must be string"); |
| } | |
| static void _save(Request& r, const String& method_name, MethodParams *params) { | GdomeException exc; |
| GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute( | |
| vdoc.get_document(&method_name), | |
| pool.transcode(name).get(), | |
| &exc); | |
| writeNode(r, method_name, node, exc); | |
| } | |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | |
| static void _createEntityReference(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // filespec | const String& name=params->as_string(0, "name must be string"); |
| const String& file_name=params->as_string(0, "file name must not be code"); | |
| const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC); | |
| // node | |
| XalanNode& node=vnode.get_node(pool, &method_name); | |
| try { | GdomeException exc; |
| XalanFileOutputStream stream(XalanDOMString(filespec, strlen(filespec))); | GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference( |
| XalanOutputStreamPrintWriter writer(stream); | vdoc.get_document(&method_name), |
| const char *content_type, *charset; | pool.transcode(name).get(), |
| FormatterListener *formatterListener; | &exc); |
| create_optioned_listener(content_type, charset, formatterListener, | writeNode(r, method_name, node, exc); |
| pool, method_name, params, 1, writer); | |
| FormatterTreeWalker treeWalker(*formatterListener); | |
| treeWalker.traverse(&node); // Walk that node and produce the XML... | |
| } catch(const XSLException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| } | } |
| static void _string(Request& r, const String& method_name, MethodParams *params) { | static void _getElementById(Request& r, const String& method_name, MethodParams *params) { |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // node | |
| XalanNode& node=vnode.get_node(pool, &method_name); | |
| try { | // elementId |
| String parserString=*new(pool) String(pool); | const String& elementId=params->as_string(0, "elementID must be string"); |
| 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... | |
| GdomeException exc; | |
| if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById( | |
| vdoc.get_document(&method_name), | |
| pool.transcode(elementId).get(), | |
| &exc)) { | |
| // write out result | // write out result |
| r.write_no_lang(parserString); | VXnode& result=*new(pool) VXnode(pool, node); |
| } catch(const XSLException& e) { | r.write_no_lang(result); |
| r._throw(&method_name, e); | } else if(exc || xmlHaveGenericErrors()) |
| } | throw Exception( |
| &method_name, | |
| exc); | |
| } | } |
| static void _importNode(Request& r, const String& method_name, MethodParams *params) { | |
| static void _file(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | Pool& pool=r.pool(); |
| VXnode& vnode=*static_cast<VXnode *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // node | |
| XalanNode& node=vnode.get_node(pool, &method_name); | |
| try { | GdomeNode *importedNode= |
| String& parserString=*new(pool) String(pool); | as_node(method_name, params, 0, "importedNode must be node"); |
| ParserStringXalanOutputStream stream(parserString); | bool deep= |
| XalanOutputStreamPrintWriter writer(stream); | params->as_bool(1, "deep must be bool", r); |
| const char *content_type, *charset; | |
| FormatterListener *formatterListener; | GdomeException exc; |
| create_optioned_listener(content_type, charset, formatterListener, | GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(&method_name), |
| pool, method_name, params, 0, writer); | importedNode, |
| FormatterTreeWalker treeWalker(*formatterListener); | deep, &exc); |
| treeWalker.traverse(&node); // Walk that node and produce the XML... | if(exc) |
| throw Exception( | |
| &method_name, | |
| exc); | |
| // write out result | // write out result |
| VFile& vfile=*new(pool) VFile(pool); | r.write_no_lang(*new(pool) VXnode(pool, outputNode)); |
| const char *cstr=parserString.cstr(); | |
| String *scontent_type=new(pool) String(pool, content_type); | |
| Value *vcontent_type; | |
| if(charset) { | |
| VHash *vhcontent_type=new(pool) VHash(pool); | |
| vhcontent_type->hash().put(*value_name, new(pool) VString(*scontent_type)); | |
| 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) { | |
| r._throw(&method_name, e); | |
| } | |
| } | } |
| /* | |
| GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); | |
| GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc); | |
| */ | |
| static void _set(Request& r, const String& method_name, MethodParams *params) { | static void _create(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); |
| Value& vxml=params->as_junction(0, "xml must be code"); | Value& param=params->get(0); |
| Temp_lang temp_lang(r, String::UL_XML); | GdomeDocument *document; |
| const String& xml=r.process(vxml).as_string(); | if(param.get_junction()) { // {<tag/>} |
| Temp_lang temp_lang(r, String::UL_XML); | |
| const String& xml=r.process(param).as_string(); | |
| const char *cstr=xml.cstr(String::UL_UNSPECIFIED); | |
| document=(GdomeDocument *) | |
| gdome_xml_n_mkref((xmlNode *)xmlParseMemory( | |
| cstr, strlen(cstr) | |
| )); | |
| if(!document || xmlHaveGenericErrors()) { | |
| GdomeException exc=0; | |
| throw Exception( | |
| &method_name, | |
| exc); | |
| } | |
| } else { // [name] | |
| const String& qualifiedName=param.as_string(); | |
| std::istrstream stream(xml.cstr()); | GdomeException exc; |
| const XalanParsedSource* parsedSource; | /* |
| GdomeDocumentType *documentType=gdome_di_createDocumentType ( | |
| docimpl, | |
| pool.transcode(qualifiedName), | |
| 0/*publicId* /, | |
| 0/*systemId* /, | |
| &exc); | |
| if(!documentType || exc || xmlHaveGenericErrors()) | |
| throw Exception( | |
| &method_name, | |
| exc); | |
| */ | |
| document=gdome_di_createDocument (domimpl, | |
| 0/*namespaceURI*/, | |
| pool.transcode(qualifiedName).get(), | |
| 0/*doctype*/, | |
| &exc); | |
| if(!document || exc || xmlHaveGenericErrors()) | |
| throw Exception( | |
| &method_name, | |
| exc); | |
| try { | /// +xalan createXMLDecl ? |
| parsedSource = new XalanDefaultParsedSource2(&stream); | |
| } | |
| catch (XSLException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch (SAXParseException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch (SAXException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch (XMLException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| r._throw(&method_name, e); | |
| } | } |
| // replace any previous parsed source | // replace any previous parsed source |
| vdoc.set_parsed_source(*parsedSource); | vdoc.set_document(document); |
| } | } |
| static void _load(Request& r, const String& method_name, MethodParams *params) { | static void _load(Request& r, const String& method_name, MethodParams *params) { |
| Line 360 static void _load(Request& r, const Stri | Line 393 static void _load(Request& r, const Stri |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | VXdoc& vdoc=*static_cast<VXdoc *>(r.self); |
| // filespec | // filespec |
| const String& file_name=params->as_string(0, "file name must not be code"); | const String& file_name=params->as_string(0, "uri must be string"); |
| const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC); | const String& uri=r.absolute(file_name); |
| const XalanParsedSource* parsedSource; | GdomeDocument *document=(GdomeDocument *) |
| try { | gdome_xml_n_mkref((xmlNode *)xmlParseFile(uri.cstr())); |
| parsedSource = new XalanDefaultParsedSource2(filespec); | if(!document || xmlHaveGenericErrors()) { |
| } | GdomeException exc=0; |
| catch (XSLException& e) { | throw Exception( |
| r._throw(&method_name, e); | &uri, |
| } | exc); |
| catch (SAXParseException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch (SAXException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch (XMLException& e) { | |
| r._throw(&method_name, e); | |
| } | |
| catch(const XalanDOMException& e) { | |
| r._throw(&method_name, e); | |
| } | } |
| // replace any previous parsed source | // replace any previous parsed source |
| vdoc.set_parsed_source(*parsedSource); | vdoc.set_document(document); |
| } | } |
| static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning, | static void param_option_over_output_option(Pool& pool, |
| void *info) { | Hash *param_options, const char *option_name, |
| XalanTransformer& transformer=*static_cast<XalanTransformer *>(info); | const String *& output_option) { |
| const char *attribute_cstr=aattribute.cstr(); | if(Value *value=static_cast<Value *>(param_options->get(*new(pool) String(pool, |
| const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr(); | option_name)))) |
| output_option=&value->as_string(); | |
| transformer.setStylesheetParam( | } |
| XalanDOMString(attribute_cstr), | static void param_option_over_output_option(Pool& pool, |
| XalanDOMString(meaning_cstr)); | 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("parser.runtime", | |
| &s, | |
| "%s must be either 'yes' or 'no'", option_name); | |
| } | |
| } | } |
| static void _transform(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| // params | static void prepare_output_options( |
| if(params->size()>1) { | Pool& pool, const String& method_name, MethodParams *params, int index, |
| Value& vparams=params->as_no_junction(1, "transform parameters parameter must not be code"); | VXdoc::Output_options& oo) { |
| if(vparams.is_defined()) | /* |
| if(Hash *params=vparams.get_hash()) | <xsl:output |
| params->for_each(add_xslt_param, &vdoc.transformer()); | !method = "xml" | "html" | "text" | qname-but-not-ncname |
| else | !version = nmtoken |
| PTHROW(0, 0, | !encoding = string |
| &method_name, | !omit-xml-declaration = "yes" | "no" |
| "transform parameters parameter must be hash"); | !standalone = "yes" | "no" |
| } | !doctype-public = string |
| !doctype-system = string | |
| cdata-section-elements = qnames | |
| !indent = "yes" | "no" | |
| !media-type = string /> | |
| */ | |
| // source | // configuring with options from parameter... |
| const XalanParsedSource &parsed_source=vdoc.get_parsed_source(pool, &method_name); | if(params->size()>index) { |
| Value& voptions=params->as_no_junction(index, "options must be string"); | |
| if(voptions.is_defined()) { | |
| if(Hash *options=voptions.get_hash(&method_name)) { | |
| // $.method[xml|html|text] | |
| if(Value *vmethod=static_cast<Value *>(options->get(*new(pool) | |
| String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME)))) | |
| oo.method=&vmethod->as_string(); | |
| // stylesheet | // $.version[1.0] |
| const String& stylesheet_file_name=params->as_string(0, "file name must not be code"); | param_option_over_output_option(pool, options, "version", oo.version); |
| const String& stylesheet_filespec=r.absolute(stylesheet_file_name); | // $.encoding[windows-1251|...] |
| //_asm int 3; | param_option_over_output_option(pool, options, "encoding", oo.encoding); |
| Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec); | // $.omit-xml-declaration[yes|no] |
| param_option_over_output_option(pool, options, "omit-xml-declaration", oo.omitXmlDeclaration); | |
| // $.standalone[yes|no] | |
| param_option_over_output_option(pool, options, "standalone", oo.standalone); | |
| // $.doctype-public[?] | |
| param_option_over_output_option(pool, options, "doctype-public", oo.doctypePublic); | |
| // $.doctype-system[?] | |
| param_option_over_output_option(pool, options, "doctype-system", oo.doctypeSystem); | |
| // $.indent[yes|no] | |
| param_option_over_output_option(pool, options, "indent", oo.indent); | |
| // $.media-type[text/{html|xml|plain}] | |
| param_option_over_output_option(pool, options, "media-type", oo.mediaType); | |
| } | |
| } | |
| } | |
| // target | // default encoding from pool |
| XalanDocument* target=vdoc.parser_liaison().createDocument(); | if(!oo.encoding) |
| XSLTResultTarget domResultTarget(target); | oo.encoding=&pool.get_source_charset().name(); |
| // default method=xml | |
| // transform | if(!oo.method) |
| int error=vdoc.transformer().transform( | oo.method=new(pool) String(pool, XDOC_OUTPUT_METHOD_OPTION_VALUE_XML); |
| parsed_source, | // default mediaType = depending on method |
| &connection.stylesheet(true/*nocache*/), | if(!oo.mediaType) { |
| domResultTarget); | if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) |
| connection.close(); | oo.mediaType=new(pool) String(pool, "text/xml"); |
| if(error) | else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) |
| PTHROW(0, 0, | oo.mediaType=new(pool) String(pool, "text/html"); |
| &stylesheet_file_name, | else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others |
| vdoc.transformer().getLastError()); | oo.mediaType=new(pool) String(pool, "text/plain"); |
| } | |
| } | |
| static void xdoc2buf(Pool& pool, VXdoc& vdoc, | |
| const String& method_name, MethodParams *params, int index, | |
| VXdoc::Output_options& oo, | |
| const String *file_spec, | |
| char **parser_buf, size_t *parser_size) { | |
| prepare_output_options(pool, method_name, params, index, | |
| oo); | |
| const char *encoding_cstr=oo.encoding->cstr(); | |
| xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr); | |
| if(!encoder) | |
| throw Exception("parser.runtime", | |
| &method_name, | |
| "encoding '%s' not supported", encoding_cstr); | |
| // UTF-8 encoder contains empty input/output converters, | |
| // which is wrong for xmlOutputBufferCreateIO | |
| // while zero encoder goes perfectly | |
| if(encoder && strcmp(encoder->name, "UTF-8")==0) | |
| encoder=0; | |
| xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder)); | |
| xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet()); | |
| if(!stylesheet.get()) | |
| throw Exception(0, | |
| &method_name, | |
| "xsltNewStylesheet failed"); | |
| #define OOS2STYLE(name) \ | |
| stylesheet->name=oo.name?BAD_CAST g_strdup(pool.transcode(*oo.name)->str):0 | |
| #define OOE2STYLE(name) \ | |
| 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( | |
| &method_name, | |
| exc); | |
| } | |
| // write out result | // write out result |
| VXdoc& result=*new(pool) VXdoc(pool); | char *gnome_buf; size_t gnome_size; |
| result.set_document(*target); | if(outputBuffer->conv) { |
| r.write_no_lang(result); | gnome_size=outputBuffer->conv->use; |
| gnome_buf=(char *)outputBuffer->conv->content; | |
| } else { | |
| gnome_size=outputBuffer->buffer->use; | |
| gnome_buf=(char *)outputBuffer->buffer->content; | |
| } | |
| if(file_spec) | |
| file_write( | |
| *file_spec, | |
| gnome_buf, gnome_size, | |
| true/*as_text*/); | |
| else if(*parser_size=gnome_size) { | |
| *parser_buf=(char *)pool.malloc(gnome_size); | |
| memcpy(*parser_buf, gnome_buf, gnome_size); | |
| } else | |
| *parser_buf=0; | |
| } | } |
| static void _getElementById(Request& r, const String& method_name, MethodParams *params) { | static void _file(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); | |
| 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)); | |
| // elementId | // write out result |
| const char *elementId=params->as_string(0, "elementID must not be code").cstr(String::UL_AS_IS); | VFile& vfile=*new(pool) VFile(pool); |
| Value *vcontent_type; | |
| if(XalanElement *element= | VHash *vhcontent_type=new(pool) VHash(pool); |
| vdoc.get_document(pool, &method_name).getElementById(XalanDOMString(elementId))) { | vhcontent_type->hash(&method_name).put( |
| // write out result | *value_name, |
| VXnode& result=*new(pool) VXnode(pool, element); | new(pool) VString(*oo.mediaType)); |
| r.write_no_lang(result); | vhcontent_type->hash(&method_name).put( |
| } | *new(pool) String(pool, "charset"), |
| new(pool) VString(*oo.encoding)); | |
| vcontent_type=vhcontent_type; | |
| vfile.set(false/*tainted*/, buf, buf_size, 0/*file_name*/, vcontent_type); | |
| r.write_no_lang(vfile); | |
| } | } |
| /* | |
| static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) { | static void _save(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& file_spec=r.absolute(params->as_string(0, "file name must be string")); |
| const char *tagname=params->as_string(0, "tagname must not be code").cstr(String::UL_AS_IS); | |
| VXdoc::Output_options oo(vdoc.output_options); | |
| VHash& result=*new(pool) VHash(pool); | xdoc2buf(pool, vdoc, method_name, params, 1, |
| if(const XalanNodeList *nodes= | oo, |
| vdoc.get_document(pool, &method_name).getElementsByTagName(XalanDOMString(tagname))) { | &file_spec, |
| for(int i=0; i<nodes->getLength(); i++) { | 0, 0); |
| 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))); | |
| } | |
| } | |
| static void _string(Request& r, const String& method_name, MethodParams *params) { | |
| Pool& pool=r.pool(); | |
| VXdoc& vdoc=*static_cast<VXdoc *>(r.self); | |
| VXdoc::Output_options oo(vdoc.output_options); | |
| 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 | // write out result |
| r.write_no_lang(result); | r.write_no_lang(*new(pool) String(pool, buf, buf_size)); |
| } | } |
| static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) { | static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning, |
| void *info) { | |
| Value *meaning=static_cast<Value *>(ameaning); | |
| Pool& pool=meaning->pool(); | |
| const char ** & current_transform_param=*(const char ***)info; | |
| *current_transform_param++=pool.transcode(aattribute)->str; | |
| *current_transform_param++=pool.transcode(meaning->as_string())->str; | |
| } | |
| static void _transform(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); |
| // namespaceURI;localName | // params |
| const char *namespaceURI=params->as_string(0, "namespaceURI must not be code").cstr(String::UL_AS_IS); | const char **transform_params=0; |
| const char *localName=params->as_string(0, "localName must not be code").cstr(String::UL_AS_IS); | if(params->size()>1) { |
| Value& vparams=params->as_no_junction(1, "transform parameters must be hash"); | |
| VHash& result=*new(pool) VHash(pool); | if(vparams.is_defined()) |
| if(const XalanNodeList *nodes= | if(Hash *params=vparams.get_hash(&method_name)) { |
| vdoc.get_document(pool, &method_name).getElementsByTagNameNS( | const char **current_transform_param=transform_params= |
| XalanDOMString(namespaceURI), XalanDOMString(localName))) { | (const char **)pool.malloc(sizeof(const char *)*(params->size()*2+1)); |
| for(int i=0; i<nodes->getLength(); i++) { | params->for_each(add_xslt_param, ¤t_transform_param); |
| String& skey=*new(pool) String(pool); | transform_params[params->size()*2]=0; |
| { | } else |
| char *buf=(char *)pool.malloc(MAX_NUMBER); | throw Exception("parser.runtime", |
| snprintf(buf, MAX_NUMBER, "%d", i); | &method_name, |
| skey << buf; | "transform parameters parameter must be hash"); |
| } | |
| result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i))); | |
| } | |
| } | } |
| // stylesheet | |
| const String& stylesheet_filespec=r.absolute(params->as_string(0, "file name must be string")); | |
| Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec); | |
| // prepare to transform | |
| xsltStylesheet *stylesheet=connection->stylesheet(false/*nocache*/); | |
| xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name)); | |
| xsltTransformContext_auto_ptr transformContext( | |
| xsltNewTransformContext(stylesheet, document)); | |
| // make params literal | |
| if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext | |
| transformContext->globalVars = xmlHashCreate(20); | |
| xsltQuoteUserParams(transformContext.get(), transform_params); | |
| // do transform | |
| xmlDoc *transformed=xsltApplyStylesheetUser( | |
| stylesheet, | |
| document, | |
| 0/*already quoted-inserted transform_params*/, | |
| 0/*const char *output*/, | |
| 0/*FILE *profile*/, | |
| transformContext.get()); | |
| if(!transformed || xmlHaveGenericErrors()) { | |
| GdomeException exc=0; | |
| throw Exception( | |
| &stylesheet_filespec, | |
| exc); | |
| } | |
| //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE type, fixing | |
| transformed->type=XML_DOCUMENT_NODE; | |
| // constructing result | |
| GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed); | |
| if(!gdomeDocument) | |
| throw Exception(0, | |
| &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 |
| r.write_no_lang(result); | r.write_no_lang(result); |
| } | } |
| */ | |
| // constructor | // constructor |
| MXdoc::MXdoc(Pool& apool) : MXnode(apool) { | MXdoc::MXdoc(Pool& apool) : MXnode(apool) { |
| set_name(*NEW String(pool(), XDOC_CLASS_NAME)); | set_name(*NEW String(pool(), XDOC_CLASS_NAME)); |
| /// @test how to create empty type html? | |
| /// DOM1 | |
| // Element createElement(in DOMString tagName) raises(DOMException); | |
| add_native_method("createElement", Method::CT_DYNAMIC, _createElement, 1, 1); | |
| // DocumentFragment createDocumentFragment(); | |
| add_native_method("createDocumentFragment", Method::CT_DYNAMIC, _createDocumentFragment, 0, 0); | |
| // Text createTextNode(in DOMString data); | |
| add_native_method("createTextNode", Method::CT_DYNAMIC, _createTextNode, 1, 1); | |
| // Comment createComment(in DOMString data); | |
| add_native_method("createComment", Method::CT_DYNAMIC, _createComment, 1, 1); | |
| // CDATASection createCDATASection(in DOMString data) raises(DOMException); | |
| add_native_method("createCDATASection", Method::CT_DYNAMIC, _createCDATASection, 1, 1); | |
| // ProcessingInstruction createProcessingInstruction(in DOMString target, in DOMString data) raises(DOMException); | |
| add_native_method("createProcessingInstruction", Method::CT_DYNAMIC, _createProcessingInstruction, 2, 2); | |
| // Attr createAttribute(in DOMString name) raises(DOMException); | |
| add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1); | |
| // EntityReference createEntityReference(in DOMString name) raises(DOMException); | |
| add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1); | |
| /// DOM2 | |
| // ^xdoc.getElementById[elementId] | |
| 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); | |
| /// parser | |
| // ^xdoc::create{qualifiedName} | |
| // ^xdoc::_create[<some>xml</some>] | |
| add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1); | |
| // 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 529 MXdoc::MXdoc(Pool& apool) : MXnode(apool | Line 778 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::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); |
| // ^xdoc.getElementById[elementId] | |
| add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1); | |
| /* | |
| // ^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); | |
| */ | |
| } | } |
| void MXdoc::configure_admin(Request& r) { | void MXdoc::configure_admin(Request& r) { |
| Line 564 Methoded *Xdoc_class; | Line 798 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 |