Various changes to make it Right * events.js parameterize hook functions to allow arbitrary hook arrays to be used. search hooks in reverse order of add * irc.js check to see if server is connected before trying to disconnect on net.quit() watch for exception on connect() move auto-join-channel into on001 handler. watch for java.lang.ThreadDeath if running under rhino. fix onNick for the undernet network * utils.js define dd under rhino. allow functions as patterns in matchObject(). * ircbot.js define gc() for rhino. add initPersonality hook. add support for script line continuation with "\" * chatzilla.xul include globalOverlay.xul (why?) comment out style change menu. * handlers.js read prefs before initialization. add updateTitle() calls where appropriate. * readprefs.js Add comment to explain valid prefs. add style prefs. * static.js Fix matchMyNick to match if nick is anywhere in the message (bug 24860.) Hook up user styles in output window. add updateTitle(), (bug 24671.) * chatzilla.css remove window size designation (resize issues.) * output-default.css remove font size attributes. swap mark=odd and directed-to-me declaration order, to make directed-to-me take precedence. * output-marble.css tab->space changes git-svn-id: svn://10.0.0.236/trunk@58918 18797224-902f-48f8-a5cc-f745e15eee43
145 lines
3.7 KiB
JavaScript
Executable File
145 lines
3.7 KiB
JavaScript
Executable File
/* -*- 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
|
|
*
|
|
*
|
|
* 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 CBSConnection ()
|
|
{
|
|
this._socket = null;
|
|
}
|
|
|
|
CBSConnection.prototype.connect = function(host, port, bind, tcp_flag)
|
|
{
|
|
if (typeof tcp_flag == "undefined")
|
|
tcp_flag = false;
|
|
|
|
this.host = host;
|
|
this.port = port;
|
|
this.bind = bind;
|
|
this.tcp_flag = tcp_flag;
|
|
|
|
this._socket = new java.net.Socket(host, port);
|
|
this._inputStream = this._socket.getInputStream();
|
|
this._outputStream = new java.io.PrintStream(this._socket.getOutputStream());
|
|
|
|
// create a 512 byte buffer for reading into.
|
|
this._buffer = java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 512);
|
|
dd("connected to " + host);
|
|
|
|
this.isConnected = true;
|
|
|
|
return this.isConnected;
|
|
}
|
|
|
|
CBSConnection.prototype.disconnect = function()
|
|
{
|
|
if (this.isConnected) {
|
|
this.isConnected = false;
|
|
this._socket.close();
|
|
delete this._socket;
|
|
delete this._inputStream;
|
|
delete this._outputStream;
|
|
}
|
|
}
|
|
|
|
CBSConnection.prototype.sendData = function(str)
|
|
{
|
|
// dd ("sendData: str=" + str);
|
|
|
|
if (!this.isConnected)
|
|
throw "Not Connected.";
|
|
|
|
var rv = false;
|
|
|
|
|
|
try
|
|
{
|
|
/* var s = new java.lang.String (str);
|
|
b = s.getBytes();
|
|
|
|
this._outputStream.write(b, 0, b.length); */
|
|
this._outputStream.print(str);
|
|
rv = true;
|
|
}
|
|
catch (ex)
|
|
{
|
|
dd ("write caught exception " + 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.";
|
|
|
|
var rv;
|
|
|
|
// dd ("readData: timeout " + timeout);
|
|
|
|
try {
|
|
this._socket.setSoTimeout(Number(timeout));
|
|
var len = this._inputStream.read(this._buffer);
|
|
// dd ("read done, len = " + len + ", buffer = " + this._buffer);
|
|
|
|
rv = new java.lang.String(this._buffer, 0, 0, len);
|
|
} catch (ex) {
|
|
// dd ("read caught exception " + ex + ".");
|
|
|
|
if ((typeof ex != "undefined") &&
|
|
(!(ex instanceof java.io.InterruptedIOException)))
|
|
{
|
|
dd ("@@@ throwing " + ex);
|
|
|
|
this.isConnected = false;
|
|
throw (ex);
|
|
} else {
|
|
// dd ("int");
|
|
rv = "";
|
|
}
|
|
}
|
|
|
|
// dd ("readData: rv = '" + rv + "'");
|
|
|
|
return rv;
|
|
}
|