Mozilla/mozilla/extensions/irc/js/lib/connection-xpcom.js
dougt%netscape.com 7af79c83df Revising nsIChannel to allow for overlapped i/o. This consists of three parts:
1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.

This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols).  The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.

The full details of the change on written up in the netlib newsgroup.

r=darin@netscape.com
sr=rpotts@netscape.com


git-svn-id: svn://10.0.0.236/trunk@86717 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-10 00:16:26 +00:00

213 lines
5.1 KiB
JavaScript

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla 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/MPL/
*
* 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.
*
* The Original Code is JSIRC Library
*
* The Initial Developer of the Original Code is New Dimensions Consulting,
* Inc. Portions created by New Dimensions Consulting, Inc. are
* Copyright (C) 1999 New Dimenstions Consulting, Inc. All
* Rights Reserved.
*
* Contributor(s):
*
*
* Contributor(s):
* Robert Ginda, rginda@ndcico.com, original author
* Peter Van der Beken, peter.vanderbeken@pandora.be, necko-only version
*
* depends on utils.js, XPCOM, and the XPCOM component
* component://misc/bs/connection
*
* sane wrapper around the insane bsIConnection component. This
* component needs to be replaced, or at least fixed, so this wrapper
* will hopefully make it easy to do this in the future.
*
*/
function toScriptableInputStream (i)
{
var si = Components.classes["@mozilla.org/scriptableinputstream;1"];
si = si.createInstance();
si = si.QueryInterface(Components.interfaces.nsIScriptableInputStream);
si.init(i);
return si;
}
function CBSConnection ()
{
var sockServiceClass =
Components.classesByID["{c07e81e0-ef12-11d2-92b6-00105a1b0d64}"];
if (!sockServiceClass)
throw ("Couldn't get socket service class.");
var sockService = sockServiceClass.getService();
if (!sockService)
throw ("Couldn't get socket service.");
this._sockService = sockService.QueryInterface
(Components.interfaces.nsISocketTransportService);
this.wrappedJSObject = this;
}
CBSConnection.prototype.connect = function(host, port, bind, tcp_flag)
{
if (typeof tcp_flag == "undefined")
tcp_flag = false;
this.host = host.toLowerCase();
this.port = port;
this.bind = bind;
this.tcp_flag = tcp_flag;
this._channel = this._sockService.createTransport (host, port, null, -1,
0, 0);
if (!this._channel)
throw ("Error opening channel.");
this._outputStream = this._channel.open(0);
if (!this._outputStream)
throw ("Error getting output stream.");
this.isConnected = true;
return this.isConnected;
}
CBSConnection.prototype.disconnect = function()
{
if (this.isConnected) {
this.isConnected = false;
this._inputStream.close();
this._outputStream.close();
}
}
CBSConnection.prototype.sendData = function(str)
{
if (!this.isConnected)
throw "Not Connected.";
var rv = false;
try
{
this._outputStream.write(str, str.length);
rv = true;
}
catch (ex)
{
if (typeof ex != "undefined")
{
this.isConnected = false;
throw (ex);
}
else
rv = false;
}
return rv;
}
CBSConnection.prototype.readData = function(timeout)
{
if (!this.isConnected)
throw "Not Connected.";
if (!this._inputStream)
{
this._inputStream =
toScriptableInputStream(this._channel.openInputStream (0, 0));
if (!this._inputStream)
throw ("Error getting input stream.");
}
var rv, av;
try
{
av = this._inputStream.available();
if (av)
rv = this._inputStream.read (av);
else
rv = "";
}
catch (ex)
{
dd ("*** Caught " + ex + " while reading.")
if (typeof ex != "undefined") {
this.isConnected = false;
throw (ex);
} else {
rv = "";
}
}
return rv;
}
if (jsenv.HAS_DOCUMENT)
{
CBSConnection.prototype.startAsyncRead =
function (server)
{
this._channel.asyncRead (new StreamListener (server), this);
}
}
function StreamListener(server)
{
this.server = server;
}
StreamListener.prototype.onStartRequest =
function (channel, ctxt)
{
dd ("onStartRequest: " + channel + ", " + ctxt);
}
StreamListener.prototype.onStopRequest =
function (channel, ctxt, status, errorMsg)
{
dd ("onStopRequest: " + channel + ", " + ctxt + ", " + status + ", " +
errorMsg);
}
StreamListener.prototype.onDataAvailable =
function (channel, ctxt, inStr, sourceOffset, count)
{
ctxt = ctxt.wrappedJSObject;
if (!ctxt)
{
dd ("*** Can't get wrappedJSObject from ctxt in " +
"StreamListener.onDataAvailable ***");
return;
}
if (!ctxt._inputStream)
ctxt._inputStream = toScriptableInputStream (inStr);
var ev = new CEvent ("server", "data-available", this.server,
"onDataAvailable");
ev.line = ctxt.readData(0);
this.server.parent.eventPump.addEvent (ev);
}