Skip to content

Commit 55ed120

Browse files
Rework native handling - merge pull request #144 from neilcsmith-net/native-handling
Rework native handling. Move NativeObject and related functionality into GLib package as API. Rework memory and reference handling around NativeObject.Handle to remove use of finalization. Add GPointer and related in lowlevel, part of longer term move to typed pointers over NativeObjects in lowlevel mapping. Type registration API for external use.
2 parents d097354 + 68a2d37 commit 55ed120

File tree

99 files changed

+2133
-1142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+2133
-1142
lines changed

src/org/freedesktop/gstreamer/Bin.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
import com.sun.jna.Pointer;
2828
import java.util.List;
29+
import org.freedesktop.gstreamer.glib.Natives;
2930
import org.freedesktop.gstreamer.lowlevel.GstAPI.GstCallback;
30-
import org.freedesktop.gstreamer.lowlevel.GstTypes;
3131

3232
/**
3333
* Base class and element that can contain other elements.
@@ -86,7 +86,7 @@ protected Bin(Initializer init) {
8686
* Creates a new Bin with a unique name.
8787
*/
8888
public Bin() {
89-
this(initializer(GSTBIN_API.ptr_gst_bin_new(null), false));
89+
this(Natives.initializer(GSTBIN_API.ptr_gst_bin_new(null), false, true));
9090
}
9191

9292
/**
@@ -95,7 +95,7 @@ public Bin() {
9595
* @param name The Name to assign to the new Bin
9696
*/
9797
public Bin(String name) {
98-
this(initializer(GSTBIN_API.ptr_gst_bin_new(name), false));
98+
this(Natives.initializer(GSTBIN_API.ptr_gst_bin_new(name), false, true));
9999
}
100100

101101
/**
@@ -227,16 +227,16 @@ public Element getElementByNameRecurseUp(String name) {
227227
return GSTBIN_API.gst_bin_get_by_name_recurse_up(this, name);
228228
}
229229

230-
/**
231-
* Looks for an element inside the bin that implements the given interface.
232-
* If such an element is found, it returns the element.
233-
*
234-
* @param iface The class of the {@link Element} to search for.
235-
* @return The {@link Element} that implements the interface.
236-
*/
237-
public <T extends Element> T getElementByInterface(Class<T> iface) {
238-
return iface.cast(GSTBIN_API.gst_bin_get_by_interface(this, GstTypes.typeFor(iface)));
239-
}
230+
// /**
231+
// * Looks for an element inside the bin that implements the given interface.
232+
// * If such an element is found, it returns the element.
233+
// *
234+
// * @param iface The class of the {@link Element} to search for.
235+
// * @return The {@link Element} that implements the interface.
236+
// */
237+
// public <T extends Element> T getElementByInterface(Class<T> iface) {
238+
// return iface.cast(GSTBIN_API.gst_bin_get_by_interface(this, GstTypes.typeFor(iface)));
239+
// }
240240

241241
/**
242242
* Calls {@link #debugToDotFile(int, String, boolean)} without timestamping

src/org/freedesktop/gstreamer/Buffer.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import com.sun.jna.Pointer;
3333
import java.util.EnumSet;
3434
import org.freedesktop.gstreamer.glib.NativeFlags;
35+
import org.freedesktop.gstreamer.glib.Natives;
3536

3637
/**
3738
* Buffers are the basic unit of data transfer in GStreamer. They contain the
@@ -53,7 +54,7 @@ public class Buffer extends MiniObject {
5354
* Creates a newly allocated buffer without any data.
5455
*/
5556
public Buffer() {
56-
this(initializer(GSTBUFFER_API.ptr_gst_buffer_new()));
57+
this(Natives.initializer(GSTBUFFER_API.ptr_gst_buffer_new()));
5758
}
5859

5960
/**
@@ -66,13 +67,13 @@ public Buffer() {
6667
* @param size
6768
*/
6869
public Buffer(int size) {
69-
this(initializer(allocBuffer(size)));
70+
this(Natives.initializer(allocBuffer(size)));
7071
}
7172

