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

  1. /*
  2.  * @(#)AudioData.java    1.10 95/03/20 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.util.Hashtable;
  23. import net.www.html.URL;
  24. import browser.hotjava;
  25.  
  26. /**
  27.  * A clip of audio data, contains ulaw 8bit, 8000hz data.
  28.  * This data can be used to construct and AudioDataStream,
  29.  * which can be played. <p>
  30.  * The getAudioData method gets an audio clip out of the cache.
  31.  * @see AudioDataStream
  32.  * @see AudioPlayer
  33.  * @see AudioData#getAudioData
  34.  * @author Arthur van Hoff
  35.  * @version     1.10, 20 Mar 1995
  36.  */
  37. public
  38. class AudioData {
  39.     /**
  40.      * The data
  41.      */
  42.     byte buffer[];
  43.  
  44.     /**
  45.      * Constructor
  46.      */
  47.     public AudioData(byte buffer[]) {
  48.     this.buffer = buffer;
  49.     }
  50.  
  51.     /**
  52.      * Audio data cache.
  53.      */
  54.     private static Hashtable cache = new Hashtable();
  55.  
  56.     /**
  57.      * Get audio data from the cache.
  58.      */
  59.     public static AudioData getAudioData(URL url) {
  60.     String key = url.toExternalForm();
  61.     AudioData data = (AudioData)cache.get(key);
  62.     if (data == null) {
  63.         data = new AudioStream(url.openStreamInteractively()).getData();
  64.         cache.put(key, data);
  65.     }
  66.     return data;
  67.     }
  68.  
  69.     /**
  70.      * Flush the audio data cache.
  71.      */
  72.     public static void flushCache() {
  73.     cache = new Hashtable();
  74.     }
  75. }
  76.