view src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java @ 149:b4390e330ff7

2008-09-29 Ioana Ivan <iivan@redhat.com> * src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java: removed all references to the boolean variable corked since it was redundant. (start) : only send a START event if there's been a call to stop between the last call to start and this one. (stop): only send a STOP event if there's been a call to start between the last call the stop and this one. (startedListener.update): send a START event the first time data is being written to the line and after an underflow.
author Ioana Ivan <iivan@redhat.com>
date Mon, 29 Sep 2008 14:01:57 -0400
parents f29cbcfbc354
children 5ab54b0ca4ea
line wrap: on
line source

/* PulseAudioClip.java
   Copyright (C) 2008 Red Hat, Inc.

This file is part of IcedTea.

IcedTea is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 2.

IcedTea is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with IcedTea; see the file COPYING.  If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version.
 */

package org.classpath.icedtea.pulseaudio;

import java.util.concurrent.Semaphore;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineEvent;
import javax.sound.sampled.LineUnavailableException;

import org.classpath.icedtea.pulseaudio.Stream.WriteListener;

public abstract class PulseAudioDataLine extends PulseAudioLine implements
		DataLine {

	protected static final int DEFAULT_BUFFER_SIZE = StreamBufferAttributes.SANE_DEFAULT;
	protected static final String PULSEAUDIO_FORMAT_KEY = "PulseAudioFormatKey";

	protected String streamName = "Java Stream";

	// true between start() and stop()
	protected boolean isStarted = false;

	//true between a started and an underflow callback
	protected boolean dataWritten = false;
	

	// true if a stream has been paused
	// protected boolean isPaused = false;

	protected AudioFormat[] supportedFormats = null;
	protected AudioFormat currentFormat = null;
	protected AudioFormat defaultFormat = null;
	protected boolean sendEvents = true;

	protected int bufferSize = 0;
	// the total number of frames played since this line was opened
	protected long framesSinceOpen = 0;

	protected EventLoop eventLoop = null;
	protected Semaphore semaphore = new Semaphore(0);
	protected Stream stream;

	protected void open(AudioFormat format, int bufferSize)
			throws LineUnavailableException {

		if (isOpen) {
			throw new IllegalStateException("Line is already open");
		}

		createStream(format);
		addStreamListeners();
		connect(null, bufferSize);
	}

	private void createStream(AudioFormat format)
			throws LineUnavailableException {

		for (AudioFormat myFormat : supportedFormats) {
			if (format.matches(myFormat)) {
				synchronized (eventLoop.threadLock) {
					stream = new Stream(eventLoop.getContextPointer(),
							streamName, Stream.Format.valueOf((String) myFormat
									.getProperty(PULSEAUDIO_FORMAT_KEY)),
							(int) format.getSampleRate(), format.getChannels());

				}
				currentFormat = format;
				isOpen = true;
			}
		}

		if (!isOpen) {
			throw new IllegalArgumentException("Invalid format");
		}

		// System.out.println("Stream " + stream + " created");

	}

	private void addStreamListeners() {
		Stream.StateListener openCloseListener = new Stream.StateListener() {

			@Override
			public void update() {
				synchronized (eventLoop.threadLock) {

					/*
					 * Note the order: first we notify all the listeners, and
					 * then return. this means no race conditions when the
					 * listeners are removed before they get called by close
					 * 
					 * eg:
					 * 
					 * line.close(); line.removeLineListener(listener)
					 * 
					 * the listener is guaranteed to have run
					 * 
					 */

					if (stream.getState() == Stream.State.READY) {
						if (sendEvents) {
							fireLineEvent(new LineEvent(
									PulseAudioDataLine.this,
									LineEvent.Type.OPEN, framesSinceOpen));
						}
						semaphore.release();

					} else if (stream.getState() == Stream.State.TERMINATED
							|| stream.getState() == Stream.State.FAILED) {
						if (sendEvents) {
							fireLineEvent((new LineEvent(
									PulseAudioDataLine.this,
									LineEvent.Type.CLOSE, framesSinceOpen)));
						}
						semaphore.release();

					}
				}
			}
		};

		stream.addStateListener(openCloseListener);

		Stream.UnderflowListener stoppedListener = new Stream.UnderflowListener() {
			@Override
			
			public void update() {
				dataWritten = false;
				System.out.println("underflow");
				// always send a STOP event on an underflow (assumption:
				// an underflow can't happen while the stream is corked)
				fireLineEvent(new LineEvent(PulseAudioDataLine.this,
						LineEvent.Type.STOP, framesSinceOpen));
			}
		};
		stream.addUnderflowListener(stoppedListener);

		Stream.PlaybackStartedListener startedListener = new Stream.PlaybackStartedListener() {
			@Override
			public void update() {
				System.out.println("started callback");
				
				//only send a START event in the beginning and following
				//an underflow
				if (!dataWritten) {
					fireLineEvent(new LineEvent(PulseAudioDataLine.this,
							LineEvent.Type.START, framesSinceOpen));
				}

				dataWritten = true;

			}
		};

		stream.addPlaybackStartedListener(startedListener);

		WriteListener writeNotifier = new WriteListener() {

			@Override
			public void update() {
				// System.out.println("can write");
				eventLoop.threadLock.notifyAll();
			}

		};
		stream.addWriteListener(writeNotifier);

		Stream.CorkListener corkListener = new Stream.CorkListener() {

			@Override
			public void update() {

				eventLoop.threadLock.notifyAll();
			}

		};
		stream.addCorkListener(corkListener);
	}

	private void connect(Stream masterStream, int bufferSize)
			throws LineUnavailableException {

		try {
			synchronized (eventLoop.threadLock) {
				connectLine(bufferSize, masterStream);
			}
		} catch (LineUnavailableException e) {
			// error connecting to the server!
			// stream.removePlaybackStartedListener(startedListener);
			// stream.removeUnderflowListener(stoppedListener);
			// stream.removeStateListener(openCloseListener);
			stream.free();
			stream = null;
			throw e;

		}
		this.bufferSize = bufferSize;
		try {
			semaphore.acquire();
			synchronized (eventLoop.threadLock) {
				if (stream.getState() != Stream.State.READY) {
					System.out.println(stream.getState());
					stream.disconnect();
					stream.free();
					throw new LineUnavailableException(
							"unable to obtain a line");
				}
			}
		} catch (InterruptedException e) {
			throw new LineUnavailableException("unable to prepare stream");
		}
	}

	protected void open(AudioFormat format) throws LineUnavailableException {
		open(format, DEFAULT_BUFFER_SIZE);

	}

	public void open() throws LineUnavailableException {
		assert (defaultFormat != null);

		open(defaultFormat, DEFAULT_BUFFER_SIZE);
	}

	public void close() {
		if (!isOpen) {
			throw new IllegalStateException(
					"Line must be open for close() to work");
		}

		drain();

		synchronized (eventLoop.threadLock) {
			stream.disconnect();
		}

		try {
			semaphore.acquire();
		} catch (InterruptedException e) {
			throw new RuntimeException("unable to prepare stream");
		}

		synchronized (eventLoop.threadLock) {
			stream.free();
		}

		super.close();

	}

	public void reconnectforSynchronization(Stream masterStream)
			throws LineUnavailableException {
		sendEvents = false;
		drain();

		synchronized (eventLoop.threadLock) {
			stream.disconnect();
		}
		try {
			semaphore.acquire();
		} catch (InterruptedException e) {
			throw new RuntimeException("unable to prepare stream");
		}

		createStream(getFormat());
		addStreamListeners();
		connect(masterStream, getBufferSize());

		sendEvents = true;
	}

	public void start() {
		if (!isOpen) {
			throw new IllegalStateException(
					"Line must be open()ed before it can be start()ed");
		}

		if (isStarted) {
			return;
			
		}

		
		Operation op;
		synchronized (eventLoop.threadLock) {
			op = stream.unCork();
			if (dataWritten && (!isStarted)) {
				fireLineEvent(new LineEvent(PulseAudioDataLine.this,
						LineEvent.Type.START, framesSinceOpen));
			}
		}

		op.waitForCompletion();
		op.releaseReference();
		isStarted = true;


	}

	public synchronized void stop() {
		if (!isOpen) {
			throw new IllegalStateException(
					"Line must be open()ed before it can be start()ed");

		}
		if (!isStarted) {
			return;
		}
		isStarted = true;
		Operation op;
		synchronized (eventLoop.threadLock) {
			op = stream.cork();
			// if there are no data on the line when stop was called,
			// don't send a stop event
			if (dataWritten && (isStarted)) {
				fireLineEvent(new LineEvent(PulseAudioDataLine.this,
						LineEvent.Type.STOP, framesSinceOpen));
			}
		}

		op.waitForCompletion();
		op.releaseReference();

		isStarted = false;
	}

	/*
	 * TODO
	 * 
	 * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4791152 :
	 * 
	 * a line is active in between calls to start() and stop(). In that sense,
	 * active means that the line is ready to take or give data. Running is
	 * tightly bound to data flow in the line. I.e. when you start a
	 * SourceDataLine but never write data to it, the line should not be
	 * running. This also means that a line should become not running on buffer
	 * underrun/overflow.
	 * 
	 * 
	 * HOWEVER, the javadocs say the opposite thing!
	 * 
	 */

	public boolean isActive() {
		return isStarted;
	}

	public boolean isRunning() {
		return isStarted && dataWritten;
	}

	protected abstract void connectLine(int bufferSize, Stream masterStream)
			throws LineUnavailableException;

	public abstract void drain();

	public Stream getStream() {
		if (!isOpen) {
			throw new IllegalStateException("Line must be open");
		}

		return stream;
	}

	@Override
	public int getBufferSize() {
		if (!isOpen) {
			return DEFAULT_BUFFER_SIZE;
		}
		return bufferSize;
	}

	public javax.sound.sampled.Line.Info getLineInfo() {
		return new DataLine.Info(this.getClass(), supportedFormats,
				StreamBufferAttributes.MIN_VALUE,
				StreamBufferAttributes.MAX_VALUE);
	}

	@Override
	public AudioFormat getFormat() {
		if (!isOpen) {
			return defaultFormat;
		}
		return currentFormat;
	}

	public float getLevel() {
		return AudioSystem.NOT_SPECIFIED;
	}

	public void setName(String streamName) {
		if (isOpen) {
			/*
			 * Note: setting the name of the stream after it's created wont
			 * work. In fact, it sets the name of the application! This is a bug
			 * in PulseAudio 0.9.12 but fixed in git.
			 */

			Operation o;
			synchronized (eventLoop.threadLock) {
				o = stream.setName(streamName);
			}
			o.waitForCompletion();
			o.releaseReference();

		}

		this.streamName = streamName;

	}

	public String getName() {
		return streamName;
	}

}