mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
90 lines
2.2 KiB
C++
90 lines
2.2 KiB
C++
#include <stdio.h>
|
|
#include "TestCommon.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "prlog.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#if defined(PR_LOGGING)
|
|
//
|
|
// set NSPR_LOG_MODULES=Test:5
|
|
//
|
|
static PRLogModuleInfo *gTestLog = nullptr;
|
|
#endif
|
|
#define LOG(args) PR_LOG(gTestLog, PR_LOG_DEBUG, args)
|
|
|
|
class MyStreamLoaderObserver MOZ_FINAL : public nsIStreamLoaderObserver
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSISTREAMLOADEROBSERVER
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS1(MyStreamLoaderObserver, nsIStreamLoaderObserver)
|
|
|
|
NS_IMETHODIMP
|
|
MyStreamLoaderObserver::OnStreamComplete(nsIStreamLoader *loader,
|
|
nsISupports *ctxt,
|
|
nsresult status,
|
|
uint32_t resultLen,
|
|
const uint8_t *result)
|
|
{
|
|
LOG(("OnStreamComplete [status=%x resultLen=%u]\n", status, resultLen));
|
|
|
|
nsCOMPtr<nsIRequest> request;
|
|
loader->GetRequest(getter_AddRefs(request));
|
|
LOG((" request=%p\n", request.get()));
|
|
|
|
QuitPumpingEvents();
|
|
return NS_OK;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if (test_common_init(&argc, &argv) != 0)
|
|
return -1;
|
|
|
|
if (argc < 2) {
|
|
printf("usage: %s <url>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
|
|
#if defined(PR_LOGGING)
|
|
gTestLog = PR_NewLogModule("Test");
|
|
#endif
|
|
|
|
nsresult rv = NS_InitXPCOM2(nullptr, nullptr, nullptr);
|
|
if (NS_FAILED(rv))
|
|
return -1;
|
|
|
|
{
|
|
nsCOMPtr<nsIURI> uri;
|
|
rv = NS_NewURI(getter_AddRefs(uri), nsDependentCString(argv[1]));
|
|
if (NS_FAILED(rv))
|
|
return -1;
|
|
|
|
nsCOMPtr<nsIChannel> chan;
|
|
rv = NS_NewChannel(getter_AddRefs(chan), uri);
|
|
if (NS_FAILED(rv))
|
|
return -1;
|
|
|
|
nsCOMPtr<nsIStreamLoaderObserver> observer = new MyStreamLoaderObserver();
|
|
if (!observer)
|
|
return -1;
|
|
|
|
nsCOMPtr<nsIStreamLoader> loader;
|
|
rv = NS_NewStreamLoader(getter_AddRefs(loader), observer);
|
|
if (NS_FAILED(rv))
|
|
return -1;
|
|
|
|
rv = chan->AsyncOpen(loader, nullptr);
|
|
if (NS_FAILED(rv))
|
|
return -1;
|
|
|
|
PumpEvents();
|
|
} // this scopes the nsCOMPtrs
|
|
// no nsCOMPtrs are allowed to be alive when you call NS_ShutdownXPCOM
|
|
NS_ShutdownXPCOM(nullptr);
|
|
return rv;
|
|
}
|