changeset in /hg/pulseaudio: 2008-08-14 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Fri Aug 15 09:03:10 PDT 2008
changeset 5f856aeca15a in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=5f856aeca15a
description:
2008-08-14 Omair Majid <omajid at redhat.com>
* build.xml: added Stream.java to list of files to generate jni headers
from
* src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java: initial
implementation using the Stream class
* src/java/org/classpath/icedtea/pulseaudio/Stream.java: new file
* src/native/Makefile.am: added Stream.c to list of files to package
* src/native/org_classpath_icedtea_pulseaudio_Stream.c
* unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java:
added a few more tests
diffstat:
6 files changed, 832 insertions(+), 26 deletions(-)
build.xml | 1
src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java | 54 -
src/java/org/classpath/icedtea/pulseaudio/Stream.java | 441 ++++++++++
src/native/Makefile.am | 4
src/native/org_classpath_icedtea_pulseaudio_Stream.c | 324 +++++++
unittests/org/classpath/icedtea/pulseaudio/PulseAudioClipTest.java | 34
diffs (truncated from 959 to 500 lines):
diff -r 9ed589465932 -r 5f856aeca15a build.xml
--- a/build.xml Wed Aug 13 13:17:13 2008 -0400
+++ b/build.xml Thu Aug 14 14:24:17 2008 -0400
@@ -39,6 +39,7 @@
<class name="org.classpath.icedtea.pulseaudio.Operation"/>
<class name="org.classpath.icedtea.pulseaudio.PulseAudioSourceDataLine"/>
<class name="org.classpath.icedtea.pulseaudio.PulseAudioClip"/>
+ <class name="org.classpath.icedtea.pulseaudio.Stream"/>
<class name="org.classpath.icedtea.pulseaudio.PulseAudioStreamVolumeControl"/>
</javah>
</target>
diff -r 9ed589465932 -r 5f856aeca15a src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Wed Aug 13 13:17:13 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java Thu Aug 14 14:24:17 2008 -0400
@@ -54,6 +54,8 @@ public class PulseAudioClip implements C
public class PulseAudioClip implements Clip {
private byte[] data = null;
+
+ // FIXME
private int bufferSize = 0;
// these are frame indices. so counted from 0
@@ -72,21 +74,20 @@ public class PulseAudioClip implements C
private List<LineListener> lineListeners = null;
private static final int DEFAULT_BUFFER_SIZE = 0;
-
- @SuppressWarnings("unused")
- private long streamPointer = 0;
-
- private native void native_open();
-
- private native void native_close();
-
- private native void native_start();
-
- private native void native_stop();
-
- private native long native_drain();
-
- private native long native_flush();
+ public static final String DEFAULT_CLIP_NAME = "Clip";
+
+ private Stream stream;
+
+ private Thread clipLoop = new Thread() {
+ @Override
+ public void run() {
+ while (true) {
+
+ }
+
+ }
+
+ };
static {
try {
@@ -117,20 +118,19 @@ public class PulseAudioClip implements C
@Override
public void close() {
// TODO Auto-generated method stub
- native_close();
+ stream.drain();
+ stream.disconnect();
isOpen = false;
}
@Override
public void drain() {
- // TODO Auto-generated method stub
- native_drain();
+ stream.drain();
}
@Override
public void flush() {
- // TODO Auto-generated method stub
- native_flush();
+ stream.flush();
}
@Override
@@ -234,9 +234,13 @@ public class PulseAudioClip implements C
@Override
public void open(AudioFormat format, byte[] data, int offset, int bufferSize)
throws LineUnavailableException {
- // TODO Auto-generated method stub
-
- native_open();
+
+
+ long contextPointer = EventLoop.getEventLoop().getContextPointer();
+ int channels = 2;
+ int sampleRate = 22050;
+ stream = new Stream(contextPointer, DEFAULT_CLIP_NAME,
+ Stream.Format.PA_SAMPLE_U8, sampleRate, channels);
isOpen = true;
}
@@ -294,12 +298,12 @@ public class PulseAudioClip implements C
@Override
public void start() {
- native_start();
+ stream.cork(false);
}
@Override
public void stop() {
- native_stop();
+ stream.cork(true);
}
}
diff -r 9ed589465932 -r 5f856aeca15a src/java/org/classpath/icedtea/pulseaudio/Stream.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/java/org/classpath/icedtea/pulseaudio/Stream.java Thu Aug 14 14:24:17 2008 -0400
@@ -0,0 +1,441 @@
+package org.classpath.icedtea.pulseaudio;
+
+import javax.sound.sampled.AudioFormat;
+
+/**
+ *
+ * This class encapsulates a pa_stream object and provides easier access to the
+ * native functions
+ *
+ */
+public class Stream {
+
+ public static enum State {
+ UNCONNECTED, CREATING, READY, FAILED, TERMINATED,
+ }
+
+ public static enum Format {
+ PA_SAMPLE_U8, PA_SAMPLE_ULAW, PA_SAMPLE_ALAW, PA_SAMPLE_S16LE, PA_SAMPLE_S16BE, PA_SAMPLE_FLOAT32LE, PA_SAMPLE_FLOAT32BE, PA_SAMPLE_S32LE, PA_SAMPLE_S32BE,
+ }
+
+ @SuppressWarnings("unused")
+ private long streamPointer;
+
+ private native void native_pa_stream_new(long contextPointer, String name,
+ String format, int sampleRate, int channels);
+
+ private native int native_pa_stream_get_state();
+
+ private native long native_pa_stream_get_context();
+
+ private native int native_pa_stream_get_index();
+
+ private native int native_pa_stream_get_device_index();
+
+ private native String native_pa_stream_get_device_name();
+
+ private native int native_pa_stream_is_suspended();
+
+ private native int native_pa_stream_connect_playback(String name,
+ long buffer_attrPointer, int flags, long volumePointer,
+ long sync_streamPointer);
+
+ private native int native_pa_stream_connect_record(String device,
+ long buffer_attrPointer, int flags);
+
+ private native int native_pa_stream_disconnect();
+
+ private native int native_pa_stream_write(byte[] data, int offset,
+ int length);
+
+ /*
+ * private native int native_pa_stream_peek (pa_stream *p, const void
+ * **data, size_t *nbytes) Read the next fragment from the buffer (for
+ * recording). int pa_stream_drop (pa_stream *p) Remove the current fragment
+ * on record streams.
+ *
+ */
+
+ private native int native_pa_stream_writable_size();
+
+ private native int native_pa_stream_readable_size();
+
+ private native long native_pa_stream_drain();
+
+ /*
+ * Drain a playback stream. pa_operation pa_stream_update_timing_info
+ * (pa_stream *p, pa_stream_success_cb_t cb, void *userdata) Request a
+ * timing info structure update for a stream. void
+ * pa_stream_set_state_callback (pa_stream *s, pa_stream_notify_cb_t cb,
+ * void *userdata) Set the callback function that is called whenever the
+ * state of the stream changes. void pa_stream_set_write_callback (pa_stream
+ * *p, pa_stream_request_cb_t cb, void *userdata) Set the callback function
+ * that is called when new data may be written to the stream. void
+ * pa_stream_set_read_callback (pa_stream *p, pa_stream_request_cb_t cb,
+ * void *userdata) Set the callback function that is called when new data is
+ * available from the stream. void pa_stream_set_overflow_callback
+ * (pa_stream *p, pa_stream_notify_cb_t cb, void *userdata) Set the callback
+ * function that is called when a buffer overflow happens. void
+ * pa_stream_set_underflow_callback (pa_stream *p, pa_stream_notify_cb_t cb,
+ * void *userdata) Set the callback function that is called when a buffer
+ * underflow happens. void pa_stream_set_started_callback (pa_stream *p,
+ * pa_stream_notify_cb_t cb, void *userdata) Set the callback function that
+ * is called when a the server starts playback after an underrun or on
+ * initial startup. void pa_stream_set_latency_update_callback (pa_stream
+ * *p, pa_stream_notify_cb_t cb, void *userdata) Set the callback function
+ * that is called whenever a latency information update happens. void
+ * pa_stream_set_moved_callback (pa_stream *p, pa_stream_notify_cb_t cb,
+ * void *userdata) Set the callback function that is called whenever the
+ * stream is moved to a different sink/source. void
+ * pa_stream_set_suspended_callback (pa_stream *p, pa_stream_notify_cb_t cb,
+ * void *userdata) Set the callback function that is called whenever the
+ * sink/source this stream is connected to is suspended or resumed.
+ *
+ */
+
+ private native long native_pa_stream_cork(int b);
+
+ private native long native_pa_stream_flush();
+
+ /*
+ * pa_operation pa_stream_prebuf (pa_stream *s, pa_stream_success_cb_t cb,
+ * void *userdata) Reenable prebuffering as specified in the pa_buffer_attr
+ * structure.
+ */
+
+ private native long native_pa_stream_trigger();
+
+ /* returns an operationPointer */
+ private native long native_pa_stream_set_name(String name);
+
+ /*
+ * Return the current playback/recording time private native int
+ * native_pa_stream_get_time (pa_usec_t r_usec);
+ */
+
+ /*
+ * Return the total stream latency private native int
+ * native_pa_stream_get_latency ( pa_usec_t *r_usec, int *negative);
+ */
+
+ /*
+ * const pa_timing_info * pa_stream_get_timing_info (pa_stream *s) Return
+ * the latest raw timing data structure. const pa_sample_spec *
+ * pa_stream_get_sample_spec (pa_stream *s) Return a pointer to the stream's
+ * sample specification. const pa_channel_map * pa_stream_get_channel_map
+ * (pa_stream *s) Return a pointer to the stream's channel map. const
+ * pa_buffer_attr * pa_stream_get_buffer_attr (pa_stream *s) Return the
+ * per-stream server-side buffer metrics of the stream. pa_operation *
+ * pa_stream_set_buffer_attr (pa_stream *s, const pa_buffer_attr *attr,
+ * pa_stream_success_cb_t cb, void *userdata) Change the buffer metrics of
+ * the stream during playback. pa_operation * pa_stream_update_sample_rate
+ * (pa_stream *s, uint32_t rate, pa_stream_success_cb_t cb, void *userdata)
+ * Change the stream sampling rate during playback. pa_operation *
+ * pa_stream_proplist_update (pa_stream *s, pa_update_mode_t mode,
+ * pa_proplist *p, pa_stream_success_cb_t cb, void *userdata) Update the
+ * property list of the sink input/source output of this stream, adding new
+ * entries. pa_operation * pa_stream_proplist_remove (pa_stream *s, const
+ * char *const keys[], pa_stream_success_cb_t cb, void *userdata) Update the
+ * property list of the sink input/source output of this stream, remove
+ * entries. int pa_stream_set_monitor_stream (pa_stream *s, uint32_t
+ * sink_input_idx) For record streams connected to a monitor source: monitor
+ * only a very specific sink input of the sink. uint32_t
+ * pa_stream_get_monitor_stream (pa_stream *s) Return what has been set with
+ * pa_stream_set_monitor_stream() ebfore.
+ */
+
+ public Stream(long contextPointer, String name, Format format,
+ int sampleRate, int channels) {
+ System.out.println("format: "+ format.toString());
+ native_pa_stream_new(contextPointer, name, format.toString(),
+ sampleRate, channels);
+ }
+
+ public Stream.State getState() {
+ int state = native_pa_stream_get_state();
+ switch (state) {
+ case 0:
+ return State.UNCONNECTED;
+ case 1:
+ return State.CREATING;
+ case 2:
+ return State.READY;
+ case 3:
+ return State.FAILED;
+ case 4:
+ return State.TERMINATED;
+ default:
+ throw new IllegalStateException("invalid stream state");
+ }
+
+ }
+
+ public long getContextPointer() {
+ return native_pa_stream_get_context();
+ }
+
+ public int getSinkInputIndex() {
+ return native_pa_stream_get_index();
+ }
+
+ /**
+ *
+ * @return the index of the sink or source this stream is connected to in
+ * the server
+ */
+ public int getDeviceIndex() {
+ return native_pa_stream_get_device_index();
+ }
+
+ /**
+ *
+ * @return the name of the sink or source this stream is connected to in the
+ * server
+ */
+ public String getDeviceName() {
+ return native_pa_stream_get_device_name();
+ }
+
+ /**
+ * if the sink or source this stream is connected to has been suspended.
+ *
+ * @return
+ */
+ public boolean isSuspended() {
+ return (native_pa_stream_is_suspended() != 0);
+ }
+
+ /**
+ * Connect the stream to a sink
+ *
+ * @param deviceName
+ */
+ public void connectForPlayback(String deviceName) {
+
+ int returnValue = native_pa_stream_connect_playback(deviceName, 0, 0,
+ 0, 0);
+ }
+
+ /**
+ * Connect the stream to a source.
+ *
+ */
+ void connectForRecording(String deviceName) {
+ int returnValue = native_pa_stream_connect_record(deviceName, 0, 0);
+ }
+
+ /**
+ * Disconnect a stream from a source/sink.
+ */
+ void disconnect() {
+ int returnValue = native_pa_stream_disconnect();
+ }
+
+ /**
+ * Write data to the server
+ *
+ * @param data
+ * @param length
+ * @return
+ */
+ int write(byte[] data, int offset, int length) {
+ return native_pa_stream_write(data, offset, length);
+ }
+
+ /**
+ * Read the next fragment from the buffer (for recording).
+ *
+ *
+ * @param data
+ */
+ public void peek(byte[] data) {
+
+ }
+
+ /**
+ *
+ * Remove the current fragment on record streams.
+ */
+ void drop() {
+
+ }
+
+ /**
+ * Return the number of bytes that may be written using write().
+ *
+ * @return
+ */
+ public int getWritableSize() {
+ return native_pa_stream_writable_size();
+ }
+
+ /**
+ * Return the number of bytes that may be read using peek().
+ *
+ * @return
+ */
+ public int getReableSize() {
+ return native_pa_stream_readable_size();
+ }
+
+ /**
+ * Drain a playback stream
+ *
+ * @return
+ */
+ Operation drain() {
+ Operation drainOperation = new Operation(native_pa_stream_drain());
+ return drainOperation;
+ }
+
+ /**
+ * this function is called whenever the state changes
+ */
+ void stateCallback() {
+
+ }
+
+ void writeCallback() {
+
+ }
+
+ void readCallback() {
+
+ }
+
+ void overflowCallback() {
+
+ }
+
+ void underflowCallback() {
+
+ }
+
+ /**
+ * callback function that is called when a the server starts playback after
+ * an underrun or on initial startup
+ */
+ void playbackStartedCallback() {
+
+ }
+
+ /**
+ * called whenever a latency information update happens
+ */
+ void latencyUpdateCallback() {
+
+ }
+
+ /**
+ * whenever the stream is moved to a different sink/source
+ */
+ void movedCallback() {
+
+ }
+
+ /**
+ * whenever the sink/source this stream is connected to is suspended or
+ * resumed
+ */
+ void suspendedCallback() {
+
+ }
+
+ /**
+ * Pause (or resume) playback of this stream temporarily.
+ *
+ * @param cork
+ * @return
+ */
+ Operation cork(boolean cork) {
+ int yes = cork ? 1 : 0;
+ Operation corkOperation = new Operation(native_pa_stream_cork(yes));
+ return corkOperation;
+ }
+
+ /**
+ * Flush the playback buffer of this stream.
+ *
+ * @return
+ */
+ Operation flush() {
+ Operation flushOperation = new Operation(native_pa_stream_flush());
+ return flushOperation;
+ }
+
+ /*
+ * Operation pa_stream_prebuf (pa_stream *s, pa_stream_success_cb_t cb, void
+ * *userdata)
+ *
+ * Reenable prebuffering as specified in the pa_buffer_attr structure.
+ */
+
+ /**
+ * Request immediate start of playback on this stream.
+ */
+ Operation triggerStart() {
+ Operation triggerOperation = new Operation(native_pa_stream_trigger());
+ return triggerOperation;
+ }
+
More information about the distro-pkg-dev
mailing list