changeset in /hg/pulseaudio: 2008-08-11 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Mon Aug 11 14:38:38 PDT 2008
changeset 686f9e8f1803 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=686f9e8f1803
description:
2008-08-11 Omair Majid <omajid at redhat.com>
* src/java/org/classpath/icedtea/pulseaudio/Operation.java: synchronized the native calls; start on a function to wait for operation to complete
diffstat:
1 file changed, 37 insertions(+), 6 deletions(-)
src/java/org/classpath/icedtea/pulseaudio/Operation.java | 43 ++++++++++++--
diffs (82 lines):
diff -r ffc11c4c5c53 -r 686f9e8f1803 src/java/org/classpath/icedtea/pulseaudio/Operation.java
--- a/src/java/org/classpath/icedtea/pulseaudio/Operation.java Mon Aug 11 17:30:11 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/Operation.java Mon Aug 11 17:38:17 2008 -0400
@@ -1,4 +1,6 @@ package org.classpath.icedtea.pulseaudio
package org.classpath.icedtea.pulseaudio;
+
+import java.io.IOException;
/*
* Encapsulates a pa_operation object
@@ -12,9 +14,22 @@ public class Operation {
public class Operation {
long operationPointer;
+ EventLoop eventLoop;
public enum State {
Running, Done, Cancelled,
+ }
+
+ static {
+ try {
+ String library = new java.io.File(".").getCanonicalPath()
+ + java.io.File.separatorChar
+ + System.mapLibraryName("pulse-java");
+ System.out.println(library);
+ System.load(library);
+ } catch (IOException e) {
+ assert ("Loading failed".endsWith("library"));
+ }
}
private native void native_ref();
@@ -25,21 +40,29 @@ public class Operation {
public Operation(long operationPointer) {
this.operationPointer = operationPointer;
+ this.eventLoop = EventLoop.getEventLoop();
}
public void addReference() {
- assert(operationPointer != 0);
- native_ref();
+ assert (operationPointer != 0);
+ synchronized (eventLoop.threadLock) {
+ native_ref();
+ }
}
public void releaseReference() {
- assert(operationPointer!= 0);
- native_unref();
+ assert (operationPointer != 0);
+ synchronized (eventLoop.threadLock) {
+ native_unref();
+ }
}
public State getState() {
- assert(operationPointer!= 0);
- int state = native_get_state();
+ assert (operationPointer != 0);
+ int state;
+ synchronized (eventLoop.threadLock) {
+ state = native_get_state();
+ }
switch (state) {
case 0:
return State.Running;
@@ -53,4 +76,12 @@ public class Operation {
}
+ public void waitForCompletion() {
+ throw new RuntimeException("not implemented");
+
+ synchronized (eventLoop.threadLock) {
+ eventLoop.threadLock.wait();
+ }
+
+ }
}
More information about the distro-pkg-dev
mailing list