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

  1. /*
  2.  * @(#)ContinuousAudioDataStream.java    1.6 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. /**
  23.  * Create a continuous audio stream. This wraps a stream
  24.  * around an AudioData object, the stream is restarted
  25.  * at the beginning everytime the end is reached, thus
  26.  * creating continuous sound.<p>
  27.  * For example:
  28.  * <pre>
  29.  *    AudioData data = AudioData.getAudioData(url);
  30.  *    ContinuousAudioDataStream audiostream = new ContinuousAudioDataStream(data);
  31.  *    AudioPlayer.player.start(audiostream);
  32.  * </pre>
  33.  *
  34.  * @see AudioPlayer
  35.  * @see AudioData
  36.  * @author Arthur van Hoff
  37.  * @version     1.6, 14 Mar 1995
  38.  */
  39. public
  40. class ContinuousAudioDataStream extends AudioDataStream {
  41.     /**
  42.      * Create a continuous stream of audio.
  43.      */
  44.     public ContinuousAudioDataStream(AudioData data) {
  45.     super(data);
  46.     }
  47.  
  48.     /**
  49.      * When reaching the EOF, rewind to the beginning.
  50.      */
  51.     public int read() {
  52.     int c = super.read();
  53.     if (c == -1) {
  54.         reset();
  55.         c = super.read();
  56.     }
  57.     return c;
  58.     }
  59.  
  60.     /**
  61.      * When reaching the EOF, rewind to the beginning.
  62.      */
  63.     public int read(byte buf[], int pos, int len) {
  64.     int count = 0;
  65.     while (count < len) {
  66.         int n = super.read(buf, pos + count, len - count);
  67.         if (n >= 0) {
  68.         count += n;
  69.         } else {
  70.         reset();
  71.         }
  72.     }
  73.     return count;
  74.     }
  75. }
  76.