00001 /* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ 00002 /* 00003 Copyright (c) 2002-2011 ymnk, JCraft,Inc. All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions are met: 00007 00008 1. Redistributions of source code must retain the above copyright notice, 00009 this list of conditions and the following disclaimer. 00010 00011 2. Redistributions in binary form must reproduce the above copyright 00012 notice, this list of conditions and the following disclaimer in 00013 the documentation and/or other materials provided with the distribution. 00014 00015 3. The names of the authors may not be used to endorse or promote products 00016 derived from this software without specific prior written permission. 00017 00018 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, 00019 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 00020 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, 00021 INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, 00022 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00023 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 00024 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00025 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00026 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00027 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 package com.jcraft.jsch; 00031 00039 abstract class Request{ 00040 private boolean reply=false; 00041 private Session session=null; 00042 private Channel channel=null; 00043 void request(Session session, Channel channel) throws Exception{ 00044 this.session=session; 00045 this.channel=channel; 00046 if(channel.connectTimeout>0){ 00047 setReply(true); 00048 } 00049 } 00050 boolean waitForReply(){ return reply; } 00051 void setReply(boolean reply){ this.reply=reply; } 00052 void write(Packet packet) throws Exception{ 00053 if(reply){ 00054 channel.reply=-1; 00055 } 00056 session.write(packet); 00057 if(reply){ 00058 long start=System.currentTimeMillis(); 00059 long timeout=channel.connectTimeout; 00060 while(channel.isConnected() && channel.reply==-1){ 00061 try{Thread.sleep(10);} 00062 catch(Exception ee){ 00063 } 00064 if(timeout>0L && 00065 (System.currentTimeMillis()-start)>timeout){ 00066 channel.reply=0; 00067 throw new JSchException("channel request: timeout"); 00068 } 00069 } 00070 00071 if(channel.reply==0){ 00072 throw new JSchException("failed to send channel request"); 00073 } 00074 } 00075 } 00076 }