/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Constructor used for creating a connection to accept call
* (an input connection)
*/
{
socket = s;
}
/**
* Constructor used by subclass when underlying input and output streams
* are already available.
*/
{
}
/**
* Constructor used when socket is available, but not underlying
* streams.
*/
{
}
/**
* Gets the output stream for this connection
*/
{
return out;
}
/**
* Release the output stream for this connection.
*/
{
}
/**
* Gets the input stream for this connection.
*/
{
return in;
}
/**
* Release the input stream for this connection.
*/
public void releaseInputStream()
{
}
/**
* Determine if this connection can be used for multiple operations.
* If the socket implements RMISocketInfo, then we can query it about
* this; otherwise, assume that it does provide a full-duplex
* persistent connection like java.net.Socket.
*/
public boolean isReusable()
{
else
return true;
}
/**
* Set the expiration time of this connection.
* @param time The time at which the time out expires.
*/
{
expiration = time;
}
/**
* Set the timestamp at which this connection was last used successfully.
* The connection will be pinged for liveness if reused long after
* this time.
* @param time The time at which the connection was last active.
*/
{
}
/**
* Returns true if the timeout has expired on this connection;
* otherwise returns false.
* @param time The current time.
*/
{
return expiration <= time;
}
/**
* Probes the connection to see if it still alive and connected to
* a responsive server. If the connection has been idle for too
* long, the server is pinged. ``Too long'' means ``longer than the
* last ping round-trip time''.
* <P>
* This method may misdiagnose a dead connection as live, but it
* will never misdiagnose a live connection as dead.
* @return true if the connection and server are recently alive
*/
public boolean isDead()
{
InputStream i;
OutputStream o;
// skip ping if recently used within 1 RTT
return (false); // still alive and warm
// Get the streams
try {
i = getInputStream();
o = getOutputStream();
} catch (IOException e) {
return (true); // can't even get a stream, must be very dead
}
// Write the ping byte and read the reply byte
int response = 0;
try {
o.flush();
} catch (IOException ex) {
return (true); // server failed the ping test
}
// save most recent RTT for future use
// clock-correction may make roundtrip < 0; doesn't matter
return (false); // it's alive and 5-by-5
}
"server protocol error: ping response = " + response));
}
return (true);
}
/**
* Close the connection. */
{
else {
}
}
/**
* Returns the channel for this connection.
*/
{
return channel;
}
}