7273
Buffer(Initializer init) {
7374
super(init);
7475
mapInfo = new MapInfoStruct();
75-
struct = new BufferStruct(handle());
76+
struct = new BufferStruct(getRawPointer());
7677
}
7778

7879
private static Pointer allocBuffer(int size) {

src/org/freedesktop/gstreamer/BufferPool.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import org.freedesktop.gstreamer.lowlevel.GstBufferPoolAPI;
2222

2323
import com.sun.jna.Pointer;
24+
import org.freedesktop.gstreamer.glib.Natives;
2425

2526
/**
2627
* A BufferPool is an object that can be used to pre-allocate and recycle
@@ -38,7 +39,7 @@ public class BufferPool extends GstObject {
3839
* Creates a new instance of BufferPool
3940
*/
4041
public BufferPool() {
41-
this(initializer(GstBufferPoolAPI.GSTBUFFERPOOL_API.ptr_gst_buffer_pool_new()));
42+
this(Natives.initializer(GstBufferPoolAPI.GSTBUFFERPOOL_API.ptr_gst_buffer_pool_new()));
4243
}
4344

4445
/**
@@ -71,7 +72,7 @@ public Caps getCaps() {
7172
Structure config = GstBufferPoolAPI.GSTBUFFERPOOL_API.gst_buffer_pool_get_config(this);
7273
Pointer[] ptr = new Pointer[1];
7374
GstBufferPoolAPI.GSTBUFFERPOOL_API.gst_buffer_pool_config_get_params(config, ptr, null, null, null);
74-
return new Caps(new Initializer(ptr[0], false, true));
75+
return new Caps(Natives.initializer(ptr[0], false, true));
7576
}
7677

7778
}

src/org/freedesktop/gstreamer/Bus.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import java.util.Map;
2828
import java.util.concurrent.ConcurrentHashMap;
2929
import java.util.concurrent.CopyOnWriteArrayList;
30-
import java.util.logging.Level;
3130
import java.util.logging.Logger;
3231

3332
import com.sun.jna.Callback;
@@ -36,6 +35,7 @@
3635
import com.sun.jna.Pointer;
3736
import com.sun.jna.ptr.PointerByReference;
3837
import java.util.Locale;
38+
import org.freedesktop.gstreamer.glib.Natives;
3939

4040
import org.freedesktop.gstreamer.lowlevel.GstAPI.GErrorStruct;
4141
import org.freedesktop.gstreamer.lowlevel.GstBusAPI;
@@ -44,7 +44,6 @@
4444
import static org.freedesktop.gstreamer.lowlevel.GlibAPI.GLIB_API;
4545
import static org.freedesktop.gstreamer.lowlevel.GstBusAPI.GSTBUS_API;
4646
import static org.freedesktop.gstreamer.lowlevel.GstMessageAPI.GSTMESSAGE_API;
47-
import static org.freedesktop.gstreamer.lowlevel.GstMiniObjectAPI.GSTMINIOBJECT_API;
4847

4948
/**
5049
* The {@link Bus} is an object responsible for delivering {@link Message}s in a
@@ -84,7 +83,6 @@ public class Bus extends GstObject {
8483
public static final String GTYPE_NAME = "GstBus";
8584

8685
private static final Logger LOG = Logger.getLogger(Bus.class.getName());
87-
private static final Level LOG_DEBUG = Level.FINE;
8886

8987
private final Object lock = new Object();
9088
private Map<Class<?>, Map<Object, MessageProxy>> signalListeners;
@@ -505,7 +503,7 @@ public void connect(final TAG listener) {
505503
public boolean callback(Bus bus, Message msg, Pointer user_data) {
506504
PointerByReference list = new PointerByReference();
507505
GSTMESSAGE_API.gst_message_parse_tag(msg, list);
508-
TagList tl = new TagList(TagList.initializer(list.getValue()));
506+
TagList tl = new TagList(Natives.initializer(list.getValue()));
509507
listener.tagsFound(msg.getSource(), tl);
510508
return true;
511509
}
@@ -741,7 +739,8 @@ public void run() {
741739
// Unref the message, since we are dropping it.
742740
// (the normal GC will drop other refs to it)
743741
//
744-
GSTMINIOBJECT_API.gst_mini_object_unref(msg);
742+
// GSTMINIOBJECT_API.gst_mini_object_unref(msg);
743+
Natives.unref(msg);
745744
return BusSyncReply.DROP;
746745
}
747746
};

src/org/freedesktop/gstreamer/Caps.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
*/
2121
package org.freedesktop.gstreamer;
2222

23-
import com.sun.jna.Pointer;
2423

24+
import org.freedesktop.gstreamer.glib.Natives;
2525
import static org.freedesktop.gstreamer.lowlevel.GstCapsAPI.GSTCAPS_API;
2626

2727
/**
@@ -72,7 +72,7 @@ public class Caps extends MiniObject {
7272
* @see #emptyCaps
7373
*/
7474
public Caps() {
75-
this(initializer(GSTCAPS_API.ptr_gst_caps_new_empty()));
75+
this(Natives.initializer(GSTCAPS_API.ptr_gst_caps_new_empty()));
7676
}
7777

7878
/**
@@ -82,7 +82,7 @@ public Caps() {
8282
* @see #fromString
8383
*/
8484
public Caps(String caps) {
85-
this(initializer(GSTCAPS_API.ptr_gst_caps_from_string(caps)));
85+
this(Natives.initializer(GSTCAPS_API.ptr_gst_caps_from_string(caps)));
8686
}
8787

8888
/**
@@ -92,7 +92,7 @@ public Caps(String caps) {
9292
* @see #copy
9393
*/
9494
public Caps(Caps caps) {
95-
this(initializer(GSTCAPS_API.ptr_gst_caps_copy(caps)));
95+
this(Natives.initializer(GSTCAPS_API.ptr_gst_caps_copy(caps)));
9696
}
9797

9898
Caps(Initializer init) {
@@ -282,7 +282,8 @@ public Caps makeWritable() {
282282
* @see Structure
283283
*/
284284
public Caps normalize() {
285-
this.ref(); // gst_caps_normalize copies "this" and drops one reference
285+
// this.ref(); // gst_caps_normalize copies "this" and drops one reference
286+
Natives.ref(this);
286287
return GSTCAPS_API.gst_caps_normalize(this);
287288
}
288289

@@ -309,7 +310,8 @@ public void setInteger(String field, Integer value) {
309310
* @return The new {@link Caps}
310311
*/
311312
public Caps simplify() {
312-
this.ref(); // gst_caps_simplify copies "this" and drops one reference
313+
// this.ref(); // gst_caps_simplify copies "this" and drops one reference
314+
Natives.ref(this);
313315
return GSTCAPS_API.gst_caps_simplify(this);
314316
}
315317

@@ -348,7 +350,8 @@ public String toString() {
348350
* @return truncated copy of the Caps
349351
*/
350352
public Caps truncate() {
351-
this.ref();
353+
// this.ref();
354+
Natives.ref(this);
352355
return GSTCAPS_API.gst_caps_truncate(this);
353356
}
354357

@@ -359,7 +362,7 @@ public Caps truncate() {
359362
* @return The new Caps.
360363
*/
361364
public static Caps anyCaps() {
362-
return new Caps(initializer(GSTCAPS_API.ptr_gst_caps_new_any()));
365+
return new Caps(Natives.initializer(GSTCAPS_API.ptr_gst_caps_new_any()));
363366
}
364367

365368
/**
@@ -369,7 +372,7 @@ public static Caps anyCaps() {
369372
* @return The new Caps.
370373
*/
371374
public static Caps emptyCaps() {
372-
return new Caps(initializer(GSTCAPS_API.ptr_gst_caps_new_empty()));
375+
return new Caps(Natives.initializer(GSTCAPS_API.ptr_gst_caps_new_empty()));
373376
}
374377

375378
/**
@@ -383,7 +386,7 @@ public static Caps emptyCaps() {
383386
* @return The new Caps.
384387
*/
385388
public static Caps fromString(String caps) {
386-
return new Caps(initializer(GSTCAPS_API.ptr_gst_caps_from_string(caps)));
389+
return new Caps(Natives.initializer(GSTCAPS_API.ptr_gst_caps_from_string(caps)));
387390
}
388391

389392
/**
@@ -403,7 +406,4 @@ public static Caps merge(Caps caps1, Caps caps2) {
403406
return GSTCAPS_API.gst_caps_merge(caps1, caps2);
404407
}
405408

406-
protected static Initializer initializer(Pointer ptr) {
407-
return new Initializer(ptr, false, true);
408-
}
409409
}

src/org/freedesktop/gstreamer/ClockID.java

+36-28
Original file line numberDiff line numberDiff line change
@@ -16,61 +16,45 @@
1616
* You should have received a copy of the GNU Lesser General Public License
1717
* version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
1818
*/
19-
2019
package org.freedesktop.gstreamer;
2120

22-
import com.sun.jna.Pointer;
23-
24-
import org.freedesktop.gstreamer.lowlevel.RefCountedObject;
21+
import org.freedesktop.gstreamer.glib.RefCountedObject;
22+
import org.freedesktop.gstreamer.lowlevel.GPointer;
2523

2624
import static org.freedesktop.gstreamer.lowlevel.GstClockAPI.GSTCLOCK_API;
2725

2826
/**
2927
* A datatype to hold the handle to an outstanding sync or async clock callback.
3028
*/
3129
public class ClockID extends RefCountedObject implements Comparable<ClockID> {
32-
public ClockID(Initializer init) {
33-
super(init);
34-
}
35-
36-
@Override
37-
protected void disposeNativeHandle(Pointer ptr) {
38-
GSTCLOCK_API.gst_clock_id_unref(ptr);
39-
}
4030

41-
@Override
42-
protected void ref() {
43-
GSTCLOCK_API.gst_clock_id_ref(this);
31+
ClockID(Initializer init) {
32+
super(new Handle(init.ptr, init.ownsHandle), init.needRef);
4433
}
4534

46-
@Override
47-
protected void unref() {
48-
GSTCLOCK_API.gst_clock_id_unref(this);
49-
}
50-
5135
/**
52-
* Cancel an outstanding request. This can either
53-
* be an outstanding async notification or a pending sync notification.
54-
* After this call, @id cannot be used anymore to receive sync or
55-
* async notifications, you need to create a new #GstClockID.
36+
* Cancel an outstanding request. This can either be an outstanding async
37+
* notification or a pending sync notification. After this call, @id cannot
38+
* be used anymore to receive sync or async notifications, you need to
39+
* create a new #GstClockID.
5640
*/
5741
public void unschedule() {
5842
GSTCLOCK_API.gst_clock_id_unschedule(this);
5943
}
60-
44+
6145
/**
6246
* Gets the time of the clock ID
6347
* <p>
6448
* Thread safe.
65-
*
49+
*
6650
* @return The time of this clock id.
6751
*/
6852
public long getTime() {
6953
return GSTCLOCK_API.gst_clock_id_get_time(this);
7054
}
71-
55+
7256
/**
73-
* Compares this ClockID to another.
57+
* Compares this ClockID to another.
7458
*
7559
* @param other The other ClockID to compare to
7660
* @return negative value if a < b; zero if a = b; positive value if a > b
@@ -79,4 +63,28 @@ public long getTime() {
7963
public int compareTo(ClockID other) {
8064
return GSTCLOCK_API.gst_clock_id_compare_func(this, other);
8165
}
66+
67+
private static final class Handle extends RefCountedObject.Handle {
68+
69+
public Handle(GPointer ptr, boolean ownsHandle) {
70+
super(ptr, ownsHandle);
71+
}
72+
73+
@Override
74+
protected void disposeNativeHandle(GPointer ptr) {
75+
GSTCLOCK_API.gst_clock_id_unref(ptr);
76+
}
77+
78+
@Override
79+
protected void ref() {
80+
GSTCLOCK_API.gst_clock_id_ref(getPointer());
81+
}
82+
83+
@Override
84+
protected void unref() {
85+
GSTCLOCK_API.gst_clock_id_unref(getPointer());
86+
}
87+
88+
}
89+
8290
}

0 commit comments

Comments
 (0)