]> sjero.net Git - linphone/blob - p2pproxy/dependencies-src/jxse-src-2.5/impl/src/net/jxta/impl/id/CBID/PeerID.java
5fdeda5be2c300deb8cf1b029f42de40febfd54e
[linphone] / p2pproxy / dependencies-src / jxse-src-2.5 / impl / src / net / jxta / impl / id / CBID / PeerID.java
1 /*
2  * Copyright (c) 2001-2007 Sun Microsystems, Inc.  All rights reserved.
3  *  
4  *  The Sun Project JXTA(TM) Software License
5  *  
6  *  Redistribution and use in source and binary forms, with or without 
7  *  modification, are permitted provided that the following conditions are met:
8  *  
9  *  1. Redistributions of source code must retain the above copyright notice,
10  *     this list of conditions and the following disclaimer.
11  *  
12  *  2. Redistributions in binary form must reproduce the above copyright notice, 
13  *     this list of conditions and the following disclaimer in the documentation 
14  *     and/or other materials provided with the distribution.
15  *  
16  *  3. The end-user documentation included with the redistribution, if any, must 
17  *     include the following acknowledgment: "This product includes software 
18  *     developed by Sun Microsystems, Inc. for JXTA(TM) technology." 
19  *     Alternately, this acknowledgment may appear in the software itself, if 
20  *     and wherever such third-party acknowledgments normally appear.
21  *  
22  *  4. The names "Sun", "Sun Microsystems, Inc.", "JXTA" and "Project JXTA" must 
23  *     not be used to endorse or promote products derived from this software 
24  *     without prior written permission. For written permission, please contact 
25  *     Project JXTA at http://www.jxta.org.
26  *  
27  *  5. Products derived from this software may not be called "JXTA", nor may 
28  *     "JXTA" appear in their name, without prior written permission of Sun.
29  *  
30  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
31  *  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
32  *  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SUN 
33  *  MICROSYSTEMS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
34  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
35  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
36  *  OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
37  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 
38  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
39  *  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  *  
41  *  JXTA is a registered trademark of Sun Microsystems, Inc. in the United 
42  *  States and other countries.
43  *  
44  *  Please see the license information page at :
45  *  <http://www.jxta.org/project/www/license.html> for instructions on use of 
46  *  the license in source files.
47  *  
48  *  ====================================================================
49  *  
50  *  This software consists of voluntary contributions made by many individuals 
51  *  on behalf of Project JXTA. For more information on Project JXTA, please see 
52  *  http://www.jxta.org.
53  *  
54  *  This license is based on the BSD license adopted by the Apache Foundation. 
55  */
56
57 package net.jxta.impl.id.CBID;
58
59
60 import net.jxta.impl.id.UUID.IDBytes;
61 import net.jxta.impl.id.UUID.UUID;
62 import net.jxta.impl.id.UUID.UUIDFactory;
63
64 import java.security.MessageDigest;
65 import java.security.NoSuchAlgorithmException;
66 import java.security.ProviderException;
67 import java.util.logging.Logger;
68
69
70 /**
71  * An implementation of the {@link net.jxta.peer.PeerID} ID Type.
72  */
73 public class PeerID extends net.jxta.impl.id.UUID.PeerID {
74
75     /**
76      * Log4J Logger
77      */
78     private static final transient Logger LOG = Logger.getLogger(PeerID.class.getName());
79
80     /**
81      * Used only internally.
82      */
83     protected PeerID() {
84         super();
85     }
86
87     /**
88      * See {@link net.jxta.id.IDFactory.Instantiator#newPeerID(net.jxta.peergroup.PeerGroupID)}.
89      *
90      * @param groupID the PeerGroupID
91      */
92     public PeerID(PeerGroupID groupID) {
93         this(groupID.getUUID(), UUIDFactory.newUUID());
94     }
95
96     /**
97      * Intializes contents from provided ID.
98      *
99      * @param id the ID data
100      */
101     protected PeerID(IDBytes id) {
102         super(id);
103     }
104
105     /**
106      * See {@link net.jxta.id.IDFactory.Instantiator#newPeerID(net.jxta.peergroup.PeerGroupID,byte[])}.
107      *
108      * @param groupID the PeerGroupID
109      * @param seed the seed
110      */
111     public PeerID(PeerGroupID groupID, byte[] seed) {
112         this();
113
114         UUID groupUUID = groupID.getUUID();
115
116         id.longIntoBytes(PeerID.groupIdOffset, groupUUID.getMostSignificantBits());
117         id.longIntoBytes(PeerID.groupIdOffset + 8, groupUUID.getLeastSignificantBits());
118
119         MessageDigest digester = null;
120
121         try {
122             digester = MessageDigest.getInstance("SHA-1");
123         } catch (NoSuchAlgorithmException caught) {
124             digester = null;
125         }
126
127         if (digester == null) {
128             throw new ProviderException("SHA1 digest algorithm not found");
129         }
130
131         byte[] digest = digester.digest(seed);
132
133         // we keep only the 128 most significant bits
134         byte[] buf16 = new byte[16];
135
136         System.arraycopy(digest, 0, buf16, 0, 16);
137
138         UUID peerCBID = new UUID(buf16);
139
140         id.longIntoBytes(PeerID.idOffset, peerCBID.getMostSignificantBits());
141         id.longIntoBytes(PeerID.idOffset + 8, peerCBID.getLeastSignificantBits());
142     }
143
144     /**
145      * Creates a PeerID. A PeerGroupID is provided
146      *
147      * @param groupUUID the group to which this will belong.
148      * @param peerUUID  id of this peer
149      */
150     protected PeerID(UUID groupUUID, UUID peerUUID) {
151         super(groupUUID, peerUUID);
152     }
153
154     /**
155      * {@inheritDoc}
156      */
157     @Override
158     public String getIDFormat() {
159         return IDFormat.INSTANTIATOR.getSupportedIDFormat();
160     }
161
162     /**
163      * {@inheritDoc}
164      */
165     @Override
166     public net.jxta.id.ID getPeerGroupID() {
167         UUID groupCBID = new UUID(id.bytesIntoLong(PeerID.groupIdOffset), id.bytesIntoLong(PeerID.groupIdOffset + 8));
168
169         PeerGroupID groupID = new PeerGroupID(groupCBID);
170
171         // convert to the generic world PGID as necessary
172         return IDFormat.translateToWellKnown(groupID);
173     }
174
175     /**
176      * Returns the UUID associated with this PeerID.
177      *
178      * @return The UUID associated with this PeerID.
179      */
180     public UUID getUUID() {
181         return new UUID(id.bytesIntoLong(PeerID.idOffset), id.bytesIntoLong(PeerID.idOffset + 8));
182     }
183 }