jdk/src/java.desktop/share/classes/javax/sound/midi/MidiFileFormat.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 25131 jdk/src/share/classes/javax/sound/midi/MidiFileFormat.java@49006bd0e69d
child 26037 508779ce6619
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 19207
diff changeset
     2
 * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.sound.midi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Collections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * A <code>MidiFileFormat</code> object encapsulates a MIDI file's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * type, as well as its length and timing information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p>A <code>MidiFileFormat</code> object can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * include a set of properties. A property is a pair of key and value:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * the key is of type <code>String</code>, the associated property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * value is an arbitrary object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Properties specify additional informational
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * meta data (like a author, or copyright).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * Properties are optional information, and file reader and file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * writer implementations are not required to provide or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * recognize properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>The following table lists some common properties that should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * be used in implementations:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <table border=1>
19207
3448b0cb4077 8022174: Fix doclint warnings in javax.sound
darcy
parents: 5506
diff changeset
    53
    <caption>MIDI File Format Properties</caption>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *   <th>Property key</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *   <th>Value type</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *   <th>Description</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *   <td>&quot;author&quot;</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *   <td>{@link java.lang.String String}</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *   <td>name of the author of this file</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *   <td>&quot;title&quot;</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *   <td>{@link java.lang.String String}</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *   <td>title of this file</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *   <td>&quot;copyright&quot;</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *   <td>{@link java.lang.String String}</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *   <td>copyright message</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *   <td>&quot;date&quot;</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *   <td>{@link java.util.Date Date}</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *   <td>date of the recording or release</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *  <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *   <td>&quot;comment&quot;</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *   <td>{@link java.lang.String String}</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *   <td>an arbitrary text</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *  </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * @see MidiSystem#getMidiFileFormat(java.io.File)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * @see Sequencer#setSequence(java.io.InputStream stream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * @author Kara Kytle
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * @author Florian Bomers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
public class MidiFileFormat {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Represents unknown length.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * @see #getByteLength
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @see #getMicrosecondLength
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public static final int UNKNOWN_LENGTH = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * The type of MIDI file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    protected int type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * The division type of the MIDI file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @see Sequence#PPQ
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @see Sequence#SMPTE_24
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * @see Sequence#SMPTE_25
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @see Sequence#SMPTE_30DROP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @see Sequence#SMPTE_30
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    protected float divisionType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * The timing resolution of the MIDI file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    protected int resolution;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * The length of the MIDI file in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    protected int byteLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * The duration of the MIDI file in microseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    protected long microsecondLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /** The set of properties */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    private HashMap<String, Object> properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Constructs a <code>MidiFileFormat</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @param type the MIDI file type (0, 1, or 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @param divisionType the timing division type (PPQ or one of the SMPTE types)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param resolution the timing resolution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param bytes the length of the MIDI file in bytes, or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param microseconds the duration of the file in microseconds, or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @see #UNKNOWN_LENGTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @see Sequence#PPQ
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @see Sequence#SMPTE_24
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @see Sequence#SMPTE_25
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @see Sequence#SMPTE_30DROP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @see Sequence#SMPTE_30
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    public MidiFileFormat(int type, float divisionType, int resolution, int bytes, long microseconds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        this.divisionType = divisionType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        this.resolution = resolution;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        this.byteLength = bytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        this.microsecondLength = microseconds;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        this.properties = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Construct a <code>MidiFileFormat</code> with a set of properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param type         the MIDI file type (0, 1, or 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @param divisionType the timing division type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *      (PPQ or one of the SMPTE types)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param resolution   the timing resolution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @param bytes the length of the MIDI file in bytes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *      or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param microseconds the duration of the file in microseconds,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *      or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param properties  a <code>Map&lt;String,Object&gt;</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     *        with properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @see #UNKNOWN_LENGTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @see Sequence#PPQ
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @see Sequence#SMPTE_24
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @see Sequence#SMPTE_25
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @see Sequence#SMPTE_30DROP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @see Sequence#SMPTE_30
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    public MidiFileFormat(int type, float divisionType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                          int resolution, int bytes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                          long microseconds, Map<String, Object> properties) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        this(type, divisionType, resolution, bytes, microseconds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        this.properties = new HashMap<String, Object>(properties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * Obtains the MIDI file type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @return the file's type (0, 1, or 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    public int getType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        return type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Obtains the timing division type for the MIDI file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @return the division type (PPQ or one of the SMPTE types)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @see Sequence#Sequence(float, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @see Sequence#PPQ
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @see Sequence#SMPTE_24
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @see Sequence#SMPTE_25
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @see Sequence#SMPTE_30DROP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @see Sequence#SMPTE_30
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @see Sequence#getDivisionType()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    public float getDivisionType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        return divisionType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * Obtains the timing resolution for the MIDI file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * If the division type is PPQ, the resolution is specified in ticks per beat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * For SMTPE timing, the resolution is specified in ticks per frame.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @return the number of ticks per beat (PPQ) or per frame (SMPTE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @see #getDivisionType
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @see Sequence#getResolution()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public int getResolution() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        return resolution;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Obtains the length of the MIDI file, expressed in 8-bit bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * @return the number of bytes in the file, or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * @see #UNKNOWN_LENGTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    public int getByteLength() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        return byteLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Obtains the length of the MIDI file, expressed in microseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * @return the file's duration in microseconds, or UNKNOWN_LENGTH if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @see Sequence#getMicrosecondLength()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @see #getByteLength
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @see #UNKNOWN_LENGTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public long getMicrosecondLength() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        return microsecondLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Obtain an unmodifiable map of properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * The concept of properties is further explained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * the {@link MidiFileFormat class description}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @return a <code>Map&lt;String,Object&gt;</code> object containing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *         all properties. If no properties are recognized, an empty map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *         returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @see #getProperty(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
25131
49006bd0e69d 8044553: Fix raw and unchecked lint warnings in javax.sound.*
darcy
parents: 22584
diff changeset
   269
    @SuppressWarnings("unchecked") // Cast of result of clone
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    public Map<String,Object> properties() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        Map<String,Object> ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (properties == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            ret = new HashMap<String,Object>(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            ret = (Map<String,Object>) (properties.clone());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        }
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 19207
diff changeset
   277
        return Collections.unmodifiableMap(ret);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * Obtain the property value specified by the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * The concept of properties is further explained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * the {@link MidiFileFormat class description}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <p>If the specified property is not defined for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * particular file format, this method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @param key the key of the desired property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @return the value of the property with the specified key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *         or <code>null</code> if the property does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @see #properties()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    public Object getProperty(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        if (properties == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        return properties.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
}