1999-08-25 02:04:05 +04:00
|
|
|
#include "Converters.h"
|
|
|
|
#include "nsIStringStream.h"
|
2001-03-08 03:41:53 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2001-09-29 12:28:41 +04:00
|
|
|
#include "nsReadableUtils.h"
|
1999-08-25 02:04:05 +04:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
// TestConverter
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS2(TestConverter, nsIStreamConverter, nsIStreamListener);
|
|
|
|
|
|
|
|
TestConverter::TestConverter() {
|
|
|
|
NS_INIT_ISUPPORTS();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert aFromStream (of type aFromType), to _retval (nsIInputStream of type aToType).
|
|
|
|
// This Convert method simply converts the stream byte-by-byte, to the first character
|
|
|
|
// in the aToType "string".
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TestConverter::Convert(nsIInputStream *aFromStream,
|
|
|
|
const PRUnichar *aFromType,
|
|
|
|
const PRUnichar *aToType,
|
|
|
|
nsISupports *ctxt,
|
|
|
|
nsIInputStream **_retval) {
|
2001-03-08 03:41:53 +03:00
|
|
|
char buf[1024+1];
|
1999-08-25 02:04:05 +04:00
|
|
|
PRUint32 read;
|
|
|
|
nsresult rv = aFromStream->Read(buf, 1024, &read);
|
1999-09-10 02:05:05 +04:00
|
|
|
if (NS_FAILED(rv) || read == 0) return rv;
|
1999-08-25 02:04:05 +04:00
|
|
|
|
2001-03-10 21:18:36 +03:00
|
|
|
// verify that the data we're converting matches the from type
|
|
|
|
// if it doesn't then we're being handed the wrong data.
|
|
|
|
nsString from(aFromType);
|
2001-09-29 12:28:41 +04:00
|
|
|
char *fromMIME = ToNewCString(from);
|
2001-03-10 21:18:36 +03:00
|
|
|
char fromChar = *fromMIME;
|
|
|
|
nsMemory::Free(fromMIME);
|
|
|
|
|
|
|
|
if (fromChar != buf[0]) {
|
|
|
|
printf("We're receiving %c, but are supposed to have %c.\n", buf[0], fromChar);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-25 02:04:05 +04:00
|
|
|
// Get the first character
|
2000-03-31 14:19:31 +04:00
|
|
|
nsString to(aToType);
|
2001-09-29 12:28:41 +04:00
|
|
|
char *toMIME = ToNewCString(to);
|
1999-08-25 02:04:05 +04:00
|
|
|
char toChar = *toMIME;
|
2000-06-03 13:46:12 +04:00
|
|
|
nsMemory::Free(toMIME);
|
1999-08-25 02:04:05 +04:00
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < read; i++)
|
|
|
|
buf[i] = toChar;
|
|
|
|
|
2001-03-08 03:41:53 +03:00
|
|
|
buf[read] = '\0';
|
|
|
|
|
2002-01-28 01:02:00 +03:00
|
|
|
return NS_NewCStringInputStream(_retval, nsDependentCString(buf));
|
1999-08-25 02:04:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This method initializes any internal state before the stream converter
|
|
|
|
* begins asyncronous conversion */
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TestConverter::AsyncConvertData(const PRUnichar *aFromType,
|
|
|
|
const PRUnichar *aToType,
|
|
|
|
nsIStreamListener *aListener,
|
|
|
|
nsISupports *ctxt) {
|
|
|
|
NS_ASSERTION(aListener, "null listener");
|
|
|
|
|
|
|
|
mListener = aListener;
|
|
|
|
|
|
|
|
// based on these types, setup internal state to handle the appropriate conversion.
|
|
|
|
fromType = aFromType;
|
|
|
|
toType = aToType;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
};
|
|
|
|
|
|
|
|
// nsIStreamListener method
|
|
|
|
/* This method handles asyncronous conversion of data. */
|
|
|
|
NS_IMETHODIMP
|
2001-02-21 23:38:08 +03:00
|
|
|
TestConverter::OnDataAvailable(nsIRequest* request,
|
1999-08-25 02:04:05 +04:00
|
|
|
nsISupports *ctxt,
|
|
|
|
nsIInputStream *inStr,
|
|
|
|
PRUint32 sourceOffset,
|
|
|
|
PRUint32 count) {
|
|
|
|
nsresult rv;
|
2001-03-08 03:41:53 +03:00
|
|
|
nsCOMPtr<nsIInputStream> convertedStream;
|
1999-08-25 02:04:05 +04:00
|
|
|
// just make a syncronous call to the Convert() method.
|
|
|
|
// Anything can happen here, I just happen to be using the sync call to
|
|
|
|
// do the actual conversion.
|
2001-06-30 15:02:25 +04:00
|
|
|
rv = Convert(inStr, fromType.get(), toType.get(), ctxt, getter_AddRefs(convertedStream));
|
1999-08-25 02:04:05 +04:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
PRUint32 len;
|
1999-09-10 02:05:05 +04:00
|
|
|
convertedStream->Available(&len);
|
2001-02-21 23:38:08 +03:00
|
|
|
return mListener->OnDataAvailable(request, ctxt, convertedStream, sourceOffset, len);
|
1999-08-25 02:04:05 +04:00
|
|
|
};
|
|
|
|
|
2001-04-10 10:01:08 +04:00
|
|
|
// nsIRequestObserver methods
|
1999-08-25 02:04:05 +04:00
|
|
|
/* These methods just pass through directly to the mListener */
|
|
|
|
NS_IMETHODIMP
|
2001-02-21 23:38:08 +03:00
|
|
|
TestConverter::OnStartRequest(nsIRequest* request, nsISupports *ctxt) {
|
|
|
|
return mListener->OnStartRequest(request, ctxt);
|
1999-08-25 02:04:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-02-21 23:38:08 +03:00
|
|
|
TestConverter::OnStopRequest(nsIRequest* request, nsISupports *ctxt,
|
2001-04-10 10:01:08 +04:00
|
|
|
nsresult aStatus) {
|
|
|
|
return mListener->OnStopRequest(request, ctxt, aStatus);
|
1999-08-25 02:04:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// TestConverterFactory
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
TestConverterFactory::TestConverterFactory(const nsCID &aClass,
|
|
|
|
const char* className,
|
2000-09-14 03:57:52 +04:00
|
|
|
const char* contractID)
|
|
|
|
: mClassID(aClass), mClassName(className), mContractID(contractID)
|
1999-08-25 02:04:05 +04:00
|
|
|
{
|
|
|
|
NS_INIT_ISUPPORTS();
|
|
|
|
}
|
|
|
|
|
|
|
|
TestConverterFactory::~TestConverterFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-11-17 06:45:13 +03:00
|
|
|
NS_IMPL_ISUPPORTS1(TestConverterFactory, nsIFactory)
|
1999-08-25 02:04:05 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TestConverterFactory::CreateInstance(nsISupports *aOuter,
|
|
|
|
const nsIID &aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
|
|
|
if (! aResult)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if (aOuter)
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
nsISupports *inst = nsnull;
|
|
|
|
if (mClassID.Equals(kTestConverterCID)) {
|
|
|
|
TestConverter *conv = new TestConverter();
|
|
|
|
if (!conv) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
conv->QueryInterface(NS_GET_IID(nsISupports), (void**)&inst);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NS_ERROR_NO_INTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inst)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(inst);
|
|
|
|
*aResult = inst;
|
|
|
|
NS_RELEASE(inst);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult TestConverterFactory::LockFactory(PRBool aLock)
|
|
|
|
{
|
|
|
|
// Not implemented in simplest case.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// TestConverterFactory END
|
1999-08-28 01:23:42 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|