/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIDOMParser.idl */ #ifndef __gen_nsIDOMParser_h__ #define __gen_nsIDOMParser_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIInputStream; /* forward declaration */ class nsIDOMDocument; /* forward declaration */ class nsIURI; /* forward declaration */ /* starting interface: nsIDOMParser */ #define NS_IDOMPARSER_IID_STR "d347c6c0-5129-11d4-9a54-000064657374" #define NS_IDOMPARSER_IID \ {0xd347c6c0, 0x5129, 0x11d4, \ { 0x9a, 0x54, 0x00, 0x00, 0x64, 0x65, 0x73, 0x74 }} /** * The nsIDOMParser interface is a non-SAX interface that can be used * to parse a string or byte stream containing XML or HTML content * to a DOM document. Parsing is always synchronous - a document is always * returned from the parsing methods. This is as opposed to loading and * parsing with the XMLHttpRequest interface, which can be used for * asynchronous (callback-based) loading. */ class NS_NO_VTABLE nsIDOMParser : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMPARSER_IID) /** * The string passed in is parsed into a DOM document. * * @param str The string to be parsed * @param contentType The content type of the string - either text/xml * or text/html * @returns The DOM document created as a result of parsing the * string */ /* nsIDOMDocument parseFromString (in wstring str, in string contentType); */ NS_IMETHOD ParseFromString(const PRUnichar *str, const char *contentType, nsIDOMDocument **_retval) = 0; /** * The byte stream passed in is parsed into a DOM document. * * @param stream The byte stream whose contents are parsed * @param charset The character set that was used to encode the byte * stream. NULL if not specified. * @param contentType The content type of the string - either text/xml * or text/html * @returns The DOM document created as a result of parsing the * stream */ /* nsIDOMDocument parseFromStream (in nsIInputStream stream, in string charset, in long contentLength, in string contentType); */ NS_IMETHOD ParseFromStream(nsIInputStream *stream, const char *charset, PRInt32 contentLength, const char *contentType, nsIDOMDocument **_retval) = 0; /** * Set/Get the baseURI. You will probably not need this if you * have a script environment. This is mostly intended for cases * without a script environment, for example calling from native * code. */ /* attribute nsIURI baseURI; */ NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) = 0; NS_IMETHOD SetBaseURI(nsIURI * aBaseURI) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOMPARSER \ NS_IMETHOD ParseFromString(const PRUnichar *str, const char *contentType, nsIDOMDocument **_retval); \ NS_IMETHOD ParseFromStream(nsIInputStream *stream, const char *charset, PRInt32 contentLength, const char *contentType, nsIDOMDocument **_retval); \ NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI); \ NS_IMETHOD SetBaseURI(nsIURI * aBaseURI); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOMPARSER(_to) \ NS_IMETHOD ParseFromString(const PRUnichar *str, const char *contentType, nsIDOMDocument **_retval) { return _to ParseFromString(str, contentType, _retval); } \ NS_IMETHOD ParseFromStream(nsIInputStream *stream, const char *charset, PRInt32 contentLength, const char *contentType, nsIDOMDocument **_retval) { return _to ParseFromStream(stream, charset, contentLength, contentType, _retval); } \ NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) { return _to GetBaseURI(aBaseURI); } \ NS_IMETHOD SetBaseURI(nsIURI * aBaseURI) { return _to SetBaseURI(aBaseURI); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOMPARSER(_to) \ NS_IMETHOD ParseFromString(const PRUnichar *str, const char *contentType, nsIDOMDocument **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ParseFromString(str, contentType, _retval); } \ NS_IMETHOD ParseFromStream(nsIInputStream *stream, const char *charset, PRInt32 contentLength, const char *contentType, nsIDOMDocument **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ParseFromStream(stream, charset, contentLength, contentType, _retval); } \ NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBaseURI(aBaseURI); } \ NS_IMETHOD SetBaseURI(nsIURI * aBaseURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetBaseURI(aBaseURI); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDOMParser : public nsIDOMParser { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMPARSER nsDOMParser(); virtual ~nsDOMParser(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDOMParser, nsIDOMParser) nsDOMParser::nsDOMParser() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsDOMParser::~nsDOMParser() { /* destructor code */ } /* nsIDOMDocument parseFromString (in wstring str, in string contentType); */ NS_IMETHODIMP nsDOMParser::ParseFromString(const PRUnichar *str, const char *contentType, nsIDOMDocument **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMDocument parseFromStream (in nsIInputStream stream, in string charset, in long contentLength, in string contentType); */ NS_IMETHODIMP nsDOMParser::ParseFromStream(nsIInputStream *stream, const char *charset, PRInt32 contentLength, const char *contentType, nsIDOMDocument **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsIURI baseURI; */ NS_IMETHODIMP nsDOMParser::GetBaseURI(nsIURI * *aBaseURI) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDOMParser::SetBaseURI(nsIURI * aBaseURI) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #define NS_DOMPARSER_CID \ { /* 3a8a3a50-512c-11d4-9a54-000064657374 */ \ 0x3a8a3a50, 0x512c, 0x11d4, \ {0x9a, 0x54, 0x00, 0x00, 0x64, 0x65, 0x73, 0x74} } #define NS_DOMPARSER_CONTRACTID \ "@mozilla.org/xmlextras/domparser;1" #endif /* __gen_nsIDOMParser_h__ */ .