]> sjero.net Git - linphone/blob - p2pproxy/dependencies-src/jxse-src-2.5/impl/src/net/jxta/impl/util/pipe/reliable/OutgoingPipeAdaptorSync.java
remove mediastreamer2 and add it as a submodule instead.
[linphone] / p2pproxy / dependencies-src / jxse-src-2.5 / impl / src / net / jxta / impl / util / pipe / reliable / OutgoingPipeAdaptorSync.java
1 /*
2  * Copyright (c) 2003-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.util.pipe.reliable;
58
59
60 import java.io.IOException;
61 import java.lang.IllegalStateException;
62
63 import net.jxta.pipe.OutputPipe;
64 import net.jxta.endpoint.Message;
65 import net.jxta.impl.util.TimeUtils;
66
67
68 /**
69  *  And ountgoing pipe adaptor which does not use a thread or queue.
70  *  Additionally, the pipe does not need to be provided at construction time.
71  *  The send() method blocks until the pipe is specified.
72  */
73 public class OutgoingPipeAdaptorSync implements Outgoing {
74     
75     private OutputPipe pipe = null;
76     private long lastAccessed = 0;
77     private boolean closed = false;
78     
79     public OutgoingPipeAdaptorSync(OutputPipe pipe) {
80         
81         // Null permitted. Send will block until setPipe is called.
82         this.pipe = pipe;
83         
84         // initialize to some reasonable value
85         lastAccessed = TimeUtils.timeNow();
86     }
87     
88     public boolean sendNb(Message msg) throws IOException {
89         OutputPipe locPipe;
90         
91         synchronized (this) {
92             locPipe = pipe;
93         }
94         
95         if (closed || locPipe == null) {
96             return false;
97         }
98         
99         locPipe.send(msg);
100         
101         return true;
102     }
103     
104     public boolean send(Message msg) throws IOException {
105         
106         OutputPipe locPipe;
107         
108         synchronized (this) {
109             while (pipe == null && !closed) {
110                 try {
111                     wait();
112                 } catch (InterruptedException ignore) {}
113             }
114             if (closed) {
115                 return false;
116             }
117             locPipe = pipe;
118         }
119         
120         return locPipe.send(msg);
121     }
122     
123     public void setPipe(OutputPipe pipe) {
124         synchronized (this) {
125             if (closed || this.pipe != null) {
126                 throw new IllegalStateException("Cannot change pipe nor re-open");
127             }
128             this.pipe = pipe;
129             notifyAll();
130         }
131     }
132     
133     /**
134      *  {@inheritDoc}
135      */
136     public void close() {
137         synchronized (this) {
138             if (closed) {
139                 return;
140             }
141             
142             closed = true;
143             
144             if (pipe != null) {
145                 pipe.close();
146                 pipe = null;
147             }
148             
149             notifyAll();            
150         }
151     }
152     
153     /**
154      *  {@inheritDoc}
155      */
156     public long getMinIdleReconnectTime() {
157         return 10 * TimeUtils.AMINUTE;
158     }
159     
160     /**
161      *  {@inheritDoc}
162      *
163      * <p/>Default should be "never", otherwise, connection closes while not
164      * in active use and ReliableOutputStream does NOT reconnect automatically.
165      */
166     public long getIdleTimeout() {
167         return Long.MAX_VALUE;
168     }
169     
170     /**
171      *  {@inheritDoc}
172      */
173     public void setTimeout(int timeout) {}
174     
175     /**
176      *  {@inheritDoc}
177      *
178      *  <p/>This is the important tunable: how long to wait on a stale connection.
179      */
180     public long getMaxRetryAge() {
181         return 1 * TimeUtils.AMINUTE;
182     }
183     
184     /**
185      *  {@inheritDoc}
186      */
187     public long getLastAccessed() {
188         return lastAccessed;
189     }
190     
191     /**
192      *  {@inheritDoc}
193      */
194     public void setLastAccessed(long time) {
195         lastAccessed = time;
196     }
197     
198     /**
199      *  {@inheritDoc}
200      */
201     @Override
202     public String toString() {
203         return ((pipe == null) ? "no pipe yet" : pipe.toString()) + " lastAccessed=" + Long.toString(lastAccessed);
204     }
205 }