changeset in /hg/pulseaudio: * src/java/org/classpath/icedtea/pu...

iivan at town.yyz.redhat.com iivan at town.yyz.redhat.com
Fri Aug 15 13:39:40 PDT 2008


changeset 10aa02b5a832 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=10aa02b5a832
description:
	* src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java:
	         superclass for TargetDataLine and SourceDataLine; moved open
	         and close here
	* src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java:
	         chnaged the methods written so far to use Stream.java

diffstat:

10 files changed, 181 insertions(+), 295 deletions(-)
ChangeLog                                                               |    9 
build.xml                                                               |    1 
src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java       |  118 ++++++
src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java |  105 -----
src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java |  187 ----------
src/java/org/classpath/icedtea/pulseaudio/SimpleAudioRecorder.java      |    1 
src/java/org/classpath/icedtea/pulseaudio/Stream.java                   |    6 
src/java/org/classpath/icedtea/pulseaudio/StreamEvent.java              |   20 -
src/java/org/classpath/icedtea/pulseaudio/StreamListener.java           |    8 
src/native/org_classpath_icedtea_pulseaudio_Stream.c                    |   21 -

diffs (truncated from 682 to 500 lines):

diff -r 543d5b1cef67 -r 10aa02b5a832 ChangeLog
--- a/ChangeLog	Fri Aug 15 15:46:53 2008 -0400
+++ b/ChangeLog	Fri Aug 15 16:39:53 2008 -0400
@@ -1,3 +1,12 @@ 2008-08-13 Ioana Ivan  <iivan at redhat.com
+2008-08-13 Ioana Ivan  <iivan at redhat.com>
+
+        * src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java:
+	        superclass for TargetDataLine and SourceDataLine; moved open
+		and close here
+	* src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java:
+		chnaged the methods written so far to use Stream.java
+
+
 2008-08-13 Ioana Ivan  <iivan at redhat.com>
 
         * src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java:
diff -r 543d5b1cef67 -r 10aa02b5a832 build.xml
--- a/build.xml	Fri Aug 15 15:46:53 2008 -0400
+++ b/build.xml	Fri Aug 15 16:39:53 2008 -0400
@@ -40,6 +40,7 @@
 			<class name="org.classpath.icedtea.pulseaudio.Stream"/>
 			<class name="org.classpath.icedtea.pulseaudio.PulseAudioTargetDataLine"/>
 			<class name="org.classpath.icedtea.pulseaudio.PulseAudioStreamVolumeControl"/>
+			<class name="org.classpath.icedtea.pulseaudio.PulseAudioDataLine"/>
 		</javah>
 	</target>
 
