9c1e09f8ab
peer disconnects for any reason, end its session immediately. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5546 542714f4-19e9-0310-aa3c-eee0fc999fb1
140 lines
4.4 KiB
Java
140 lines
4.4 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.presents.peer.server;
|
|
|
|
import com.google.inject.Inject;
|
|
|
|
import com.samskivert.util.Throttle;
|
|
|
|
import com.threerings.presents.dobj.DObject;
|
|
import com.threerings.presents.net.BootstrapData;
|
|
import com.threerings.presents.peer.data.NodeObject;
|
|
import com.threerings.presents.peer.net.PeerBootstrapData;
|
|
import com.threerings.presents.server.PresentsSession;
|
|
|
|
import static com.threerings.presents.Log.log;
|
|
|
|
/**
|
|
* Manages a peer session.
|
|
*/
|
|
public class PeerSession extends PresentsSession
|
|
{
|
|
/**
|
|
* Creates a peer session and provides it with a reference to the peer manager. This is only
|
|
* done by the {@link PeerSessionFactory}.
|
|
*/
|
|
@Inject public PeerSession (PeerManager peermgr)
|
|
{
|
|
_peermgr = peermgr;
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected BootstrapData createBootstrapData ()
|
|
{
|
|
return new PeerBootstrapData();
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void populateBootstrapData (BootstrapData data)
|
|
{
|
|
super.populateBootstrapData(data);
|
|
|
|
// tell our peer about our node object so they can wire up
|
|
PeerBootstrapData pdata = (PeerBootstrapData)data;
|
|
pdata.nodeOid = _peermgr.getNodeObject().getOid();
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void sessionWillStart ()
|
|
{
|
|
super.sessionWillStart();
|
|
|
|
// save the client oid so we know it even after the object itself is cleared out
|
|
_cloid = _clobj.getOid();
|
|
|
|
// let the peer manager know that we're here
|
|
_peermgr.peerStartedSession(this);
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void sessionConnectionClosed ()
|
|
{
|
|
super.sessionConnectionClosed();
|
|
|
|
// if we lose contact with our peer and we have not already ended our session, end it now;
|
|
// we don't want to wait 8 minutes for it to reconnect, there's no need to preserve its
|
|
// session state and there is need to let the peer manager know it's gone ASAP
|
|
if (_clobj != null) {
|
|
log.info("Lost connection to peer, ending session " + this + ".");
|
|
endSession();
|
|
}
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void sessionDidEnd ()
|
|
{
|
|
super.sessionDidEnd();
|
|
|
|
// let the peer manager know that we're audi
|
|
_peermgr.peerEndedSession(this);
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void subscribedToObject (DObject object)
|
|
{
|
|
super.subscribedToObject(object);
|
|
if (object instanceof NodeObject) {
|
|
_peermgr.clientSubscribedToNode(_cloid);
|
|
}
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void unsubscribedFromObject (DObject object)
|
|
{
|
|
super.unsubscribedFromObject(object);
|
|
if (object instanceof NodeObject) {
|
|
_peermgr.clientUnsubscribedFromNode(_cloid);
|
|
}
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected Throttle createIncomingMessageThrottle ()
|
|
{
|
|
// more than 100 messages per second and we complain about it
|
|
return new Throttle(100, 1000L);
|
|
}
|
|
|
|
@Override // from PresentsSession
|
|
protected void handleThrottleExceeded ()
|
|
{
|
|
long now = System.currentTimeMillis();
|
|
if (now >= _nextThrottleWarning) {
|
|
log.warning("Peer sent more than 100 messages in one second " + this + ".");
|
|
_nextThrottleWarning = now + 5000L; // don't warn more than once every 5 seconds
|
|
}
|
|
}
|
|
|
|
protected PeerManager _peermgr;
|
|
protected int _cloid;
|
|
protected long _nextThrottleWarning;
|
|
}
|