01ac320432
Don't wait up to 60 seconds for the next peer refresh interval. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5514 542714f4-19e9-0310-aa3c-eee0fc999fb1
138 lines
4.4 KiB
Java
138 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;
|
|
}
|
|
|
|
/**
|
|
* Derived classes can override this member to create derived bootstrap data classes that
|
|
* contain extra bootstrap information, if desired.
|
|
*/
|
|
@Override
|
|
protected BootstrapData createBootstrapData ()
|
|
{
|
|
return new PeerBootstrapData();
|
|
}
|
|
|
|
/**
|
|
* Derived classes can override this member to populate the bootstrap data with additional
|
|
* information. They should be sure to call <code>super.populateBootstrapData</code> before
|
|
* doing their own populating, however.
|
|
*
|
|
* <p><em>Note:</em> This function will be called on the dobjmgr thread which means that object
|
|
* manipulations are OK, but client instance manipulations must be done carefully.
|
|
*/
|
|
@Override
|
|
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 // documentation inherited
|
|
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 // documentation inherited
|
|
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;
|
|
}
|