1999-06-07 21:33:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
1999-04-19 07:17:37 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-04-19 07:17:37 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-04-19 07:17:37 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-04-19 07:17:37 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-04-19 07:17:37 +00:00
|
|
|
*/
|
|
|
|
#include "stdio.h"
|
1999-05-04 00:31:40 +00:00
|
|
|
|
1999-05-04 18:50:59 +00:00
|
|
|
#ifdef WIN32
|
1999-04-19 07:17:37 +00:00
|
|
|
#include <windows.h>
|
1999-05-04 00:31:40 +00:00
|
|
|
#endif
|
2000-02-29 15:40:42 +00:00
|
|
|
#ifdef XP_OS2
|
|
|
|
#include <os2.h>
|
|
|
|
#endif
|
1999-04-19 07:17:37 +00:00
|
|
|
|
|
|
|
#include "nscore.h"
|
1999-06-29 01:52:30 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-04-19 07:17:37 +00:00
|
|
|
#include "nsISocketTransportService.h"
|
|
|
|
#include "nsIEventQueueService.h"
|
|
|
|
#include "nsIServiceManager.h"
|
1999-06-07 21:33:30 +00:00
|
|
|
#include "nsIChannel.h"
|
1999-04-19 07:17:37 +00:00
|
|
|
#include "nsIStreamListener.h"
|
1999-06-08 20:57:32 +00:00
|
|
|
#include "nsIBufferInputStream.h"
|
1999-04-19 07:17:37 +00:00
|
|
|
|
|
|
|
static NS_DEFINE_CID(kSocketTransportServiceCID, NS_SOCKETTRANSPORTSERVICE_CID);
|
|
|
|
static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID);
|
|
|
|
|
|
|
|
static int gKeepRunning = 1;
|
|
|
|
|
|
|
|
class InputTestConsumer : public nsIStreamListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
InputTestConsumer();
|
|
|
|
virtual ~InputTestConsumer();
|
|
|
|
|
|
|
|
// ISupports interface...
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// IStreamListener interface...
|
1999-07-07 08:08:40 +00:00
|
|
|
NS_IMETHOD OnStartRequest(nsIChannel* channel, nsISupports* context);
|
1999-04-19 07:17:37 +00:00
|
|
|
|
1999-07-07 08:08:40 +00:00
|
|
|
NS_IMETHOD OnDataAvailable(nsIChannel* channel, nsISupports* context,
|
1999-06-28 20:37:10 +00:00
|
|
|
nsIInputStream *aIStream,
|
1999-04-22 08:47:06 +00:00
|
|
|
PRUint32 aSourceOffset,
|
1999-04-19 07:17:37 +00:00
|
|
|
PRUint32 aLength);
|
|
|
|
|
1999-07-07 08:08:40 +00:00
|
|
|
NS_IMETHOD OnStopRequest(nsIChannel* channel, nsISupports* context,
|
1999-06-07 21:33:30 +00:00
|
|
|
nsresult aStatus,
|
1999-07-01 19:30:20 +00:00
|
|
|
const PRUnichar* aMsg);
|
1999-06-07 21:33:30 +00:00
|
|
|
|
1999-04-19 07:17:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
InputTestConsumer::InputTestConsumer()
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
}
|
|
|
|
|
|
|
|
InputTestConsumer::~InputTestConsumer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_DEFINE_IID(kIStreamListenerIID, NS_ISTREAMLISTENER_IID);
|
|
|
|
NS_IMPL_ISUPPORTS(InputTestConsumer,kIStreamListenerIID);
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-07-07 08:08:40 +00:00
|
|
|
InputTestConsumer::OnStartRequest(nsIChannel* channel, nsISupports* context)
|
1999-04-19 07:17:37 +00:00
|
|
|
{
|
1999-07-01 19:30:20 +00:00
|
|
|
printf("+++ OnStartRequest +++\n");
|
1999-04-19 07:17:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-07-07 08:08:40 +00:00
|
|
|
InputTestConsumer::OnDataAvailable(nsIChannel* channel,
|
|
|
|
nsISupports* context,
|
1999-06-28 20:37:10 +00:00
|
|
|
nsIInputStream *aIStream,
|
1999-04-22 08:47:06 +00:00
|
|
|
PRUint32 aSourceOffset,
|
1999-04-19 07:17:37 +00:00
|
|
|
PRUint32 aLength)
|
|
|
|
{
|
|
|
|
char buf[1025];
|
|
|
|
while (aLength > 0) {
|
|
|
|
PRUint32 amt;
|
1999-07-13 02:37:08 +00:00
|
|
|
aIStream->Read(buf, 1024, &amt);
|
1999-09-09 22:05:05 +00:00
|
|
|
if (amt == 0) break;
|
1999-04-19 07:17:37 +00:00
|
|
|
buf[amt] = '\0';
|
|
|
|
printf(buf);
|
|
|
|
aLength -= amt;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-07-07 08:08:40 +00:00
|
|
|
InputTestConsumer::OnStopRequest(nsIChannel* channel,
|
|
|
|
nsISupports* context,
|
|
|
|
nsresult aStatus,
|
|
|
|
const PRUnichar* aMsg)
|
1999-04-19 07:17:37 +00:00
|
|
|
{
|
|
|
|
gKeepRunning = 0;
|
1999-07-10 11:26:59 +00:00
|
|
|
printf("+++ OnStopRequest status %x +++\n", aStatus);
|
1999-04-19 07:17:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-22 18:24:02 +00:00
|
|
|
nsresult NS_AutoregisterComponents()
|
|
|
|
{
|
|
|
|
nsresult rv = nsComponentManager::AutoRegister(nsIComponentManager::NS_Startup, NULL /* default */);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-04-19 07:17:37 +00:00
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
1999-06-08 12:24:10 +00:00
|
|
|
if (argc < 2) {
|
1999-04-19 07:17:37 +00:00
|
|
|
printf("usage: %s <host>\n", argv[0]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int port;
|
|
|
|
char* hostName = argv[1];
|
|
|
|
//nsString portString(argv[2]);
|
|
|
|
|
|
|
|
//port = portString.ToInteger(&rv);
|
|
|
|
port = 13;
|
|
|
|
|
1999-06-22 18:24:02 +00:00
|
|
|
rv = NS_AutoregisterComponents();
|
1999-04-19 07:17:37 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
// Create the Event Queue for this thread...
|
|
|
|
NS_WITH_SERVICE(nsIEventQueueService, eventQService, kEventQueueServiceCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
rv = eventQService->CreateThreadEventQueue();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
1999-06-29 01:52:30 +00:00
|
|
|
nsCOMPtr<nsIEventQueue> eventQ;
|
1999-11-30 00:32:43 +00:00
|
|
|
rv = eventQService->GetThreadEventQueue(NS_CURRENT_THREAD, getter_AddRefs(eventQ));
|
1999-06-29 01:52:30 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
1999-04-19 07:17:37 +00:00
|
|
|
NS_WITH_SERVICE(nsISocketTransportService, sts, kSocketTransportServiceCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
1999-06-07 21:33:30 +00:00
|
|
|
nsIChannel* transport;
|
1999-04-19 07:17:37 +00:00
|
|
|
|
1999-12-04 10:01:32 +00:00
|
|
|
rv = sts->CreateTransport(hostName, port, hostName, 0, 0, &transport);
|
1999-04-19 07:17:37 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2000-03-29 03:58:50 +00:00
|
|
|
transport->AsyncRead(nsnull, new InputTestConsumer);
|
1999-04-19 07:17:37 +00:00
|
|
|
|
|
|
|
NS_RELEASE(transport);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enter the message pump to allow the URL load to proceed.
|
|
|
|
while ( gKeepRunning ) {
|
1999-06-03 18:34:51 +00:00
|
|
|
|
1999-05-04 18:50:59 +00:00
|
|
|
#ifdef WIN32
|
1999-04-19 07:17:37 +00:00
|
|
|
MSG msg;
|
|
|
|
|
|
|
|
if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
1999-06-03 18:34:51 +00:00
|
|
|
#else
|
|
|
|
#ifdef XP_MAC
|
|
|
|
/* Mac stuff is missing here! */
|
2000-02-29 15:40:42 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
#ifdef XP_OS2
|
|
|
|
QMSG qmsg;
|
|
|
|
|
|
|
|
if (WinGetMsg(0, &qmsg, 0, 0, 0))
|
|
|
|
WinDispatchMsg(0, &qmsg);
|
|
|
|
else
|
|
|
|
gKeepRunning = FALSE;
|
1999-06-03 18:34:51 +00:00
|
|
|
#else
|
1999-06-03 22:12:26 +00:00
|
|
|
PLEvent *gEvent;
|
1999-06-03 18:34:51 +00:00
|
|
|
rv = eventQ->GetEvent(&gEvent);
|
1999-06-08 12:24:10 +00:00
|
|
|
rv = eventQ->HandleEvent(gEvent);
|
1999-06-03 18:34:51 +00:00
|
|
|
#endif
|
2000-02-29 15:40:42 +00:00
|
|
|
#endif
|
1999-04-19 07:17:37 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
sts->Shutdown();
|
1999-11-01 21:57:14 +00:00
|
|
|
|
1999-04-19 07:17:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1999-06-22 18:24:02 +00:00
|
|
|
|