6b1d65553f
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5241 542714f4-19e9-0310-aa3c-eee0fc999fb1
129 lines
4.1 KiB
Java
129 lines
4.1 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.server.PresentsClient;
|
|
|
|
import com.threerings.presents.peer.data.NodeObject;
|
|
import com.threerings.presents.peer.net.PeerBootstrapData;
|
|
|
|
import static com.threerings.presents.Log.log;
|
|
|
|
/**
|
|
* Manages a peer connection.
|
|
*/
|
|
public class PeerClient extends PresentsClient
|
|
{
|
|
/**
|
|
* Creates a peer client and provides it with a reference to the peer
|
|
* manager. This is only done by the {@link PeerClientFactory}.
|
|
*/
|
|
@Inject public PeerClient (PeerManager peermgr)
|
|
{
|
|
_peermgr = peermgr;
|
|
}
|
|
|
|
/**
|
|
* Derived client 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 client 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();
|
|
}
|
|
|
|
@Override // from PresentsClient
|
|
protected void subscribedToObject (DObject object)
|
|
{
|
|
super.subscribedToObject(object);
|
|
if (object instanceof NodeObject) {
|
|
_peermgr.clientSubscribedToNode(_cloid);
|
|
}
|
|
}
|
|
|
|
@Override // from PresentsClient
|
|
protected void unsubscribedFromObject (DObject object)
|
|
{
|
|
super.unsubscribedFromObject(object);
|
|
if (object instanceof NodeObject) {
|
|
_peermgr.clientUnsubscribedFromNode(_cloid);
|
|
}
|
|
}
|
|
|
|
@Override // from PresentsClient
|
|
protected Throttle createIncomingMessageThrottle ()
|
|
{
|
|
// more than 100 messages per second and we complain about it
|
|
return new Throttle(100, 1000L);
|
|
}
|
|
|
|
@Override // from PresentsClient
|
|
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;
|
|
}
|