home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / browser / audio / audiostream.java < prev    next >
Text File  |  1995-08-11  |  3KB  |  93 lines

  1. /*
  2.  * @(#)AudioStream.java    1.7 95/03/14 Arthur van Hoff
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. package browser.audio;
  21.  
  22. import java.io.InputStream;
  23. import java.io.DataInputStream;
  24. import java.io.FilterInputStream;
  25.  
  26. /**
  27.  * Convert an InputStream to an AudioInputStream. It can only
  28.  * read SUN .au files, 8 bit ulaw, 8000hz. one channel.
  29.  * It eats the header information.
  30.  *
  31.  * @see AudioPlayer
  32.  * @author Arthur van Hoff
  33.  * @version     1.7, 14 Mar 1995
  34.  */
  35. public
  36. class AudioStream extends FilterInputStream {
  37.     private final int MAGIC = 0x2e736e64;
  38.     int length;
  39.  
  40.     /**
  41.      * Read header, only sun 8 bit, ulaw encoded, single channel,
  42.      * 8000hz is supported
  43.      */
  44.     public AudioStream(InputStream in) {
  45.     super(in);
  46.     DataInputStream data = new DataInputStream(in);
  47.     if (data.readInt() != MAGIC) {
  48.         in.close();
  49.         return;
  50.     }
  51.     int hdr_size = data.readInt(); // header size
  52.     if (hdr_size < 12) {
  53.         // According to file format the header should contain 6 integers:
  54.         // magic, hdr_size, data_size, encoding, sample_rate, channels
  55.         // But we only need the first 3, so we only require 12 bytes.
  56.         // In the future, we should verify or handle the others!
  57.         in.close();
  58.         return;
  59.     }
  60.     length = data.readInt();
  61.     in.skip(hdr_size - 12);
  62.     }
  63.  
  64.     /**
  65.      * A blocking read.
  66.      */
  67.     public int read(byte buf[], int pos, int len) {
  68.     int count = 0;
  69.     while (count < len) {
  70.         int n = super.read(buf, pos + count, len - count);
  71.         if (n < 0) {
  72.         return count;
  73.         }
  74.         count += n;
  75.         Thread.currentThread().yield();
  76.     }
  77.     return count;
  78.     }
  79.  
  80.     /**
  81.      * Get the data.
  82.      */
  83.     public AudioData getData() {
  84.     byte buffer[] = new byte[length];
  85.     int gotbytes = read(buffer, 0, length);
  86.     close();
  87.     if (gotbytes != length) {
  88.         throw new IOException("audio data read error");
  89.     }
  90.     return new AudioData(buffer);
  91.     }
  92. }
  93.