2003-06-18 Michael Koch <konqueror@gmx.de>
[platform/upstream/gcc.git] / libjava / gnu / java / nio / SocketChannelImpl.java
1 /* SocketChannelImpl.java -- 
2    Copyright (C) 2002 Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
20
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library.  Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
25
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module.  An independent module is a module which is not derived from
33 or based on this library.  If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so.  If you do not wish to do so, delete this
36 exception statement from your version. */
37
38
39 package gnu.java.nio;
40
41 import java.io.IOException;
42 import java.net.InetAddress;
43 import java.net.InetSocketAddress;
44 import java.net.Socket;
45 import java.net.SocketAddress;
46 import java.nio.ByteBuffer;
47 import java.nio.channels.AlreadyConnectedException;
48 import java.nio.channels.SocketChannel;
49 import java.nio.channels.spi.SelectorProvider;
50 import gnu.classpath.Configuration;
51
52 public class SocketChannelImpl extends SocketChannel
53 {
54   Socket socket;
55   boolean blocking = true;
56   boolean connected = false;
57
58   public SocketChannelImpl (SelectorProvider provider)                
59   {
60     super (provider);
61     socket = new Socket ();
62   }
63
64   public void finalizer()
65   {
66     if (connected)
67       {
68         try
69           {
70             close ();
71           }
72         catch (Exception e)
73           {
74           }
75       }
76   }
77
78   protected void implCloseSelectableChannel () throws IOException
79   {
80     connected = false;
81     socket.close();
82   }
83
84   protected void implConfigureBlocking (boolean blocking) throws IOException
85   {
86     this.blocking = blocking; // FIXME
87   }   
88
89   public boolean connect (SocketAddress remote) throws IOException
90   {
91     if (connected)
92       throw new AlreadyConnectedException();
93         
94     socket.connect (remote, 50);
95     connected = true;
96     return blocking; // FIXME
97   }
98     
99   public boolean finishConnect ()
100   {
101     return false;
102   }
103
104   public boolean isConnected ()
105   {
106     return connected;
107   }
108     
109   public boolean isConnectionPending ()
110   {
111     return blocking ? true : false;
112   }
113     
114   public Socket socket ()
115   {
116     return socket;
117   }
118
119   public int read (ByteBuffer dst) throws IOException
120   {
121     int bytes = 0;
122     int len = 1024;
123     byte[]b = new byte[len];
124         
125     /*
126     bytes = SocketRead(fd, b, 0, len);
127     dst.put(b, 0, bytes);
128
129     if (bytes == 0)
130       {
131         // we've hit eof ?
132         return -1;
133       }
134     */
135
136     return bytes;
137   }
138     
139   public long read (ByteBuffer[] dsts, int offset, int length)
140     throws IOException
141   {
142     long bytes = 0;
143
144     for (int i = offset; i < length; i++)
145       {
146         bytes += read (dsts [i]);
147       }
148
149     return bytes;
150   }
151      
152   public int write (ByteBuffer src)
153     throws IOException
154   {
155     int bytes = 0;
156     int len = src.position();
157
158     /*
159     if (src.hasArray ())
160       {
161         byte[] b = src.array ();
162         bytes = SocketWrite (fd, b, 0, len);
163       }
164     else
165       {
166         byte[] b = new byte [len];
167         src.get (b, 0, len);
168         bytes = SocketWrite (fd, b, 0, len);
169       }
170     */
171                 
172     return bytes;
173   }
174
175   public long write (ByteBuffer[] srcs, int offset, int length)
176     throws IOException
177   {
178     long bytes = 0;
179
180     for (int i = offset; i < length; i++)
181       {
182         bytes += write (srcs [i]);
183       }
184
185     return bytes;
186   }
187 }