/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * International Business Machines Corporation. * Portions created by the Initial Developer are Copyright (C) 2000 * the Initial Developer. All Rights Reserved. * * Contributor(s): * IBM Corporation. * Heikki Toivonen * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include #include #include #include #include #include #include #include #include #include #include #include "nsIDocument.h" #include "nsIServiceManager.h" #include #include #include #include #include "nsContentCID.h" #include "nsReadableUtils.h" static NS_DEFINE_CID( kXMLDocumentCID, NS_XMLDOCUMENT_CID ); #if 0 class nsMyListener : public nsIDOMLoadListener { public: nsMyListener() {} ~nsMyListener() {} void Start(const char *a); NS_DECL_ISUPPORTS // nsIDOMEventListener virtual nsresult HandleEvent(nsIDOMEvent* aEvent) { return NS_OK;} // nsIDOMLoadListener virtual nsresult Load(nsIDOMEvent* aEvent) {printf("Load\n"); return NS_OK;} virtual nsresult Unload(nsIDOMEvent* aEvent) {printf("Unload\n"); return NS_OK;} virtual nsresult Abort(nsIDOMEvent* aEvent) {printf("Abort\n"); return NS_OK;} virtual nsresult Error(nsIDOMEvent* aEvent) {printf("Error\n"); return NS_OK;} }; NS_IMPL_ADDREF(nsMyListener) NS_IMPL_RELEASE(nsMyListener) NS_INTERFACE_MAP_BEGIN(nsMyListener) NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMLoadListener) NS_INTERFACE_MAP_ENTRY(nsIDOMLoadListener) NS_INTERFACE_MAP_ENTRY(nsIDOMEventListener) NS_INTERFACE_MAP_END void nsMyListener::Start(const char *arg2) { nsresult rv; nsCOMPtr doc(do_CreateInstance( kXMLDocumentCID, &rv )); if (NS_SUCCEEDED( rv )) { nsCOMPtr pDOMEventTarget = do_QueryInterface( doc, &rv ); if (NS_SUCCEEDED( rv )) { nsCOMPtr pDOMEventListener = do_QueryInterface( this, &rv ); if (NS_SUCCEEDED( rv )) { nsAutoString sLoadCommand; sLoadCommand.Assign( NS_LITERAL_STRING("load") ); rv = pDOMEventTarget->AddEventListener( sLoadCommand, pDOMEventListener, PR_FALSE ); if (NS_SUCCEEDED( rv )) { nsCOMPtr pDOMNSDocument = do_QueryInterface( doc, &rv ); if (NS_SUCCEEDED( rv )) { rv = pDOMNSDocument->Load( NS_ConvertASCIItoUCS2(arg2) ); } } } } } } #endif void usage( ) { printf( "\n" ); printf( "Usage:\n" ); printf( " TestXMLExtras {parsestr | parse | syncread} xmlfile\n\n" ); printf( " parsestr = Invokes DOMParser against a string supplied as second argument\n" ); printf( " parse = Invokes DOMParser against a local file\n" ); printf( " xmlfile = A local XML URI (ie. file:///d:/file.xml)\n\n" ); printf( " syncread = Invokes XMLHttpRequest for a synchronous read\n" ); printf( " xmlfile = An XML URI (ie. http://www.w3.org/TR/P3P/base\n\n" ); printf( " load = Invokes document.load for asynchronous read\n" ); printf( " xmlfile = An XML URI (ie. http://www.w3.org/TR/P3P/base\n\n" ); return; } int main (int argc, char* argv[]) { nsresult rv; nsCOMPtr pURI; nsCOMPtr pChannel; nsCOMPtr pInputStream; PRUint32 uiContentLength; nsCOMPtr pDOMParser; nsCOMPtr pDOMDocument; nsCOMPtr pXMLHttpRequest; nsIServiceManager *servMgr; rv = NS_InitXPCOM2(&servMgr, nsnull, nsnull); if (NS_FAILED(rv)) return rv; if (argc > 2) { if (nsCRT::strcasecmp( argv[1], "parsestr" ) == 0) { pDOMParser = do_CreateInstance( NS_DOMPARSER_CONTRACTID, &rv ); if (NS_SUCCEEDED( rv )) { nsString str; str.AssignWithConversion(argv[2]); rv = pDOMParser->ParseFromString(str.get(), "application/xml", getter_AddRefs( pDOMDocument ) ); if (NS_SUCCEEDED( rv )) { printf( "DOM parse string of\n\n%s\n\nsuccessful\n", argv[2] ); } else { printf( "DOM parse of \n%s\n NOT successful\n", argv[2] ); } } else { printf( "do_CreateInstance of DOMParser failed for %s - %08X\n", argv[2], rv ); } } else if (nsCRT::strcasecmp( argv[1], "parse" ) == 0) { // DOM Parser rv = NS_NewURI( getter_AddRefs( pURI ), argv[2] ); if (NS_SUCCEEDED( rv )) { rv = NS_NewChannel( getter_AddRefs( pChannel ), pURI, nsnull, nsnull ); if (NS_SUCCEEDED( rv )) { rv = pChannel->Open( getter_AddRefs( pInputStream ) ); if (NS_SUCCEEDED( rv )) { rv = pInputStream->Available(&uiContentLength ); if (NS_SUCCEEDED( rv )) { pDOMParser = do_CreateInstance( NS_DOMPARSER_CONTRACTID, &rv ); if (NS_SUCCEEDED( rv )) { pDOMParser->SetBaseURI(pURI); rv = pDOMParser->ParseFromStream( pInputStream, "UTF-8", uiContentLength, "application/xml", getter_AddRefs( pDOMDocument ) ); if (NS_SUCCEEDED( rv )) { printf( "DOM parse of %s successful\n", argv[2] ); } else { printf( "DOM parse of %s NOT successful\n", argv[2] ); } } else { printf( "do_CreateInstance of DOMParser failed for %s - %08X\n", argv[2], rv ); } } else { printf( "pInputSteam->Available failed for %s - %08X\n", argv[2], rv ); } } else { printf( "pChannel->OpenInputStream failed for %s - %08X\n", argv[2], rv ); } } else { printf( "NS_NewChannel failed for %s - %08X\n", argv[2], rv ); } } else { printf( "NS_NewURI failed for %s - %08X\n", argv[2], rv ); } } else if (nsCRT::strcasecmp( argv[1], "syncread" ) == 0) { // Synchronous Read pXMLHttpRequest = do_CreateInstance( NS_XMLHTTPREQUEST_CONTRACTID, &rv ); if (NS_SUCCEEDED( rv )) { const nsAString& emptyStr = EmptyString(); rv = pXMLHttpRequest->OpenRequest( NS_LITERAL_CSTRING("GET"), nsDependentCString(argv[2]), PR_FALSE, emptyStr, emptyStr ); if (NS_SUCCEEDED( rv )) { rv = pXMLHttpRequest->Send( nsnull ); if (NS_SUCCEEDED( rv )) { rv = pXMLHttpRequest->GetResponseXML( getter_AddRefs( pDOMDocument ) ); if (NS_SUCCEEDED( rv )) { if (pDOMDocument) { printf( "Synchronous read of %s successful, DOMDocument created\n", argv[2] ); } else { printf( "Synchronous read of %s NOT successful, DOMDocument NOT created\n", argv[2] ); } } else { printf( "pXMLHttpRequest->GetResponseXML failed for %s - %08X\n", argv[2], rv ); } } else { printf( "pXMLHttpRequest->Send failed for %s - %08X\n", argv[2], rv ); } } else { printf( "pXMLHttpRequest->OpenRequest failed for %s - %08X\n", argv[2], rv ); } } else { printf( "do_CreateInstance of XMLHttpRequest failed for %s - %08X\n", argv[2], rv ); } } #if 0 else if (nsCRT::strcasecmp( argv[1], "load" ) == 0) { nsMyListener * listener = new nsMyListener(); listener->Start(argv[2]); } #endif else { usage( ); } } else { usage( ); } if (pDOMDocument) { nsCOMPtr element; pDOMDocument->GetDocumentElement(getter_AddRefs(element)); nsAutoString tagName; if (element) element->GetTagName(tagName); char *s = ToNewCString(tagName); printf("Document element=\"%s\"\n",s); nsCRT::free(s); nsCOMPtr doc = do_QueryInterface(pDOMDocument); if (doc) { nsCAutoString spec; doc->GetDocumentURI()->GetSpec(spec); printf("Document URI=\"%s\"\n",spec.get()); } } pURI = nsnull; pChannel = nsnull; pInputStream = nsnull; pDOMParser = nsnull; pDOMDocument = nsnull; pXMLHttpRequest = nsnull; if (servMgr) rv = NS_ShutdownXPCOM(servMgr); return rv; }