changeset in /hg/pulseaudio: 2008-09-29 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Mon Sep 29 12:57:41 PDT 2008
changeset f508adb1c908 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=f508adb1c908
description:
2008-09-29 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java
(close): Dont drain the line on close. Also mark the line as stopped.
* unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java
(ThreaderReader): New class. Reads a targetDataLine in a thread.
(testReadAndClose): New function. Tests the effects of read() and close()
on the same line.
(testReadAndStop): New function. Tests the effects of read() and stop() on
a TargetDataLine.
(testReadAndDrain): New function. Tests the effects of read() and drain()
on a TargetDataLine.
(testReadAndFlush): New function. Tests the effects of read() and flush()
on a TargetDataLine.
diffstat:
2 files changed, 147 insertions(+), 2 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java | 3
unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java | 146 ++++++++++
diffs (190 lines):
diff -r f29cbcfbc354 -r f508adb1c908 src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java Fri Sep 26 13:27:33 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java Mon Sep 29 13:50:48 2008 -0400
@@ -261,8 +261,6 @@ public abstract class PulseAudioDataLine
"Line must be open for close() to work");
}
- drain();
-
synchronized (eventLoop.threadLock) {
stream.disconnect();
}
@@ -278,6 +276,7 @@ public abstract class PulseAudioDataLine
}
super.close();
+ isStarted = false;
}
diff -r f29cbcfbc354 -r f508adb1c908 unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java
--- a/unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java Fri Sep 26 13:27:33 2008 -0400
+++ b/unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java Mon Sep 29 13:50:48 2008 -0400
@@ -55,6 +55,7 @@ import org.junit.After;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
public class PulseAudioTargetDataLineTest {
@@ -67,6 +68,28 @@ public class PulseAudioTargetDataLineTes
AudioFormat aSupportedFormat = new AudioFormat(
AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 1, 1, 44100f, true);
+
+ class ThreadReader extends Thread {
+ TargetDataLine line;
+ byte[] buffer;
+
+ public ThreadReader(TargetDataLine line, byte[] buffer)
+ throws LineUnavailableException {
+
+ this.line = line;
+ this.buffer = buffer;
+
+ }
+
+ @Override
+ public void run() {
+ int bytesRead = 0;
+
+ bytesRead = line.read(buffer, 0, buffer.length);
+ // System.out.println("read data");
+
+ }
+ }
@Before
public void setUp() throws LineUnavailableException {
@@ -214,6 +237,129 @@ public class PulseAudioTargetDataLineTes
}
@Test
+ public void testReadAndClose() throws LineUnavailableException,
+ InterruptedException {
+ System.out.println("This test tries to close a line while "
+ + "read()ing to check that read() returns");
+ targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
+ TargetDataLine.class));
+ Assert.assertNotNull(targetDataLine);
+ AudioFormat breakingFormat = new AudioFormat(
+ AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 2, 2, 44100f,
+ true);
+ targetDataLine.open(breakingFormat);
+ targetDataLine.start();
+ byte[] buffer = new byte[1000000];
+
+ ThreadReader reader = new ThreadReader(targetDataLine, buffer);
+ reader.start();
+
+ Thread.sleep(100);
+
+ Assert.assertTrue(reader.isAlive());
+
+ targetDataLine.close();
+
+ reader.join(500);
+
+ Assert.assertFalse(reader.isAlive());
+
+ }
+
+ @Test
+ public void testReadAndStop() throws LineUnavailableException,
+ InterruptedException {
+ targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
+ TargetDataLine.class));
+ Assert.assertNotNull(targetDataLine);
+ AudioFormat breakingFormat = new AudioFormat(
+ AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 2, 2, 44100f,
+ true);
+ targetDataLine.open(breakingFormat);
+ targetDataLine.start();
+ byte[] buffer = new byte[10000000];
+
+ ThreadReader reader = new ThreadReader(targetDataLine, buffer);
+ reader.start();
+
+ Thread.sleep(100);
+
+ Assert.assertTrue(reader.isAlive());
+
+ targetDataLine.stop();
+
+ Thread.sleep(100);
+
+ Assert.assertFalse(reader.isAlive());
+
+ targetDataLine.close();
+
+ }
+
+ // this is kind of messed up
+ // drain should hang on a started data line
+ // but read should return
+ @Ignore
+ @Test
+ public void testReadAndDrain() throws LineUnavailableException,
+ InterruptedException {
+ targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
+ TargetDataLine.class));
+ Assert.assertNotNull(targetDataLine);
+ AudioFormat breakingFormat = new AudioFormat(
+ AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 2, 2, 44100f,
+ true);
+ targetDataLine.open(breakingFormat);
+ targetDataLine.start();
+ byte[] buffer = new byte[10000000];
+
+ ThreadReader reader = new ThreadReader(targetDataLine, buffer);
+ reader.start();
+
+ Thread.sleep(100);
+
+ Assert.assertTrue(reader.isAlive());
+
+ targetDataLine.drain();
+
+ Thread.sleep(100);
+
+ Assert.assertFalse(reader.isAlive());
+ targetDataLine.stop();
+ targetDataLine.close();
+ }
+
+ @Test
+ public void testReadAndFlush() throws LineUnavailableException,
+ InterruptedException {
+ targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
+ TargetDataLine.class));
+ Assert.assertNotNull(targetDataLine);
+ AudioFormat breakingFormat = new AudioFormat(
+ AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 2, 2, 44100f,
+ true);
+ targetDataLine.open(breakingFormat);
+ targetDataLine.start();
+ byte[] buffer = new byte[10000000];
+
+ ThreadReader reader = new ThreadReader(targetDataLine, buffer);
+ reader.start();
+
+ Thread.sleep(100);
+
+ Assert.assertTrue(reader.isAlive());
+
+ targetDataLine.flush();
+
+ Thread.sleep(100);
+
+ Assert.assertFalse(reader.isAlive());
+
+ targetDataLine.stop();
+ targetDataLine.close();
+ }
+
+ @Test
public void testDrain() throws LineUnavailableException,
InterruptedException {
System.out
More information about the distro-pkg-dev
mailing list