9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package javax.sound.midi.spi;
27
28 import java.io.File;
29 import java.io.InputStream;
30 import java.io.IOException;
31 import java.net.URL;
32
33 import javax.sound.midi.MidiFileFormat;
34 import javax.sound.midi.Sequence;
35 import javax.sound.midi.InvalidMidiDataException;
36
37 /**
38 * A {@code MidiFileReader} supplies MIDI file-reading services. Classes
39 * implementing this interface can parse the format information from one or more
40 * types of MIDI file, and can produce a {@link Sequence} object from files of
41 * these types.
42 *
43 * @author Kara Kytle
44 * @since 1.3
45 */
46 public abstract class MidiFileReader {
47
48 /**
49 * Obtains the MIDI file format of the input stream provided. The stream
50 * must point to valid MIDI file data. In general, MIDI file readers may
51 * need to read some data from the stream before determining whether they
52 * support it. These parsers must be able to mark the stream, read enough
53 * data to determine whether they support the stream, and, if not, reset the
54 * stream's read pointer to its original position. If the input stream does
55 * not support this, this method may fail with an {@code IOException}.
89 * @return a {@code MidiFileFormat} object describing the MIDI file format
90 * @throws InvalidMidiDataException if the {@code File} does not point to
91 * valid MIDI file data recognized by the system
92 * @throws IOException if an I/O exception occurs
93 */
94 public abstract MidiFileFormat getMidiFileFormat(File file)
95 throws InvalidMidiDataException, IOException;
96
97 /**
98 * Obtains a MIDI sequence from the input stream provided. The stream must
99 * point to valid MIDI file data. In general, MIDI file readers may need to
100 * read some data from the stream before determining whether they support
101 * it. These parsers must be able to mark the stream, read enough data to
102 * determine whether they support the stream, and, if not, reset the
103 * stream's read pointer to its original position. If the input stream does
104 * not support this, this method may fail with an IOException.
105 *
106 * @param stream the input stream from which the {@code Sequence} should
107 * be constructed
108 * @return a {@code Sequence} object based on the MIDI file data contained
109 * in the input stream.
110 * @throws InvalidMidiDataException if the stream does not point to valid
111 * MIDI file data recognized by the system
112 * @throws IOException if an I/O exception occurs
113 * @see InputStream#markSupported
114 * @see InputStream#mark
115 */
116 public abstract Sequence getSequence(InputStream stream)
117 throws InvalidMidiDataException, IOException;
118
119 /**
120 * Obtains a MIDI sequence from the URL provided. The URL must point to
121 * valid MIDI file data.
122 *
123 * @param url the URL for which the {@code Sequence} should be constructed
124 * @return a {@code Sequence} object based on the MIDI file data pointed to
125 * by the URL
126 * @throws InvalidMidiDataException if the URL does not point to valid MIDI
127 * file data recognized by the system
128 * @throws IOException if an I/O exception occurs
129 */
|
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package javax.sound.midi.spi;
27
28 import java.io.File;
29 import java.io.IOException;
30 import java.io.InputStream;
31 import java.net.URL;
32
33 import javax.sound.midi.InvalidMidiDataException;
34 import javax.sound.midi.MidiFileFormat;
35 import javax.sound.midi.Sequence;
36
37 /**
38 * A {@code MidiFileReader} supplies MIDI file-reading services. Classes
39 * implementing this interface can parse the format information from one or more
40 * types of MIDI file, and can produce a {@link Sequence} object from files of
41 * these types.
42 *
43 * @author Kara Kytle
44 * @since 1.3
45 */
46 public abstract class MidiFileReader {
47
48 /**
49 * Obtains the MIDI file format of the input stream provided. The stream
50 * must point to valid MIDI file data. In general, MIDI file readers may
51 * need to read some data from the stream before determining whether they
52 * support it. These parsers must be able to mark the stream, read enough
53 * data to determine whether they support the stream, and, if not, reset the
54 * stream's read pointer to its original position. If the input stream does
55 * not support this, this method may fail with an {@code IOException}.
89 * @return a {@code MidiFileFormat} object describing the MIDI file format
90 * @throws InvalidMidiDataException if the {@code File} does not point to
91 * valid MIDI file data recognized by the system
92 * @throws IOException if an I/O exception occurs
93 */
94 public abstract MidiFileFormat getMidiFileFormat(File file)
95 throws InvalidMidiDataException, IOException;
96
97 /**
98 * Obtains a MIDI sequence from the input stream provided. The stream must
99 * point to valid MIDI file data. In general, MIDI file readers may need to
100 * read some data from the stream before determining whether they support
101 * it. These parsers must be able to mark the stream, read enough data to
102 * determine whether they support the stream, and, if not, reset the
103 * stream's read pointer to its original position. If the input stream does
104 * not support this, this method may fail with an IOException.
105 *
106 * @param stream the input stream from which the {@code Sequence} should
107 * be constructed
108 * @return a {@code Sequence} object based on the MIDI file data contained
109 * in the input stream
110 * @throws InvalidMidiDataException if the stream does not point to valid
111 * MIDI file data recognized by the system
112 * @throws IOException if an I/O exception occurs
113 * @see InputStream#markSupported
114 * @see InputStream#mark
115 */
116 public abstract Sequence getSequence(InputStream stream)
117 throws InvalidMidiDataException, IOException;
118
119 /**
120 * Obtains a MIDI sequence from the URL provided. The URL must point to
121 * valid MIDI file data.
122 *
123 * @param url the URL for which the {@code Sequence} should be constructed
124 * @return a {@code Sequence} object based on the MIDI file data pointed to
125 * by the URL
126 * @throws InvalidMidiDataException if the URL does not point to valid MIDI
127 * file data recognized by the system
128 * @throws IOException if an I/O exception occurs
129 */
|