UDP InputStream : UDP « Network Protocol « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Network Protocol » UDP 




UDP InputStream
     
/*
Copyright 2007 Creare Inc.

Licensed under the Apache License, Version 2.0 (the "License"); 
you may not use this file except in compliance with the License. 
You may obtain a copy of the License at 

http://www.apache.org/licenses/LICENSE-2.0 

Unless required by applicable law or agreed to in writing, software 
distributed under the License is distributed on an "AS IS" BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
See the License for the specific language governing permissions and 
limitations under the License.
*/

/*
  *****************************************************************
  ***                ***
  ***  Name :  UDPInputStream                                 ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       This class extends InputStream, providing its API   ***
  ***   for calls to a UDPSocket.                               ***
  ***                ***
  *****************************************************************
*/

//package com.rbnb.utility;

import java.io.InputStream;
import java.io.IOException;

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.UnknownHostException;

public class UDPInputStream extends InputStream {

    private static final int PACKET_BUFFER_SIZE = 5000;

    DatagramSocket dsock = null;
    DatagramPacket dpack = null;

    byte[] ddata = new byte[PACKET_BUFFER_SIZE];
    int packSize = 0;
    int packIdx = 0;

    int value;

    /********************** constructors ********************/
/*
  *****************************************************************
  ***                ***
  ***  Name :  UDPInputStream                                 ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Default constructor.                                ***
  ***                ***
  *****************************************************************
*/
    public UDPInputStream() {}

/*
  *****************************************************************
  ***                ***
  ***  Name :  UDPInputStream                                 ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Constructor.  Requires the address and port of the  ***
  ***   UDP socket to read from.                                ***
  ***                ***
  *****************************************************************
*/
    public UDPInputStream(String address, int port
  throws UnknownHostException, SocketException {

  open(address, port);
    }

    /************ opening and closing the stream ************/
/*
  *****************************************************************
  ***                ***
  ***  Name :  open                                             ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       The user may use this method to set the address and ***
  ***   port of the UDP socket to read from.                    ***
  ***                ***
  *****************************************************************
*/
    public void open(String address, int port)
  throws UnknownHostException, SocketException {

  dsock = new DatagramSocket(port, InetAddress.getByName(address));
    }

/*
  *****************************************************************
  ***                ***
  ***  Name :  close                                       ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Close the UDP socket and UDPInputStream.            ***
  ***                ***
  *****************************************************************
*/
    public void close() throws IOException {
  dsock.close();
  dsock = null;
  ddata = null;
  packSize = 0;
  packIdx = 0;
    }

    /****** reading, skipping and checking available data ******/
/*
  *****************************************************************
  ***                ***
  ***  Name :  available                                 ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Determines how many more values may be read before  ***
  ***   next blocking read.                                     ***
  ***                ***
  *****************************************************************
*/
    public int available() throws IOException {
  return packSize - packIdx;
    }
    
/*
  *****************************************************************
  ***                ***
  ***  Name :  read()                                     ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Reads the next value available.  Returns the value  ***
  ***   as an integer from 0 to 255.                            ***
  ***                ***
  *****************************************************************
*/
    public int read() throws IOException {
  if (packIdx == packSize) {
      receive();
  }

  value = ddata[packIdx0xff;
  packIdx++;
  return value;
    }

/*
  *****************************************************************
  ***                ***
  ***  Name :  read(byte[])                                 ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Reads the next buff.length values into the input    ***
  ***   byte array, buff.                                       ***
  ***                ***
  *****************************************************************
*/
    public int read(byte[] buffthrows IOException {
  return read(buff, 0, buff.length);
    }

/*
  *****************************************************************
  ***                ***
  ***  Name :  read(byte[], int, int)                         ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Reads the next len values into the input byte array,***
  ***   buff, starting at offset off.                           ***
  ***                ***
  *****************************************************************
*/
    public int read(byte[] buff, int off, int lenthrows IOException {
  if (packIdx == packSize) {
      receive();
  }

  int lenRemaining = len;
  
  while(available() < lenRemaining) {
      System.arraycopy(ddata,
           packIdx,
           buff,
           off + (len - lenRemaining),
           available());
      lenRemaining -= available();
      receive();
  }

  System.arraycopy(ddata,
       packIdx,
       buff,
       off + (len - lenRemaining),
       lenRemaining);
  packIdx += lenRemaining;
  return len;
    }

/*
  *****************************************************************
  ***                ***
  ***  Name :  skip                                       ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       Skips over the next len values.                     ***
  ***                ***
  *****************************************************************
*/
    public long skip(long lenthrows IOException {
  if (packIdx == packSize) {
      receive();
  }

  long lenRemaining = len;
  
  while(available() < lenRemaining) {
      lenRemaining -= available();
      receive();
  }

  packIdx += (intlenRemaining;
  return len;
    }

    /****************** receiving more data ******************/
/*
  *****************************************************************
  ***                ***
  ***  Name :  receive                                    ***
  ***  By   :  U. Bergstrom   (Creare Inc., Hanover, NH)  ***
  ***  For  :  E-Scan            ***
  ***  Date :  October, 2001          ***
  ***                ***
  ***  Copyright 2001 Creare Inc.        ***
  ***  All Rights Reserved          ***
  ***                ***
  ***  Description :            ***
  ***       A blocking read to receive more data from the UDP   ***
  ***   socket.                                                 ***
  ***                ***
  *****************************************************************
*/
    private void receive() throws IOException {
  dpack = new DatagramPacket(ddata, PACKET_BUFFER_SIZE);
  dsock.receive(dpack);
  packIdx = 0;
  packSize = dpack.getLength();
    }

    /********* marking and reseting are unsupported ********/
    public void mark(int readlimit) {}

    public void reset() throws IOException {
  throw new IOException("Marks are not supported by UDPInputStream.");
    }

    public boolean markSupported() {
  return false;
    }

}

   
    
    
    
    
  














Related examples in the same category
1.Udp Echo Server
2.DatagramSocket Server
3.DatagramSocket Client
4.Send out UDP pockets
5.Receive UDP pocketsReceive UDP pockets
6.Experiment with UDP sockets
7.Using Datagrams to Get the Date
8.An echo server using UDP socketsAn echo server using UDP sockets
9.Connect to a daytime server using the UDP protocol
10.Handles TCP and UDP connections and provides exception handling and error logging
11.UDP OutputStream
12.Performs broadcast and multicast peer detection.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.