Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / javax / sound / sampled / spi / AudioFileWriter.java
blob955bb051715a6697d11409df4c6b9807b68cedff
1 /* Audio file writer API
2 Copyright (C) 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
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.
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. */
39 package javax.sound.sampled.spi;
41 import java.io.File;
42 import java.io.IOException;
43 import java.io.OutputStream;
45 import javax.sound.sampled.AudioFileFormat;
46 import javax.sound.sampled.AudioInputStream;
48 /**
49 * This abstract class provides an API for writing audio files. Concrete
50 * subclasses implement the methods declared here.
51 * @since 1.3
53 public abstract class AudioFileWriter
55 /**
56 * Creat a new audio file writer.
58 public AudioFileWriter()
62 /**
63 * Return an array of all audio file format types supported by this
64 * provider.
66 public abstract AudioFileFormat.Type[] getAudioFileTypes();
68 /**
69 * Return an array of all the audio file format types supported by this
70 * provider, which can be written given the input stream.
71 * @param ais the audio input stream
73 public abstract AudioFileFormat.Type[] getAudioFileTypes(AudioInputStream ais);
75 /**
76 * Return true if the indicated type is supported by this provider.
77 * @param type the audio file format type
79 public boolean isFileTypeSupported(AudioFileFormat.Type type)
81 AudioFileFormat.Type[] types = getAudioFileTypes();
82 for (int i = 0; i < types.length; ++i)
84 if (type.equals(types[i]))
85 return true;
87 return false;
90 /**
91 * Return true if the indicated type is supported by this provider,
92 * and can be written from the given audio input stream.
93 * @param type the audio file format type
94 * @param ais the audio input stream to write
96 public boolean isFileTypeSupported(AudioFileFormat.Type type,
97 AudioInputStream ais)
99 AudioFileFormat.Type[] types = getAudioFileTypes(ais);
100 for (int i = 0; i < types.length; ++i)
102 if (type.equals(types[i]))
103 return true;
105 return false;
109 * Write audio data to a file.
110 * @param ais the audio input stream to write
111 * @param type the desired audio file format type
112 * @param out the file to write to
113 * @return the number of bytes written
114 * @throws IOException if an I/O error occurs when writing
116 public abstract int write(AudioInputStream ais, AudioFileFormat.Type type,
117 File out)
118 throws IOException;
121 * Write audio data to an output stream.
122 * @param ais the audio input stream to write
123 * @param type the desired audio file format type
124 * @param os the output stream
125 * @return the number of bytes written
126 * @throws IOException if an I/O error occurs when writing
128 public abstract int write(AudioInputStream ais, AudioFileFormat.Type type,
129 OutputStream os)
130 throws IOException;