diff -r 543d5b1cef67 -r 10aa02b5a832 src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java	Fri Aug 15 16:39:53 2008 -0400
@@ -0,0 +1,118 @@
+package org.classpath.icedtea.pulseaudio;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.Semaphore;
+
+import javax.sound.sampled.AudioFormat;
+import javax.sound.sampled.AudioSystem;
+import javax.sound.sampled.Line;
+import javax.sound.sampled.LineEvent;
+import javax.sound.sampled.LineListener;
+import javax.sound.sampled.LineUnavailableException;
+
+public abstract class PulseAudioDataLine implements Line {
+
+	protected static final int DEFAULT_BUFFER_SIZE = 1000;
+	protected static final String PULSEAUDIO_FORMAT_KEY = "PulseAudioFormatKey";
+
+	protected String streamName = "Java Stream";
+	
+	protected boolean isOpen = false;
+	protected AudioFormat[] supportedFormats = null;
+	protected AudioFormat currentFormat = null;
+	protected AudioFormat defaultFormat = null;
+	
+	
+	protected List<LineListener> lineListeners = new ArrayList<LineListener>();;
+	
+	protected EventLoop eventLoop = null;
+	protected Semaphore semaphore = new Semaphore(0);
+	protected Stream stream;
+	
+	
+	
+	public void open(AudioFormat format, int bufferSize)
+	throws LineUnavailableException {
+		if (isOpen) {
+			throw new IllegalStateException("Line is already open");
+		}
+
+		// ignore suggested buffer size
+
+		for (AudioFormat myFormat : supportedFormats) {
+			if (format.matches(myFormat)) {
+				stream = new Stream(eventLoop.getContextPointer(), streamName,
+						Stream.Format.valueOf((String) myFormat
+								.getProperty(PULSEAUDIO_FORMAT_KEY)),
+								(int) format.getSampleRate(), format.getChannels());
+				currentFormat = format;
+				isOpen = true;
+			}
+		}
+		// no matches found
+		if (!isOpen) {
+			throw new IllegalArgumentException("Invalid format");
+		}
+
+		Stream.StateListener openCloseListener = new Stream.StateListener() {
+
+			@Override
+			public void update() {
+				if (stream.getState() == Stream.State.READY) {
+					fireLineEvent(new LineEvent(PulseAudioDataLine.this,
+							LineEvent.Type.OPEN, AudioSystem.NOT_SPECIFIED));
+					semaphore.release();
+				} else if (stream.getState() == Stream.State.TERMINATED
+						|| stream.getState() == Stream.State.FAILED) {
+					fireLineEvent((new LineEvent(PulseAudioDataLine.this,
+							LineEvent.Type.CLOSE, AudioSystem.NOT_SPECIFIED)));
+					semaphore.release();
+				}
+			}
+
+		};
+
+		stream.addStateListener(openCloseListener);
+
+		synchronized (eventLoop.threadLock) {
+
+			connectLine();
+		}
+
+		try {
+			semaphore.acquire();
+		} catch (InterruptedException e) {
+			// throw new LineUnavailableException("unable to prepare
+			// stream");
+		}
+	}
+	
+	public void close() {
+		assert (isOpen);
+
+		synchronized (eventLoop.threadLock) {
+			stream.drain();
+			stream.disconnect();
+		}
+
+		try {
+			semaphore.acquire();
+		} catch (InterruptedException e) {
+			// throw new LineUnavailableException("unable to prepare
+			// stream");
+		}
+
+	}
+	
+	private void fireLineEvent(LineEvent e) {
+		for (LineListener lineListener : lineListeners) {
+			lineListener.update(e);
+		}
+	}
+
+	abstract void connectLine();
+
+	
+
+}
diff -r 543d5b1cef67 -r 10aa02b5a832 src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java	Fri Aug 15 15:46:53 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java	Fri Aug 15 16:39:53 2008 -0400
@@ -38,37 +38,23 @@ package org.classpath.icedtea.pulseaudio
 package org.classpath.icedtea.pulseaudio;
 
 import java.util.ArrayList;
-import java.util.List;
-import java.util.concurrent.Semaphore;
 
 import javax.sound.sampled.AudioFormat;
 import javax.sound.sampled.AudioSystem;
 import javax.sound.sampled.Control;
 import javax.sound.sampled.DataLine;
-import javax.sound.sampled.LineEvent;
 import javax.sound.sampled.LineListener;
 import javax.sound.sampled.LineUnavailableException;
 import javax.sound.sampled.SourceDataLine;
 import javax.sound.sampled.AudioFormat.Encoding;
 import javax.sound.sampled.Control.Type;
 
