org.gstreamer.MiniObject Maven / Gradle / Ivy
Show all versions of gstreamer-java Show documentation
/*
* Copyright (c) 2009 Levente Farkas
* Copyright (c) 2007 Wayne Meissner
*
* This file is part of gstreamer-java.
*
* This code is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* version 3 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with this work. If not, see .
*/
package org.gstreamer;
import org.gstreamer.lowlevel.GstNative;
import org.gstreamer.lowlevel.RefCountedObject;
import org.gstreamer.lowlevel.GstMiniObjectAPI;
import com.sun.jna.Pointer;
/**
* Lightweight base class for the GStreamer object hierarchy
*
* MiniObject is a baseclass like {@link GObject}, but has been stripped down of
* features to be fast and small.
* It offers sub-classing and ref-counting in the same way as GObject does.
* It has no properties and no signal-support though.
*/
public class MiniObject extends RefCountedObject {
private static final GstMiniObjectAPI gst = GstNative.load(GstMiniObjectAPI.class);
/**
* Creates a new instance of MiniObject
*/
public MiniObject(Initializer init) {
super(init);
}
/**
* Checks if a mini-object is writable. A mini-object is writable
* if the reference count is one and the {@link MiniObjectFlags#READONLY}
* flag is not set. Modification of a mini-object should only be
* done after verifying that it is writable.
*
* @return true if the object is writable.
*/
public boolean isWritable() {
return gst.gst_mini_object_is_writable(this);
}
/**
* Makes a writable instance of this MiniObject.
* The result is cast to subclass.
*
* @param subclass the subclass to cast the result to.
* @return a writable version of this MiniObject.
*/
protected T makeWritable(Class subclass) {
MiniObject result = gst.gst_mini_object_make_writable(this);
if (result == null) {
throw new NullPointerException("Could not make " + subclass.getSimpleName()
+ " writable");
}
return subclass.cast(result);
}
/*
* FIXME: this one returns a new MiniObject, so we need to replace the Pointer
* with the new one. Messy.
public void makeWritable() {
gst.gst_mini_object_make_writable(this);
}
*/
protected void ref() {
gst.gst_mini_object_ref(this);
}
protected void unref() {
gst.gst_mini_object_unref(this);
}
protected void disposeNativeHandle(Pointer ptr) {
gst.gst_mini_object_unref(ptr);
}
}