]> sjero.net Git - linphone/blob - p2pproxy/dependencies-src/jxse-src-2.5/impl/src/net/jxta/impl/peer/PeerInfoServiceInterface.java
5f5c8751652a4ec9e65301e18621dc29417afb88
[linphone] / p2pproxy / dependencies-src / jxse-src-2.5 / impl / src / net / jxta / impl / peer / PeerInfoServiceInterface.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 package net.jxta.impl.peer;
57
58
59 import java.io.IOException;
60 import java.util.Enumeration;
61 import net.jxta.document.Advertisement;
62 import net.jxta.service.Service;
63 import net.jxta.id.ID;
64 import net.jxta.peer.PeerInfoService;
65 import net.jxta.peer.PeerInfoListener;
66 import net.jxta.peer.PeerInfoEvent;
67 import net.jxta.peergroup.PeerGroup;
68 import net.jxta.exception.PeerGroupException;
69 import net.jxta.protocol.PeerInfoResponseMessage;
70 import net.jxta.impl.peer.PeerInfoServiceImpl;
71 import net.jxta.peer.*;
72 import net.jxta.meter.*;
73 import net.jxta.platform.*;
74
75
76 /**
77  *  PeerInfoServiceInterface provides a pure interface object that permits
78  *  interaction with the actual PeerInfoService implementation without giving
79  *  access to the real object.
80  */
81 public class PeerInfoServiceInterface implements PeerInfoService {
82
83     private PeerInfoService impl;
84
85     /**
86      * {@inheritDoc}
87      * Since THIS is already such an
88      *  object, it returns itself. FIXME: it is kind of absurd to have this
89      *  method part of the interface but we do not want to define two levels
90      *  of Service interface just for that.
91      *
92      */
93     public Service getInterface() {
94         return this;
95     }
96
97     /**
98      * {@inheritDoc}
99      *
100      */
101     public Advertisement getImplAdvertisement() {
102         return impl.getImplAdvertisement();
103     }
104
105     /**
106      *  Only authorized constructor
107      *
108      *@param  theRealThing
109      */
110     public PeerInfoServiceInterface(PeerInfoService theRealThing) {
111         impl = theRealThing;
112     }
113
114     /**
115      * {@inheritDoc}
116      *  <p/>Initialize the application FIXME: This is meaningless for the
117      *  interface object; it is there only to satisfy the requirements of
118      *  the interface that we implement. Ultimately, the API should define
119      *  two levels of interfaces: one for the real service implementation
120      *  and one for the interface object. Right now it feels a bit heavy to
121      *  so that since the only different between the two would be init() and
122      *  may-be getName().
123      *
124      */
125     public void init(PeerGroup pg, ID assignedID, Advertisement impl) {}
126
127     /**
128      * {@inheritDoc}
129      *  <p/>This is here for temporary class hierarchy reasons. it is ALWAYS
130      *  ignored. By definition, the interface object protects the real
131      *  object's start/stop methods from being called
132      *
133      */
134     public int startApp(String[] arg) {
135         return 0;
136     }
137
138     /**
139      * {@inheritDoc}
140      *  <p/>This is here for temporary class hierarchy reasons. it is ALWAYS
141      *  ignored. By definition, the interface object protects the real
142      *  object's start/stop methods from being called This request is
143      *  currently ignored.
144      */
145     public void stopApp() {}
146
147     public boolean isLocalMonitoringAvailable() {
148         return (impl.isLocalMonitoringAvailable());
149     }
150
151     public boolean isLocalMonitoringAvailable(ModuleClassID moduleClassID) {
152         return (impl.isLocalMonitoringAvailable(moduleClassID));
153     }
154         
155     public long[] getSupportedReportRates() {
156         return impl.getSupportedReportRates();
157     }
158
159     public boolean isSupportedReportRate(long reportRate) {
160         return impl.isSupportedReportRate(reportRate);
161     }
162
163     public long getBestReportRate(long desiredReportRate) {
164         return impl.getBestReportRate(desiredReportRate);
165     }
166
167     public PeerMonitorInfo getPeerMonitorInfo() {
168         return impl.getPeerMonitorInfo();
169     }
170
171     public void getPeerMonitorInfo(PeerID peerID, PeerMonitorInfoListener peerMonitorInfoListener, long timeout) throws MonitorException {
172         impl.getPeerMonitorInfo(peerID, peerMonitorInfoListener, timeout);
173     } 
174
175     public MonitorReport getCumulativeMonitorReport(MonitorFilter monitorFilter) throws MonitorException {
176         return impl.getCumulativeMonitorReport(monitorFilter);
177     }
178         
179     public void getCumulativeMonitorReport(PeerID peerID, MonitorFilter monitorFilter, MonitorListener monitorListener, long timeout) throws MonitorException {
180         impl.getCumulativeMonitorReport(peerID, monitorFilter, monitorListener, timeout);
181     }
182
183     public long addMonitorListener(MonitorFilter monitorFilter, long reportRate, boolean includeCumulative, MonitorListener monitorListener) throws MonitorException {
184         return impl.addMonitorListener(monitorFilter, reportRate, includeCumulative, monitorListener);
185     }   
186
187     public void addRemoteMonitorListener(PeerID peerID, MonitorFilter monitorFilter, long reportRate, boolean includeCumulative, MonitorListener monitorListener, long lease, long timeout) throws MonitorException {   
188         impl.addRemoteMonitorListener(peerID, monitorFilter, reportRate, includeCumulative, monitorListener, lease, timeout);
189     }
190
191     public boolean removeMonitorListener(MonitorListener monitorListener) throws MonitorException {
192         return impl.removeMonitorListener(monitorListener);
193     }
194
195     public void removeRemoteMonitorListener(PeerID peerID, MonitorListener monitorListener, long timeout) throws MonitorException {
196         impl.removeRemoteMonitorListener(peerID, monitorListener, timeout);
197     }
198
199     public void removeRemoteMonitorListener(MonitorListener monitorListener, long timeout) throws MonitorException {
200         impl.removeRemoteMonitorListener(monitorListener, timeout);
201     }   
202 }
203