⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 idleprotocol.java

📁 peersim最新版1.0.4
💻 JAVA
字号:
/* * Copyright (c) 2003-2005 The BISON Project * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2 as * published by the Free Software Foundation. * * This program 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 program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */package peersim.core;import peersim.config.Configuration;/** * A protocol that stores links. It does nothing apart from that. * It is useful to model a static link-structure * (topology). The only function of this protocol is to serve as a source of * neighborhood information for other protocols. */public class IdleProtocol implements Protocol, Linkable{// --------------------------------------------------------------------------// Parameters// --------------------------------------------------------------------------/** * Default init capacity */private static final int DEFAULT_INITIAL_CAPACITY = 10;/** * Initial capacity. Defaults to {@value #DEFAULT_INITIAL_CAPACITY}. * @config */private static final String PAR_INITCAP = "capacity";// --------------------------------------------------------------------------// Fields// --------------------------------------------------------------------------/** Neighbors */protected Node[] neighbors;/** Actual number of neighbors in the array */protected int len;// --------------------------------------------------------------------------// Initialization// --------------------------------------------------------------------------public IdleProtocol(String s){	neighbors = new Node[Configuration.getInt(s + "." + PAR_INITCAP,			DEFAULT_INITIAL_CAPACITY)];	len = 0;}//--------------------------------------------------------------------------public Object clone(){	IdleProtocol ip = null;	try { ip = (IdleProtocol) super.clone(); }	catch( CloneNotSupportedException e ) {} // never happens	ip.neighbors = new Node[neighbors.length];	System.arraycopy(neighbors, 0, ip.neighbors, 0, len);	ip.len = len;	return ip;}// --------------------------------------------------------------------------// Methods// --------------------------------------------------------------------------public boolean contains(Node n){	for (int i = 0; i < len; i++) {		if (neighbors[i] == n)			return true;	}	return false;}// --------------------------------------------------------------------------/** Adds given node if it is not already in the network. There is no limit* to the number of nodes that can be added. */public boolean addNeighbor(Node n){	for (int i = 0; i < len; i++) {		if (neighbors[i] == n)			return false;	}	if (len == neighbors.length) {		Node[] temp = new Node[3 * neighbors.length / 2];		System.arraycopy(neighbors, 0, temp, 0, neighbors.length);		neighbors = temp;	}	neighbors[len] = n;	len++;	return true;}// --------------------------------------------------------------------------public Node getNeighbor(int i){	return neighbors[i];}// --------------------------------------------------------------------------public int degree(){	return len;}// --------------------------------------------------------------------------public void pack(){	if (len == neighbors.length)		return;	Node[] temp = new Node[len];	System.arraycopy(neighbors, 0, temp, 0, len);	neighbors = temp;}// --------------------------------------------------------------------------public String toString(){	if( neighbors == null ) return "DEAD!";	StringBuffer buffer = new StringBuffer();	buffer.append("len=" + len + " maxlen=" + neighbors.length + " [");	for (int i = 0; i < len; ++i) {		buffer.append(neighbors[i].getIndex() + " ");	}	return buffer.append("]").toString();}// --------------------------------------------------------------------------public void onKill(){	neighbors = null;	len = 0;}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -