FileDocCategorySizeDatePackage
DataLine.javaAPI DocAndroid 1.5 API4386Wed May 06 22:41:02 BST 2009javax.sound.sampled

DataLine.java

/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package javax.sound.sampled;

public interface DataLine extends Line {

    class Info extends Line.Info {
        private AudioFormat[] formats;
        private int minBufferSize;
        private int maxBufferSize;
        
        public Info(Class <?> lineClass, AudioFormat format) {
            super(lineClass);

            this.formats = new AudioFormat[] { format };
            this.minBufferSize = AudioSystem.NOT_SPECIFIED;
            this.maxBufferSize = AudioSystem.NOT_SPECIFIED;
        }

        public Info(Class <?> lineClass, AudioFormat[] formats, int minBufferSize, int maxBufferSize) {
            super(lineClass);

            this.formats = formats;
            this.minBufferSize = minBufferSize;
            this.maxBufferSize = maxBufferSize;
        }

        public Info(Class <?> lineClass, AudioFormat format, int bufferSize) {
            super(lineClass);

            this.formats = new AudioFormat[] { format };
            this.minBufferSize = bufferSize;
            this.maxBufferSize = bufferSize;
        }

        public AudioFormat[] getFormats(){
            return formats;
        }
        
        public boolean isFormatSupported(AudioFormat format) {
            if (formats == null) {
                return false;
            }
            for (AudioFormat supported : formats) {
                if (format.matches(supported)) {
                    return true;
                }
            }
            return false;
        }

        public int getMinBufferSize() {
            return minBufferSize;
        }

        public int getMaxBufferSize() {
            return maxBufferSize;
        }

        @Override
        public boolean matches(Line.Info info) {
            
            if (!super.matches(info)) {
                return false;
            }
            
            DataLine.Info inf = (DataLine.Info)info;
            if ((minBufferSize != AudioSystem.NOT_SPECIFIED
                    && inf.getMinBufferSize() != AudioSystem.NOT_SPECIFIED 
                    && minBufferSize < inf.getMinBufferSize())
                    || (maxBufferSize != AudioSystem.NOT_SPECIFIED
                            && inf.getMaxBufferSize() != AudioSystem.NOT_SPECIFIED
                            && maxBufferSize > inf.getMaxBufferSize())) {
                return false;
            }
            
            for (AudioFormat supported : formats) {
                if (!inf.isFormatSupported(supported)) {
                    return false;
                }
            }

            return true;
        }
        
        @Override
        public String toString() {
            String formatStr = (formats.length == 1? "format " + formats[0].toString() //$NON-NLS-1$
                    : formats.length + " audio formats"); //$NON-NLS-1$
            String bufStr = ""; //$NON-NLS-1$
            if (minBufferSize != AudioSystem.NOT_SPECIFIED) {
                bufStr = "and buffers of " + minBufferSize + //$NON-NLS-1$
                    " to " + maxBufferSize + " bytes"; //$NON-NLS-1$ //$NON-NLS-2$
            }
            return getLineClass() + " supporting " + formatStr + ", " + bufStr; //$NON-NLS-1$
        }
    }

    int available();

    void drain();

    void flush();
    
    int getBufferSize();
    
    AudioFormat getFormat();
    
    int getFramePosition();
    
    float getLevel();
    
    long getLongFramePosition();
    
    long getMicrosecondPosition();
    
    boolean isActive();
    
    boolean isRunning();
    
    void start();
    
    void stop();
}