📄 idfactory.java
字号:
/*************************************************************************"FreePastry" Peer-to-Peer Application Development Substrate Copyright 2002, Rice University. All rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions aremet:- Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.- Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution.- Neither the name of Rice University (RICE) nor the names of itscontributors may be used to endorse or promote products derived fromthis software without specific prior written permission.This software is provided by RICE and the contributors on an "as is"basis, without any representations or warranties of any kind, expressor implied including, but not limited to, representations orwarranties of non-infringement, merchantability or fitness for aparticular purpose. In no event shall RICE or contributors be liablefor any direct, indirect, incidental, special, exemplary, orconsequential damages (including, but not limited to, procurement ofsubstitute goods or services; loss of use, data, or profits; orbusiness interruption) however caused and on any theory of liability,whether in contract, strict liability, or tort (including negligenceor otherwise) arising in any way out of the use of this software, evenif advised of the possibility of such damage.********************************************************************************/package rice.p2p.commonapi;import java.util.*;import rice.environment.random.RandomSource;/** * @(#) IdFactory.java This interface provides applications with a way of * generating Ids in a protocol-specific manner. * * @version $Id: IdFactory.java 2551 2005-06-06 19:01:02Z jeffh $ * @author Alan Mislove * @author Peter Druschel */public interface IdFactory { /** * Builds a protocol-specific Id given the source data. * * @param material The material to use * @return The built Id. */ public Id buildId(byte[] material); /** * Builds a protocol-specific Id given the source data. * * @param material The material to use * @return The built Id. */ public Id buildId(int[] material); /** * Builds a protocol-specific Id by using the hash of the given string as * source data. * * @param string The string to use as source data * @return The built Id. */ public Id buildId(String string); /** * Builds a random protocol-specific Id. * * @param rng A random number generator * @return The built Id. */ public Id buildRandomId(Random rng); /** * DESCRIBE THE METHOD * * @param rng DESCRIBE THE PARAMETER * @return DESCRIBE THE RETURN VALUE */ public Id buildRandomId(RandomSource rng); /** * Builds an Id by converting the given toString() output back to an Id. * Should not normally be used. * * @param string The toString() representation of an Id * @return The built Id. */ public Id buildIdFromToString(String string); /** * Builds an Id by converting the given toString() output back to an Id. * Should not normally be used. * * @param chars The character array * @param offset The offset to start reading at * @param length The length to read * @return The built Id. */ public Id buildIdFromToString(char[] chars, int offset, int length); /** * Builds an IdRange based on a prefix. Any id which has this prefix should be * inside this IdRange, and any id which does not share this prefix should be * outside it. * * @param string The toString() representation of an Id * @return The built Id. */ public IdRange buildIdRangeFromPrefix(String string); /** * Returns the length a Id.toString should be. * * @return The correct length; */ public int getIdToStringLength(); /** * Builds a protocol-specific Id.Distance given the source data. * * @param material The material to use * @return The built Id.Distance. */ public Id.Distance buildIdDistance(byte[] material); /** * Creates an IdRange given the CW and CCW ids. * * @param cw The clockwise Id * @param ccw The counterclockwise Id * @return An IdRange with the appropriate delimiters. */ public IdRange buildIdRange(Id cw, Id ccw); /** * Creates an empty IdSet. * * @return an empty IdSet */ public IdSet buildIdSet(); /** * Creates an empty IdSet. * * @param map DESCRIBE THE PARAMETER * @return an empty IdSet * @Param map The map which to take the keys from to create the IdSet's * elements */ public IdSet buildIdSet(SortedMap map); /** * Creates an empty NodeHandleSet. * * @return an empty NodeHandleSet */ public NodeHandleSet buildNodeHandleSet();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -