2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "TestCommon.h"
|
|
|
|
#include "nsIComponentRegistrar.h"
|
|
|
|
#include "nsISocketTransportService.h"
|
|
|
|
#include "nsISocketTransport.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsStringAPI.h"
|
2012-06-05 19:08:30 -07:00
|
|
|
#include "nsIFile.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "prlog.h"
|
|
|
|
#include "prenv.h"
|
|
|
|
#include "prthread.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#if defined(PR_LOGGING)
|
|
|
|
//
|
|
|
|
// set NSPR_LOG_MODULES=Test:5
|
|
|
|
//
|
2012-07-30 07:20:58 -07:00
|
|
|
static PRLogModuleInfo *gTestLog = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
#define LOG(args) PR_LOG(gTestLog, PR_LOG_DEBUG, args)
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static NS_DEFINE_CID(kSocketTransportServiceCID, NS_SOCKETTRANSPORTSERVICE_CID);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static nsresult
|
2012-08-22 08:56:38 -07:00
|
|
|
RunBlockingTest(const nsACString &host, int32_t port, nsIFile *file)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
LOG(("RunBlockingTest\n"));
|
|
|
|
|
|
|
|
nsCOMPtr<nsISocketTransportService> sts =
|
|
|
|
do_GetService(kSocketTransportServiceCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> input;
|
|
|
|
rv = NS_NewLocalFileInputStream(getter_AddRefs(input), file);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISocketTransport> trans;
|
2012-07-30 07:20:58 -07:00
|
|
|
rv = sts->CreateTransport(nullptr, 0, host, port, nullptr, getter_AddRefs(trans));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIOutputStream> output;
|
|
|
|
rv = trans->OpenOutputStream(nsITransport::OPEN_BLOCKING, 100, 10, getter_AddRefs(output));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
char buf[120];
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t nr, nw;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (;;) {
|
|
|
|
rv = input->Read(buf, sizeof(buf), &nr);
|
|
|
|
if (NS_FAILED(rv) || (nr == 0)) return rv;
|
|
|
|
|
|
|
|
/*
|
|
|
|
const char *p = buf;
|
|
|
|
while (nr) {
|
|
|
|
rv = output->Write(p, nr, &nw);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nr -= nw;
|
|
|
|
p += nw;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
rv = output->Write(buf, nr, &nw);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(nr == nw, "not all written");
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG((" done copying data.\n"));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
if (test_common_init(&argc, &argv) != 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
if (argc < 4) {
|
|
|
|
printf("usage: %s <host> <port> <file-to-read>\n", argv[0]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
char* hostName = argv[1];
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t port = atoi(argv[2]);
|
2007-03-22 10:30:00 -07:00
|
|
|
char* fileName = argv[3];
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIServiceManager> servMan;
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_InitXPCOM2(getter_AddRefs(servMan), nullptr, nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#if defined(PR_LOGGING)
|
|
|
|
gTestLog = PR_NewLogModule("Test");
|
|
|
|
#endif
|
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCOMPtr<nsIFile> file;
|
2011-10-17 07:59:28 -07:00
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(fileName), false, getter_AddRefs(file));
|
2012-08-07 10:17:27 -07:00
|
|
|
if (NS_FAILED(rv)) return -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rv = RunBlockingTest(nsDependentCString(hostName), port, file);
|
2008-08-13 23:44:42 -07:00
|
|
|
#if defined(PR_LOGGING)
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
LOG(("RunBlockingTest failed [rv=%x]\n", rv));
|
2008-08-13 23:44:42 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// give background threads a chance to finish whatever work they may
|
|
|
|
// be doing.
|
|
|
|
LOG(("sleeping for 5 seconds...\n"));
|
|
|
|
PR_Sleep(PR_SecondsToInterval(5));
|
|
|
|
} // this scopes the nsCOMPtrs
|
|
|
|
// no nsCOMPtrs are allowed to be alive when you call NS_ShutdownXPCOM
|
2012-07-30 07:20:58 -07:00
|
|
|
rv = NS_ShutdownXPCOM(nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
|
2012-08-07 10:17:27 -07:00
|
|
|
return 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|