function JSJaCHttpPollingConnection(oDbg) {
	this.base = JSJaCConnection;
	this.base(oDbg);

	this.connect = JSJaCHPCConnect;
	this.disconnect = JSJaCHPCDisconnect;
	this.isPolling = function() { return true; };

	this._getFreeSlot = function() {
		if (typeof(this._req[0]) == 'undefined' || this._req[0].readyState == 4)
			return 0; 
		else
			return -1;
	}
	this._getRequestString = JSJaCHPCGetRequestString;
	this._getStreamID = JSJaCHPCGetStream;
	this._prepareResponse = JSJaCHPCPrepareResponse;
	this._setupRequest = JSJaCHPCSetupRequest;
}

function JSJaCHPCSetupRequest(async) {
 	var req = XmlHttp.create();
	try {
		req.open("POST",this.http_base,async);
		req.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	} catch(e) { this.oDbg.log(e,1); }
	return req;
}

function JSJaCHPCGetRequestString(xml) {
	var reqstr = this._sid;
	if (JSJaC_HAVEKEYS) {
		reqstr += ";"+this._keys.getKey();
		if (this._keys.lastKey()) {
			this._keys = new JSJaCKeys(b64_sha1,this.oDbg);
			reqstr += ';'+this._keys.getKey();
		}
	}
	reqstr += ',';
	if (xml)
		reqstr += xml;
	return reqstr;
}

function JSJaCHPCPrepareResponse(req) {
	if (!this.connected())
		return null;

	/* handle error */
	// proxy error (!)
	if (req.status != 200 && req.status != 0) {
		this.oDbg.log("invalid response:\n" + req.responseText,1);
		clearTimeout(this._timeout); // remove timer
		this._connected = false;
		this.oDbg.log("Disconnected.",1);
		this.handleEvent('ondisconnect');
		this.handleEvent('onerror',JSJaCError('503','cancel','service-unavailable'));
		return null;
	} 

	this.oDbg.log(req.getAllResponseHeaders(),4);
	var aPList = req.getResponseHeader('Set-Cookie');
	aPList = aPList.split(";");
	var sid;
	for (var i=0;i<aPList.length;i++) {
		var aArg = aPList[i].split("=");
		if (aArg[0] == 'ID')
			sid = aArg[1];
	}

	// http polling component error
	if (typeof(sid) != 'undefined' && sid.indexOf(':0') != -1) {
		switch (sid.substring(0,sid.indexOf(':0'))) {
		case '0':
			this.oDbg.log("invalid response:" + req.responseText,1);
			break;
		case '-1':
			this.oDbg.log("Internal Server Error",1);
			break;
		case '-2':
			this.oDbg.log("Bad Request",1);
			break;
		case '-3':
			this.oDbg.log("Key Sequence Error",1);
			break;
		}
		clearTimeout(this._timeout); // remove timer
		this._connected = false;
		this.oDbg.log("Disconnected.",1);
		this.handleEvent('ondisconnect');
		this.handleEvent('onerror',JSJaCError('500','wait','internal-server-error'));
		return null;
	}

	if (!req.responseText || req.responseText == '')
		return null;

	var response = XmlDocument.create();
	response.loadXML("<body>"+req.responseText+"</body>");
	return response;
}

function JSJaCHPCConnect(http_base,server,username,resource,pass,timerval,register) {
	// initial request to get sid and streamid

	this.http_base = http_base || '/';
	this.server = server || 'localhost';
	this.username = username;
	this.resource = resource;
	this.pass = pass;
	this.register = register;

	this.setPollInterval(timerval);

	this.oDbg.log("http_base: " + this.http_base + "\nserver:" + server,2);

	var reqstr = "0";
	if (JSJaC_HAVEKEYS) {
		this._keys = new JSJaCKeys(b64_sha1,this.oDbg); // generate first set of keys
		key = this._keys.getKey();
		reqstr += ";"+key;
	}
	reqstr += ",<stream:stream to='"+this.server+"' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'>";
	this.oDbg.log(reqstr,4);

	this._req[0] = this._setupRequest(false);	
	this._req[0].send(reqstr);

	// extract session ID
	this.oDbg.log(this._req[0].getAllResponseHeaders(),4);
	var aPList = this._req[0].getResponseHeader('Set-Cookie');
	aPList = aPList.split(";");
	for (var i=0;i<aPList.length;i++) {
		aArg = aPList[i].split("=");
		if (aArg[0] == 'ID')
			this._sid = aArg[1];
	}
	this.oDbg.log("got sid: "+this._sid,2);

	/* wait for initial stream response to extract streamid needed
	 * for digest auth
	 */
	this._getStreamID();
}

function JSJaCHPCGetStream() {

	if (!this._req[0].responseXML || this._req[0].responseText == '') {
		oCon = this;
		this._timeout = setTimeout("oCon._sendEmpty()",1000);
		return;
	}

	this.oDbg.log(this._req.responseText,4);

	// extract stream id used for non-SASL authentication
	if (this._req[0].responseText.match(/id=[\'\"]([^\'\"]+)[\'\"]/))
			this.streamid = RegExp.$1;
	this.oDbg.log("got streamid: "+this.streamid,2);

	this._connected = true;

	this._process(); // start polling

	if (this.register)
		this._doReg();
	else
		this._doAuth();
}

function JSJaCHPCDisconnect() {
	if (!this.connected())
		return;

	if (this._timeout)
		clearTimeout(this._timeout); // remove timer

	this._req = this._setupRequest(false);
	
	if (JSJaC_HAVEKEYS)
		this._req.send(this._sid+";"+this._keys.getKey()+",</stream:stream>");
	else
		this._req.send(this._sid+",</stream:stream>");
	this.oDbg.log("Disconnected: "+this._req.responseText,2);
	this._connected = false;
	this.handleEvent('ondisconnect');
}
