~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to src/org/jboss/remoting/transport/socket/SocketWrapper.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* JBoss, Home of Professional Open Source
3
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
4
 
* by the @authors tag. See the copyright.txt in the distribution for a
5
 
* full listing of individual contributors.
6
 
*
7
 
* This is free software; you can redistribute it and/or modify it
8
 
* under the terms of the GNU Lesser General Public License as
9
 
* published by the Free Software Foundation; either version 2.1 of
10
 
* the License, or (at your option) any later version.
11
 
*
12
 
* This software is distributed in the hope that it will be useful,
13
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 
* Lesser General Public License for more details.
16
 
*
17
 
* You should have received a copy of the GNU Lesser General Public
18
 
* License along with this software; if not, write to the Free
19
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21
 
*/
22
 
 
23
 
package org.jboss.remoting.transport.socket;
24
 
 
25
 
import org.jboss.logging.Logger;
26
 
 
27
 
import java.io.IOException;
28
 
import java.io.InputStream;
29
 
import java.io.OutputStream;
30
 
import java.net.Socket;
31
 
import java.net.SocketException;
32
 
 
33
 
/**
34
 
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
35
 
 */
36
 
public abstract class SocketWrapper
37
 
{
38
 
   // Constants ------------------------------------------------------------------------------------
39
 
 
40
 
   private static final Logger log = Logger.getLogger(SocketWrapper.class);
41
 
 
42
 
   public static final String MARSHALLER = "marshaller";
43
 
   public static final String UNMARSHALLER = "unmarshaller";
44
 
   public static final String TEMP_TIMEOUT = "temptimeout";
45
 
   public static final String WRITE_TIMEOUT = "writeTimeout";
46
 
   
47
 
   protected static final int CLOSING = 254;
48
 
   
49
 
   // Static ---------------------------------------------------------------------------------------
50
 
 
51
 
   private static boolean trace = log.isTraceEnabled();
52
 
 
53
 
   // Attributes -----------------------------------------------------------------------------------
54
 
 
55
 
   protected Socket socket;
56
 
   private int timeout;
57
 
 
58
 
   // Constructors ---------------------------------------------------------------------------------
59
 
 
60
 
   protected SocketWrapper(Socket socket)
61
 
   {
62
 
      if (trace) { log.trace("constructing " + getClass().getName() + " instance for " + socket); }
63
 
      this.socket = socket;
64
 
   }
65
 
 
66
 
   protected SocketWrapper(Socket socket, Integer timeoutInt) throws SocketException
67
 
   {
68
 
      if (trace) { log.trace("constructing " + getClass().getName() + " instance for " + socket + ", using timeout " + timeoutInt); }
69
 
      this.socket = socket;
70
 
 
71
 
      if(timeoutInt != null)
72
 
      {
73
 
         this.timeout = timeoutInt.intValue();
74
 
         setTimeout(this.timeout);
75
 
      }
76
 
   }
77
 
 
78
 
   // Public ---------------------------------------------------------------------------------------
79
 
 
80
 
   public void setTimeout(int timeout) throws SocketException
81
 
   {
82
 
      if (trace) { log.trace(this + " setting timeout to " + timeout); }
83
 
      this.timeout = timeout;
84
 
      if(socket != null)
85
 
      {
86
 
         socket.setSoTimeout(timeout);
87
 
      }
88
 
   }
89
 
 
90
 
   public int getTimeout()
91
 
   {
92
 
      return timeout;
93
 
   }
94
 
 
95
 
   public void close() throws IOException
96
 
   {      
97
 
      if(socket != null)
98
 
      {
99
 
         log.trace(this + " closing socket");
100
 
         socket.close();
101
 
         log.trace(this + " closed socket");
102
 
      }
103
 
   }
104
 
   
105
 
   public boolean isClosed()
106
 
   {
107
 
      if (socket == null)
108
 
         return false;
109
 
      
110
 
      return socket.isClosed();
111
 
   }
112
 
 
113
 
   public Socket getSocket()
114
 
   {
115
 
      return socket;
116
 
   }
117
 
 
118
 
   public abstract OutputStream getOutputStream() throws IOException;
119
 
 
120
 
   public abstract InputStream getInputStream() throws IOException;
121
 
 
122
 
   public abstract void checkConnection() throws IOException;
123
 
 
124
 
   // Package protected ----------------------------------------------------------------------------
125
 
 
126
 
   // Protected ------------------------------------------------------------------------------------
127
 
 
128
 
   protected void finalize()
129
 
   {
130
 
      if(socket != null)
131
 
      {
132
 
         try
133
 
         {
134
 
            socket.close();
135
 
         }
136
 
         catch(Exception e)
137
 
         {
138
 
            log.debug(this + " failed to close socket", e);
139
 
         }
140
 
      }
141
 
   }
142
 
 
143
 
   // Private --------------------------------------------------------------------------------------
144
 
 
145
 
   // Inner classes --------------------------------------------------------------------------------
146
 
 
147
 
}
 
 
b'\\ No newline at end of file'