|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/root/usr/lib64/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/json/nsIJSON.idl
*/
#ifndef __gen_nsIJSON_h__
#define __gen_nsIJSON_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
#include "jspubtd.h"
/* 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 nsIOutputStream; /* forward declaration */
class nsIScriptGlobalObject; /* forward declaration */
/* starting interface: nsIJSON */
#define NS_IJSON_IID_STR "43845d58-1054-47fb-8be3-970b3f7bd7ea"
#define NS_IJSON_IID \
{0x43845d58, 0x1054, 0x47fb, \
{ 0x8b, 0xe3, 0x97, 0x0b, 0x3f, 0x7b, 0xd7, 0xea }}
class NS_NO_VTABLE nsIJSON : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IJSON_IID)
/* [deprecated,implicit_jscontext,optional_argc] AString encode ([optional] in jsval value); */
NS_IMETHOD Encode(const JS::Value & value, JSContext* cx, uint8_t _argc, nsAString & _retval) = 0;
/* [deprecated,implicit_jscontext,optional_argc] void encodeToStream (in nsIOutputStream stream, in string charset, in boolean writeBOM, [optional] in jsval value); */
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, const JS::Value & value, JSContext* cx, uint8_t _argc) = 0;
/* [deprecated,implicit_jscontext] jsval decode (in AString str); */
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::Value *_retval) = 0;
/* [implicit_jscontext] jsval decodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) = 0;
/* [noscript] AString encodeFromJSVal (in JSValPtr value, in JSContext cx); */
NS_IMETHOD EncodeFromJSVal(jsval *value, JSContext *cx, nsAString & _retval) = 0;
/* [noscript] jsval decodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) = 0;
/* [implicit_jscontext] jsval legacyDecode (in AString str); */
NS_IMETHOD LegacyDecode(const nsAString & str, JSContext* cx, JS::Value *_retval) = 0;
/* [implicit_jscontext] jsval legacyDecodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHOD LegacyDecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) = 0;
/* [noscript] jsval legacyDecodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHOD LegacyDecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIJSON, NS_IJSON_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIJSON \
NS_IMETHOD Encode(const JS::Value & value, JSContext* cx, uint8_t _argc, nsAString & _retval); \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, const JS::Value & value, JSContext* cx, uint8_t _argc); \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::Value *_retval); \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval); \
NS_IMETHOD EncodeFromJSVal(jsval *value, JSContext *cx, nsAString & _retval); \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval); \
NS_IMETHOD LegacyDecode(const nsAString & str, JSContext* cx, JS::Value *_retval); \
NS_IMETHOD LegacyDecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval); \
NS_IMETHOD LegacyDecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIJSON(_to) \
NS_IMETHOD Encode(const JS::Value & value, JSContext* cx, uint8_t _argc, nsAString & _retval) { return _to Encode(value, cx, _argc, _retval); } \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, const JS::Value & value, JSContext* cx, uint8_t _argc) { return _to EncodeToStream(stream, charset, writeBOM, value, cx, _argc); } \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::Value *_retval) { return _to Decode(str, cx, _retval); } \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) { return _to DecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD EncodeFromJSVal(jsval *value, JSContext *cx, nsAString & _retval) { return _to EncodeFromJSVal(value, cx, _retval); } \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) { return _to DecodeToJSVal(str, cx, _retval); } \
NS_IMETHOD LegacyDecode(const nsAString & str, JSContext* cx, JS::Value *_retval) { return _to LegacyDecode(str, cx, _retval); } \
NS_IMETHOD LegacyDecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) { return _to LegacyDecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD LegacyDecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) { return _to LegacyDecodeToJSVal(str, cx, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIJSON(_to) \
NS_IMETHOD Encode(const JS::Value & value, JSContext* cx, uint8_t _argc, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Encode(value, cx, _argc, _retval); } \
NS_IMETHOD EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, const JS::Value & value, JSContext* cx, uint8_t _argc) { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeToStream(stream, charset, writeBOM, value, cx, _argc); } \
NS_IMETHOD Decode(const nsAString & str, JSContext* cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Decode(str, cx, _retval); } \
NS_IMETHOD DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD EncodeFromJSVal(jsval *value, JSContext *cx, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeFromJSVal(value, cx, _retval); } \
NS_IMETHOD DecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeToJSVal(str, cx, _retval); } \
NS_IMETHOD LegacyDecode(const nsAString & str, JSContext* cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->LegacyDecode(str, cx, _retval); } \
NS_IMETHOD LegacyDecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->LegacyDecodeFromStream(stream, contentLength, cx, _retval); } \
NS_IMETHOD LegacyDecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->LegacyDecodeToJSVal(str, cx, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsJSON : public nsIJSON
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIJSON
nsJSON();
private:
~nsJSON();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsJSON, nsIJSON)
nsJSON::nsJSON()
{
/* member initializers and constructor code */
}
nsJSON::~nsJSON()
{
/* destructor code */
}
/* [deprecated,implicit_jscontext,optional_argc] AString encode ([optional] in jsval value); */
NS_IMETHODIMP nsJSON::Encode(const JS::Value & value, JSContext* cx, uint8_t _argc, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [deprecated,implicit_jscontext,optional_argc] void encodeToStream (in nsIOutputStream stream, in string charset, in boolean writeBOM, [optional] in jsval value); */
NS_IMETHODIMP nsJSON::EncodeToStream(nsIOutputStream *stream, const char * charset, bool writeBOM, const JS::Value & value, JSContext* cx, uint8_t _argc)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [deprecated,implicit_jscontext] jsval decode (in AString str); */
NS_IMETHODIMP nsJSON::Decode(const nsAString & str, JSContext* cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] jsval decodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHODIMP nsJSON::DecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] AString encodeFromJSVal (in JSValPtr value, in JSContext cx); */
NS_IMETHODIMP nsJSON::EncodeFromJSVal(jsval *value, JSContext *cx, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] jsval decodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHODIMP nsJSON::DecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] jsval legacyDecode (in AString str); */
NS_IMETHODIMP nsJSON::LegacyDecode(const nsAString & str, JSContext* cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] jsval legacyDecodeFromStream (in nsIInputStream stream, in long contentLength); */
NS_IMETHODIMP nsJSON::LegacyDecodeFromStream(nsIInputStream *stream, int32_t contentLength, JSContext* cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] jsval legacyDecodeToJSVal (in AString str, in JSContext cx); */
NS_IMETHODIMP nsJSON::LegacyDecodeToJSVal(const nsAString & str, JSContext *cx, JS::Value *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIJSON_h__ */