-public class PulseAudioSourceDataLine implements SourceDataLine {
-
-	private static final int DEFAULT_BUFFER_SIZE = 1000;
-	private static final String PULSEAUDIO_FORMAT_KEY = "PulseAudioFormatKey";
-
-	private String streamName = "Java Stream";
-
-	private EventLoop eventLoop = null;
-
-	private boolean isOpen = false;
+public class PulseAudioSourceDataLine extends PulseAudioDataLine implements SourceDataLine {
+
+
 	private boolean isPaused = false;
 
-	private AudioFormat[] supportedFormats = null;
-	private AudioFormat currentFormat = null;
-	private AudioFormat defaultFormat = null;
-
-	private List<LineListener> lineListeners;
+
 
 	private Control[] controls = null;
 	private PulseAudioStreamMuteControl muteControl;
@@ -76,10 +62,9 @@ public class PulseAudioSourceDataLine im
 	private boolean muted;
 	private float volume;
 
-	private Semaphore semaphore = new Semaphore(0);
 	private long currentFramePosition = 0;
 
-	private Stream stream;
+	
 
 	public PulseAudioSourceDataLine(EventLoop eventLoop, AudioFormat[] formats,
 			AudioFormat defaultFormat) {
@@ -112,65 +97,18 @@ public class PulseAudioSourceDataLine im
 
 	public void open(AudioFormat format, int bufferSize)
 			throws LineUnavailableException {
-		if (isOpen) {
-			throw new IllegalStateException("Line is already open");
-		}
-
-		// ignore suggested buffer size
-
-		for (AudioFormat myFormat : supportedFormats) {
-			if (format.matches(myFormat)) {
-				stream = new Stream(eventLoop.getContextPointer(), streamName,
-						Stream.Format.valueOf((String) myFormat
-								.getProperty(PULSEAUDIO_FORMAT_KEY)),
-						(int) format.getSampleRate(), format.getChannels());
-				currentFormat = format;
-				isOpen = true;
-			}
-		}
-		// no matches found
-		if (!isOpen) {
-			throw new IllegalArgumentException("Invalid format");
-		}
-
-		Stream.StateListener openCloseListener = new Stream.StateListener() {
-
-			@Override
-			public void update() {
-				if (stream.getState() == Stream.State.READY) {
-					fireLineEvent(new LineEvent(PulseAudioSourceDataLine.this,
-							LineEvent.Type.OPEN, AudioSystem.NOT_SPECIFIED));
-					semaphore.release();
-				} else if (stream.getState() == Stream.State.TERMINATED
-						|| stream.getState() == Stream.State.FAILED) {
-					fireLineEvent((new LineEvent(PulseAudioSourceDataLine.this,
-							LineEvent.Type.CLOSE, AudioSystem.NOT_SPECIFIED)));
-					semaphore.release();
-				}
-			}
-
-		};
-
-		stream.addStateListener(openCloseListener);
-
-		synchronized (eventLoop.threadLock) {
-
-			stream.connectForPlayback(null);
-		}
-
-		try {
-			semaphore.acquire();
-		} catch (InterruptedException e) {
-			// throw new LineUnavailableException("unable to prepare
-			// stream");
-		}
-
+	
+		super.open(format, bufferSize);
 		controls = new Control[2];
 		volumeControl = new PulseAudioStreamVolumeControl(this);
 		controls[0] = volumeControl;
 		muteControl = new PulseAudioStreamMuteControl(this);
 		controls[1] = muteControl;
 
+	}
+	
+	protected void connectLine() {
+		stream.connectForPlayback(null);
 	}
 
 	public void open(AudioFormat format) throws LineUnavailableException {
@@ -279,22 +217,6 @@ public class PulseAudioSourceDataLine im
 		}
 	};
 
-	public void close() {
-		assert (isOpen);
-
-		synchronized (eventLoop.threadLock) {
-			stream.drain();
-			stream.disconnect();
-		}
-
-		try {
-			semaphore.acquire();
-		} catch (InterruptedException e) {
-			// throw new LineUnavailableException("unable to prepare
-			// stream");
-		}
-
-	}
 
 	public int getBufferSize() {
 		// FIXME!
@@ -418,11 +340,6 @@ public class PulseAudioSourceDataLine im
 
 	}
 
-	private void fireLineEvent(LineEvent e) {
-		for (LineListener lineListener : lineListeners) {
-			lineListener.update(e);
-		}
-	}
 
 	protected EventLoop getEventLoop() {
 		return this.eventLoop;
diff -r 543d5b1cef67 -r 10aa02b5a832 src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java	Fri Aug 15 15:46:53 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java	Fri Aug 15 16:39:53 2008 -0400
@@ -37,42 +37,20 @@ exception statement from your version.
 
 package org.classpath.icedtea.pulseaudio;
 
-import java.io.File;
+
 import java.io.IOException;
 import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.LinkedList;
-import java.util.List;
-import java.util.Map;
-import java.util.concurrent.Semaphore;
-
 import javax.sound.sampled.*;
 import javax.sound.sampled.AudioFormat.Encoding;
 import javax.sound.sampled.Control.Type;
-import javax.sound.sampled.Port.Info;
-
-public class PulseAudioTargetDataLine implements TargetDataLine {
+
+
+public class PulseAudioTargetDataLine extends PulseAudioDataLine implements TargetDataLine {
 
 	
 	
 	protected boolean isOpen = false;
 	protected boolean isPaused = false;
-
-	private AudioFormat[] supportedFormats = null;
-	private AudioFormat currentFormat = null;
-	private AudioFormat defaultFormat = null;
-
-	private List<LineListener> lineListeners = new LinkedList<LineListener>();
-	
-	private List<StreamListener> streamListeners = new ArrayList<StreamListener>();
-	
-	private String streamName = "Java Stream";
-	private static final int DEFAULT_BUFFER_SIZE = 1000;
-	private static final String PULSEAUDIO_FORMAT_KEY = "PulseAudioFormatKey";
-	
-	private EventLoop eventLoop = null;
-	
-	private Semaphore semaphore = new Semaphore(0);
 	
 	@SuppressWarnings("unused")
 	private long streamPointer;
@@ -88,16 +66,9 @@ public class PulseAudioTargetDataLine im
 		}
 	}
 	
-	private native void native_open(long contextPointer, String streamName,
-			String encoding, int sampleRate, int channels, int bufferSize);
-	
-	private native void native_start();
 	
 	private native int native_get_readable_size();
 	
-	private native void native_close();
-	
-	private native int native_read(byte[] array, int remaininglength, int position);
 	
 	public PulseAudioTargetDataLine(EventLoop eventLoop, AudioFormat[] formats, AudioFormat defaultFormat) {
 		supportedFormats = formats;
@@ -108,64 +79,8 @@ public class PulseAudioTargetDataLine im
 
 	}
 
-	public void open(AudioFormat format, int bufferSize)
-			throws LineUnavailableException {
-		System.out.println("OPEn CALLED");
-		if (isOpen) {
-			throw new IllegalStateException("Line is already open");
-		}
-
-		// ignore suggested buffer size
-
-		for (AudioFormat myFormat : supportedFormats) {
-			if (format.matches(myFormat)) {
-				native_open(eventLoop.getContextPointer(), streamName,
-						(String) myFormat.getProperty(PULSEAUDIO_FORMAT_KEY),
-						(int) format.getSampleRate(), format.getChannels(),
-						bufferSize);
-				currentFormat = format;
-				isOpen = true;
-			}
-		}
-		// no matches found
-		if (!isOpen) {
-			throw new IllegalArgumentException("Invalid format");
-		}
-
-		StreamListener openCloseListener = new StreamListener() {
-
-			@Override
-			public void update(StreamEvent e) {
-				if (e.getType() == StreamEvent.Type.READY) {
-					fireLineEvent(new LineEvent(PulseAudioTargetDataLine.this,
-							LineEvent.Type.OPEN, AudioSystem.NOT_SPECIFIED));
-					System.out.println("IN HERE");
-					semaphore.release();
-				} else if (e.getType() == StreamEvent.Type.TERMINATED
-						|| e.getType() == StreamEvent.Type.FAILED) {
-					fireLineEvent((new LineEvent(PulseAudioTargetDataLine.this,
-							LineEvent.Type.CLOSE, AudioSystem.NOT_SPECIFIED)));
-					semaphore.release();
-				}
-			}
-
-		};
-
-		addStreamListener(openCloseListener);
-
-
-		
-		synchronized (eventLoop.threadLock) {
-
-			native_start();
-		}
-
-		try {
-			semaphore.acquire();
-		} catch (InterruptedException e) {
-			// throw new LineUnavailableException("unable to prepare
-			// stream");
-		}
+	protected void connectLine() {
+		stream.connectForRecording(null);
 	}
 
 	public void open(AudioFormat format) throws LineUnavailableException {
@@ -203,19 +118,16 @@ public class PulseAudioTargetDataLine im
 
 		int position = offset;
 		int remainingLength = length;
-		int availableSize;
-
 		int sizeRead = 0;
 
 		while (remainingLength != 0) {
 
 			synchronized (eventLoop.threadLock) {
-				availableSize = available();
-				int toRead = native_read(data, remainingLength,  position);
-
-				sizeRead += toRead;
-				position += toRead;
-				remainingLength -= toRead;
+				int bytesRead = stream.read(data, remainingLength, position);
+
+				sizeRead += bytesRead;
+				position += bytesRead;
+				remainingLength -= bytesRead;
 				
 
 			}
@@ -289,25 +201,6 @@ public class PulseAudioTargetDataLine im
 		}
 	}
 
-	public void close() {
-		assert (isOpen);
-
-
-		synchronized (eventLoop.threadLock) {
-			native_close();
-		}
-
-		try {
-			semaphore.acquire();
-			System.out.println("stream closed");
-		} catch (InterruptedException e) {
-			// throw new LineUnavailableException("unable to prepare
-			// stream");
-		}
-
-	}
-
-	private native void closeStream();
 
 	public int getBufferSize() {
 		// TODO Auto-generated method stub
@@ -365,57 +258,11 @@ public class PulseAudioTargetDataLine im
 	public boolean isControlSupported(Type control) {



More information about the distro-pkg-dev mailing list