1632 lines
40 KiB
C
1632 lines
40 KiB
C
/* abstract base class for all vips objects
|
|
*
|
|
* Edited from nip's base class, 15/10/08
|
|
*/
|
|
|
|
/*
|
|
|
|
Copyright (C) 1991-2003 The National Gallery
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
|
|
*/
|
|
|
|
/*
|
|
#define DEBUG
|
|
#define VIPS_DEBUG
|
|
#define DEBUG_REF
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif /*HAVE_CONFIG_H*/
|
|
#include <vips/intl.h>
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <vips/vips.h>
|
|
#include <vips/internal.h>
|
|
#include <vips/debug.h>
|
|
|
|
#ifdef WITH_DMALLOC
|
|
#include <dmalloc.h>
|
|
#endif /*WITH_DMALLOC*/
|
|
|
|
/* Properties.
|
|
*/
|
|
enum {
|
|
PROP_NICKNAME = 1,/* Class properties as object props */
|
|
PROP_DESCRIPTION,
|
|
PROP_LAST
|
|
};
|
|
|
|
/* Our signals.
|
|
*/
|
|
enum {
|
|
SIG_PRECLOSE,
|
|
SIG_CLOSE,
|
|
SIG_POSTCLOSE,
|
|
SIG_LAST
|
|
};
|
|
|
|
/* Table of all objects, handy for debugging.
|
|
*/
|
|
static GHashTable *vips__object_all = NULL;
|
|
static GMutex *vips__object_all_lock = NULL;
|
|
|
|
static guint vips_object_signals[SIG_LAST] = { 0 };
|
|
|
|
G_DEFINE_ABSTRACT_TYPE( VipsObject, vips_object, G_TYPE_INITIALLY_UNOWNED );
|
|
|
|
void
|
|
vips_object_preclose( VipsObject *object )
|
|
{
|
|
if( !object->preclose ) {
|
|
object->preclose = TRUE;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_preclose: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_signal_emit( object, vips_object_signals[SIG_PRECLOSE], 0 );
|
|
}
|
|
}
|
|
|
|
static void
|
|
vips_object_close( VipsObject *object )
|
|
{
|
|
if( !object->close ) {
|
|
object->close = TRUE;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_close: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_signal_emit( object, vips_object_signals[SIG_CLOSE], 0 );
|
|
}
|
|
}
|
|
|
|
static void
|
|
vips_object_postclose( VipsObject *object )
|
|
{
|
|
if( !object->postclose ) {
|
|
object->postclose = TRUE;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_postclose: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_signal_emit( object, vips_object_signals[SIG_POSTCLOSE], 0 );
|
|
}
|
|
}
|
|
|
|
int
|
|
vips_object_build( VipsObject *object )
|
|
{
|
|
VipsObjectClass *object_class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_build: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
return( object_class->build( object ) );
|
|
}
|
|
|
|
void
|
|
vips_object_print_class( VipsObjectClass *class )
|
|
{
|
|
char str[1000];
|
|
VipsBuf buf = VIPS_BUF_STATIC( str );
|
|
|
|
class->print_class( class, &buf );
|
|
printf( "%s\n", vips_buf_all( &buf ) );
|
|
}
|
|
|
|
void
|
|
vips_object_print( VipsObject *object )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
char str[1000];
|
|
VipsBuf buf = VIPS_BUF_STATIC( str );
|
|
|
|
vips_object_print_class( class );
|
|
class->print( object, &buf );
|
|
printf( "%s\n", vips_buf_all( &buf ) );
|
|
}
|
|
|
|
void
|
|
vips_object_print_name( VipsObject *object )
|
|
{
|
|
printf( "%s (%p)", G_OBJECT_TYPE_NAME( object ), object );
|
|
}
|
|
|
|
gboolean
|
|
vips_object_sanity( VipsObject *object )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
char str[1000];
|
|
VipsBuf buf = VIPS_BUF_STATIC( str );
|
|
|
|
class->sanity( object, &buf );
|
|
if( !vips_buf_is_empty( &buf ) ) {
|
|
printf( "sanity failure: " );
|
|
vips_object_print_name( object );
|
|
printf( " %s\n", vips_buf_all( &buf ) );
|
|
}
|
|
|
|
return( TRUE );
|
|
}
|
|
|
|
/* On a rewind, we dispose the old contents of the object and
|
|
* reconstruct. This is used in things like im_pincheck() where a "w"
|
|
* image has to be rewound and become a "p" image.
|
|
*
|
|
* Override in subclasses if you want to preserve some fields, see image.c.
|
|
*/
|
|
void
|
|
vips_object_rewind( VipsObject *object )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
class->rewind( object );
|
|
}
|
|
|
|
/* Extra stuff we track for properties to do our argument handling.
|
|
*/
|
|
|
|
/* Free a VipsArgumentInstance ... VipsArgumentClass can just be g_free()d.
|
|
*/
|
|
static void
|
|
vips_argument_instance_free( VipsArgumentInstance *argument_instance )
|
|
{
|
|
if( argument_instance->close_id ) {
|
|
g_signal_handler_disconnect( argument_instance->object,
|
|
argument_instance->close_id );
|
|
argument_instance->close_id = 0;
|
|
}
|
|
g_free( argument_instance );
|
|
}
|
|
|
|
VipsArgument *
|
|
vips__argument_table_lookup( VipsArgumentTable *table, GParamSpec *pspec )
|
|
{
|
|
return( g_hash_table_lookup( table, pspec ) );
|
|
}
|
|
|
|
static void
|
|
vips_argument_table_replace( VipsArgumentTable *table, VipsArgument *argument )
|
|
{
|
|
g_hash_table_replace( table, argument->pspec, argument );
|
|
}
|
|
|
|
static void
|
|
vips_argument_table_destroy( VipsArgumentTable *table )
|
|
{
|
|
g_hash_table_destroy( table );
|
|
}
|
|
|
|
/* Loop over the vips_arguments to an object.
|
|
*/
|
|
void *
|
|
vips_argument_map( VipsObject *object,
|
|
VipsArgumentMapFn fn, void *a, void *b )
|
|
{
|
|
/* Make sure we can't go during the loop. This can happen if eg. we
|
|
* flush an arg that refs us.
|
|
*/
|
|
g_object_ref( object );
|
|
|
|
VIPS_ARGUMENT_FOR_ALL( object,
|
|
pspec, argument_class, argument_instance ) {
|
|
void *result;
|
|
|
|
g_assert( argument_instance );
|
|
|
|
if( (result = fn( object, pspec,
|
|
argument_class, argument_instance, a, b )) ) {
|
|
g_object_unref( object );
|
|
return( result );
|
|
}
|
|
} VIPS_ARGUMENT_FOR_ALL_END
|
|
|
|
g_object_unref( object );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/* Create a VipsArgumentInstance for each installed argument property. Ideally
|
|
* we'd do this during _init() but g_object_class_find_property() does not seem
|
|
* to work then :-( so we have to delay it until first access. See
|
|
* vips__argument_get_instance().
|
|
*/
|
|
static void
|
|
vips_argument_init( VipsObject *object )
|
|
{
|
|
if( !object->argument_table ) {
|
|
#ifdef DEBUG
|
|
printf( "vips_argument_init: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
object->argument_table = g_hash_table_new_full( g_direct_hash,
|
|
g_direct_equal, NULL,
|
|
(GDestroyNotify) vips_argument_instance_free );
|
|
|
|
/* Make a VipsArgumentInstance for each installed argument
|
|
* property. We can't use vips_argument_map() since that does
|
|
* some sanity checks that won't pass until all arg instance
|
|
* are built.
|
|
*/
|
|
VIPS_ARGUMENT_FOR_ALL( object,
|
|
pspec, argument_class, argument_instance ) {
|
|
#ifdef DEBUG
|
|
printf( "vips_argument_init: "
|
|
"adding instance argument for %s\n",
|
|
g_param_spec_get_name( pspec ) );
|
|
#endif /*DEBUG*/
|
|
|
|
/* argument_instance should be NULL since we've not
|
|
* set it yet.
|
|
*/
|
|
g_assert( argument_instance == NULL );
|
|
|
|
argument_instance = g_new( VipsArgumentInstance, 1 );
|
|
|
|
((VipsArgument *) argument_instance)->pspec = pspec;
|
|
argument_instance->object = object;
|
|
argument_instance->assigned = FALSE;
|
|
argument_instance->close_id = 0;
|
|
|
|
vips_argument_table_replace( object->argument_table,
|
|
(VipsArgument *) argument_instance );
|
|
} VIPS_ARGUMENT_FOR_ALL_END
|
|
}
|
|
}
|
|
|
|
/* Convenience ... given the VipsArgumentClass, get the VipsArgumentInstance.
|
|
*/
|
|
VipsArgumentInstance *
|
|
vips__argument_get_instance( VipsArgumentClass *argument_class,
|
|
VipsObject *object )
|
|
{
|
|
/* Make sure the instance args are built.
|
|
*/
|
|
vips_argument_init( object );
|
|
|
|
return( (VipsArgumentInstance *)
|
|
vips__argument_table_lookup( object->argument_table,
|
|
((VipsArgument *) argument_class)->pspec ) );
|
|
}
|
|
|
|
static void
|
|
vips_object_clear_object( VipsObject *object, GParamSpec *pspec )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
VipsArgumentClass *argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
VipsArgumentInstance *argument_instance =
|
|
vips__argument_get_instance( argument_class, object );
|
|
GObject **member = &G_STRUCT_MEMBER( GObject *, object,
|
|
argument_class->offset );
|
|
|
|
if( *member ) {
|
|
if( argument_class->flags & VIPS_ARGUMENT_INPUT ) {
|
|
#ifdef DEBUG_REF
|
|
printf( "vips_object_clear_object: vips object: " );
|
|
vips_object_print_name( object );
|
|
printf( " no longer refers to gobject %s (%p)\n",
|
|
G_OBJECT_TYPE_NAME( *member ), *member );
|
|
printf( " count down to %d\n",
|
|
G_OBJECT( *member )->ref_count - 1 );
|
|
#endif /*DEBUG_REF*/
|
|
|
|
/* We reffed the object.
|
|
*/
|
|
g_object_unref( *member );
|
|
}
|
|
else if( argument_class->flags & VIPS_ARGUMENT_OUTPUT ) {
|
|
#ifdef DEBUG_REF
|
|
printf( "vips_object_clear_object: gobject %s (%p)\n",
|
|
G_OBJECT_TYPE_NAME( *member ), *member );
|
|
printf( " no longer refers to vips object: " );
|
|
vips_object_print_name( object );
|
|
printf( " count down to %d\n",
|
|
G_OBJECT( object )->ref_count - 1 );
|
|
#endif /*DEBUG_REF*/
|
|
|
|
/* The object reffed us. Stop listening link to the
|
|
* object's "close" signal. We can come here from
|
|
* object being closed, in which case the handler
|
|
* will already have been disconnected for us.
|
|
*/
|
|
if( g_signal_handler_is_connected( object,
|
|
argument_instance->close_id ) )
|
|
g_signal_handler_disconnect( object,
|
|
argument_instance->close_id );
|
|
argument_instance->close_id = 0;
|
|
*member = NULL;
|
|
|
|
g_object_unref( object );
|
|
}
|
|
|
|
*member = NULL;
|
|
}
|
|
}
|
|
|
|
/* Free any args which are holding resources.
|
|
*/
|
|
static void *
|
|
vips_object_dispose_argument( VipsObject *object, GParamSpec *pspec,
|
|
VipsArgumentClass *argument_class,
|
|
VipsArgumentInstance *argument_instance,
|
|
void *a, void *b )
|
|
{
|
|
#ifdef DEBUG
|
|
printf( "vips_object_dispose_argument: " );
|
|
vips_object_print_name( object );
|
|
printf( ".%s\n", g_param_spec_get_name( pspec ) );
|
|
#endif /*DEBUG*/
|
|
|
|
g_assert( ((VipsArgument *) argument_class)->pspec == pspec );
|
|
g_assert( ((VipsArgument *) argument_instance)->pspec == pspec );
|
|
|
|
if( G_IS_PARAM_SPEC_STRING( pspec ) ) {
|
|
char **member = &G_STRUCT_MEMBER( char *, object,
|
|
argument_class->offset );
|
|
|
|
VIPS_FREE( *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_OBJECT( pspec ) )
|
|
vips_object_clear_object( object, pspec );
|
|
else if( G_IS_PARAM_SPEC_BOXED( pspec ) ) {
|
|
gpointer *member = &G_STRUCT_MEMBER( gpointer, object,
|
|
argument_class->offset );
|
|
|
|
if( *member ) {
|
|
g_boxed_free( G_PARAM_SPEC_VALUE_TYPE( pspec ),
|
|
*member );
|
|
*member = NULL;
|
|
}
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/* Free all args on this object which may be holding resources.
|
|
*/
|
|
void
|
|
vips_argument_free_all( VipsObject *object )
|
|
{
|
|
#ifdef DEBUG
|
|
printf( "vips_argument_free_all: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
vips_argument_map( object, vips_object_dispose_argument, NULL, NULL );
|
|
}
|
|
|
|
static void
|
|
vips_object_dispose( GObject *gobject )
|
|
{
|
|
VipsObject *object = VIPS_OBJECT( gobject );
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_dispose: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
/* Our subclasses should have already called this. Run it again, just
|
|
* in case.
|
|
*/
|
|
if( !object->preclose ) {
|
|
#ifdef VIPS_DEBUG
|
|
printf( "vips_object_dispose: no vips_object_preclose() " );
|
|
vips_object_print_name( VIPS_OBJECT( gobject ) );
|
|
printf( "\n" );
|
|
#endif /*VIPS_DEBUG*/
|
|
|
|
vips_object_preclose( object );
|
|
}
|
|
|
|
/* Clear all our arguments: they may be holding refs we should drop.
|
|
*/
|
|
vips_argument_free_all( object );
|
|
VIPS_FREEF( vips_argument_table_destroy, object->argument_table );
|
|
|
|
vips_object_close( object );
|
|
|
|
G_OBJECT_CLASS( vips_object_parent_class )->dispose( gobject );
|
|
|
|
vips_object_postclose( object );
|
|
}
|
|
|
|
static void
|
|
vips_object_finalize( GObject *gobject )
|
|
{
|
|
VipsObject *object = VIPS_OBJECT( gobject );
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_finalize: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
/* I'd like to have post-close in here, but you can't emit signals
|
|
* from finalize, sadly.
|
|
*/
|
|
|
|
g_mutex_lock( vips__object_all_lock );
|
|
g_hash_table_remove( vips__object_all, object );
|
|
g_mutex_unlock( vips__object_all_lock );
|
|
|
|
G_OBJECT_CLASS( vips_object_parent_class )->finalize( gobject );
|
|
}
|
|
|
|
static void
|
|
vips_object_arg_close( GObject *argument,
|
|
VipsArgumentInstance *argument_instance )
|
|
{
|
|
VipsObject *object = argument_instance->object;
|
|
GParamSpec *pspec = ((VipsArgument *) argument_instance)->pspec;
|
|
|
|
/* Argument had reffed us ... now it's being closed, so we unref.
|
|
*/
|
|
vips_object_clear_object( object, pspec );
|
|
}
|
|
|
|
static void
|
|
vips_object_set_object( VipsObject *object, GParamSpec *pspec,
|
|
GObject *argument )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
VipsArgumentClass *argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
VipsArgumentInstance *argument_instance =
|
|
vips__argument_get_instance( argument_class, object );
|
|
GObject **member = &G_STRUCT_MEMBER( GObject *, object,
|
|
argument_class->offset );
|
|
|
|
g_assert( argument_instance );
|
|
g_assert( !*member );
|
|
|
|
*member = argument;
|
|
|
|
if( *member ) {
|
|
if( argument_class->flags & VIPS_ARGUMENT_INPUT ) {
|
|
#ifdef DEBUG_REF
|
|
printf( "vips_object_set_object: vips object: " );
|
|
vips_object_print_name( object );
|
|
printf( " refers to gobject %s (%p)\n",
|
|
G_OBJECT_TYPE_NAME( *member ), *member );
|
|
printf( " count up to %d\n",
|
|
G_OBJECT( *member )->ref_count );
|
|
#endif /*DEBUG_REF*/
|
|
|
|
/* Ref the argument.
|
|
*/
|
|
g_object_ref_sink( *member );
|
|
}
|
|
else if( argument_class->flags & VIPS_ARGUMENT_OUTPUT ) {
|
|
#ifdef DEBUG_REF
|
|
printf( "vips_object_set_object: gobject %s (%p)\n",
|
|
G_OBJECT_TYPE_NAME( *member ), *member );
|
|
printf( " refers to vips object: " );
|
|
vips_object_print_name( object );
|
|
printf( " count up to %d\n",
|
|
G_OBJECT (object)->ref_count );
|
|
#endif /*DEBUG_REF*/
|
|
|
|
/* The argument reffs us.
|
|
*/
|
|
g_object_ref_sink( object );
|
|
argument_instance->close_id =
|
|
g_signal_connect( *member, "close",
|
|
G_CALLBACK( vips_object_arg_close ),
|
|
argument_instance );
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Also used by subclasses, so not static.
|
|
*/
|
|
void
|
|
vips_object_set_property( GObject *gobject,
|
|
guint property_id, const GValue *value, GParamSpec *pspec )
|
|
{
|
|
VipsObject *object = VIPS_OBJECT( gobject );
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( gobject );
|
|
VipsArgumentClass *argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
VipsArgumentInstance *argument_instance =
|
|
vips__argument_get_instance( argument_class, object );
|
|
|
|
g_assert( argument_instance );
|
|
|
|
if( !argument_class ) {
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID( gobject,
|
|
property_id, pspec );
|
|
return;
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
{
|
|
char *str_value;
|
|
|
|
str_value = g_strdup_value_contents( value );
|
|
printf( "vips_object_set_property: " );
|
|
vips_object_print_name( object );
|
|
printf( ".%s = %s\n", g_param_spec_get_name( pspec ), str_value );
|
|
g_free( str_value );
|
|
}
|
|
#endif /*DEBUG*/
|
|
|
|
g_assert( ((VipsArgument *) argument_class)->pspec == pspec );
|
|
g_assert( ((VipsArgument *) argument_instance)->pspec == pspec );
|
|
|
|
/* If this is a construct-only argument, we can only set before we've
|
|
* built.
|
|
*/
|
|
if( argument_class->flags & VIPS_ARGUMENT_CONSTRUCT &&
|
|
object->constructed ) {
|
|
g_warning( "%s: %s can't assign '%s' after construct",
|
|
G_STRLOC,
|
|
G_OBJECT_TYPE_NAME( gobject ),
|
|
g_param_spec_get_name( pspec ) );
|
|
return;
|
|
}
|
|
|
|
/* If this is a set-once argument, check we've not set it before.
|
|
*/
|
|
if( argument_class->flags & VIPS_ARGUMENT_SET_ONCE &&
|
|
argument_instance->assigned ) {
|
|
g_warning( "%s: %s can only assign '%s' once",
|
|
G_STRLOC,
|
|
G_OBJECT_TYPE_NAME( gobject ),
|
|
g_param_spec_get_name( pspec ) );
|
|
return;
|
|
}
|
|
|
|
if( G_IS_PARAM_SPEC_STRING( pspec ) ) {
|
|
char **member = &G_STRUCT_MEMBER( char *, object,
|
|
argument_class->offset );
|
|
|
|
VIPS_SETSTR( *member, g_value_get_string( value ) );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_OBJECT( pspec ) ) {
|
|
/* Remove any old object.
|
|
*/
|
|
vips_object_clear_object( object, pspec );
|
|
|
|
/* Install the new object.
|
|
*/
|
|
vips_object_set_object( object, pspec,
|
|
g_value_get_object( value ) );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_INT( pspec ) ) {
|
|
int *member = &G_STRUCT_MEMBER( int, object,
|
|
argument_class->offset );
|
|
|
|
*member = g_value_get_int( value );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_BOOLEAN( pspec ) ) {
|
|
gboolean *member = &G_STRUCT_MEMBER( gboolean, object,
|
|
argument_class->offset );
|
|
|
|
*member = g_value_get_boolean( value );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_ENUM( pspec ) ) {
|
|
int *member = &G_STRUCT_MEMBER( int, object,
|
|
argument_class->offset );
|
|
|
|
*member = g_value_get_enum( value );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_POINTER( pspec ) ) {
|
|
gpointer *member = &G_STRUCT_MEMBER( gpointer, object,
|
|
argument_class->offset );
|
|
|
|
*member = g_value_get_pointer( value );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_DOUBLE( pspec ) ) {
|
|
double *member = &G_STRUCT_MEMBER( double, object,
|
|
argument_class->offset );
|
|
|
|
*member = g_value_get_double( value );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_BOXED( pspec ) ) {
|
|
gpointer *member = &G_STRUCT_MEMBER( gpointer, object,
|
|
argument_class->offset );
|
|
|
|
if( *member ) {
|
|
g_boxed_free( G_PARAM_SPEC_VALUE_TYPE( pspec ),
|
|
*member );
|
|
*member = NULL;
|
|
}
|
|
|
|
/* Copy the boxed into our pointer (will use eg.
|
|
* vips__object_vector_dup ()).
|
|
*/
|
|
*member = g_value_dup_boxed( value );
|
|
}
|
|
else {
|
|
g_warning( "%s: %s unimplemented property type %s",
|
|
G_STRLOC,
|
|
G_OBJECT_TYPE_NAME( gobject ),
|
|
g_type_name( G_PARAM_SPEC_VALUE_TYPE( pspec ) ) );
|
|
}
|
|
|
|
/* Note that it's now been set.
|
|
*/
|
|
argument_instance->assigned = TRUE;
|
|
}
|
|
|
|
/* Also used by subclasses, so not static.
|
|
*/
|
|
void
|
|
vips_object_get_property( GObject *gobject,
|
|
guint property_id, GValue *value, GParamSpec *pspec )
|
|
{
|
|
VipsObject *object = VIPS_OBJECT( gobject );
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( gobject );
|
|
VipsArgumentClass *argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
|
|
if( !argument_class ) {
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID( gobject,
|
|
property_id, pspec );
|
|
return;
|
|
}
|
|
|
|
g_assert( ((VipsArgument *) argument_class)->pspec == pspec );
|
|
|
|
if( G_IS_PARAM_SPEC_STRING( pspec ) ) {
|
|
char *member = G_STRUCT_MEMBER( char *, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_string( value, member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_OBJECT( pspec ) ) {
|
|
GObject **member = &G_STRUCT_MEMBER( GObject *, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_object( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_INT( pspec ) ) {
|
|
int *member = &G_STRUCT_MEMBER( int, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_int( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_BOOLEAN( pspec ) ) {
|
|
gboolean *member = &G_STRUCT_MEMBER( gboolean, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_boolean( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_ENUM( pspec ) ) {
|
|
int *member = &G_STRUCT_MEMBER( int, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_enum( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_POINTER( pspec ) ) {
|
|
gpointer *member = &G_STRUCT_MEMBER( gpointer, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_pointer( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_DOUBLE( pspec ) ) {
|
|
double *member = &G_STRUCT_MEMBER( double, object,
|
|
argument_class->offset );
|
|
|
|
g_value_set_double( value, *member );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_BOXED( pspec ) ) {
|
|
gpointer *member = &G_STRUCT_MEMBER( gpointer, object,
|
|
argument_class->offset );
|
|
|
|
/* Copy the boxed into our pointer (will use eg.
|
|
* vips__object_vector_dup ()).
|
|
*/
|
|
g_value_set_boxed( value, *member );
|
|
}
|
|
else {
|
|
g_warning( "%s: %s unimplemented property type %s",
|
|
G_STRLOC,
|
|
G_OBJECT_TYPE_NAME( gobject ),
|
|
g_type_name( G_PARAM_SPEC_VALUE_TYPE( pspec ) ) );
|
|
}
|
|
}
|
|
|
|
static void *
|
|
vips_object_check_required( VipsObject *object, GParamSpec *pspec,
|
|
VipsArgumentClass *argument_class,
|
|
VipsArgumentInstance *argument_instance,
|
|
void *a, void *b )
|
|
{
|
|
int *result = (int *) a;
|
|
|
|
VIPS_DEBUG_MSG( "vips_object_check_required: %s\n",
|
|
g_param_spec_get_name( pspec ) );
|
|
VIPS_DEBUG_MSG( "\trequired: %d\n",
|
|
argument_class->flags & VIPS_ARGUMENT_REQUIRED );
|
|
VIPS_DEBUG_MSG( "\tconstruct: %d\n",
|
|
argument_class->flags & VIPS_ARGUMENT_CONSTRUCT );
|
|
VIPS_DEBUG_MSG( "\tassigned: %d\n",
|
|
argument_instance->assigned );
|
|
|
|
if( (argument_class->flags & VIPS_ARGUMENT_REQUIRED) &&
|
|
(argument_class->flags & VIPS_ARGUMENT_CONSTRUCT) &&
|
|
!argument_instance->assigned ) {
|
|
vips_error( "VipsObject",
|
|
/* used as eg. "parameter out to VipsAdd not set".
|
|
*/
|
|
_( "parameter %s to %s not set" ),
|
|
g_param_spec_get_name( pspec ),
|
|
G_OBJECT_TYPE_NAME( object ) );
|
|
*result = -1;
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
static int
|
|
vips_object_real_build( VipsObject *object )
|
|
{
|
|
VipsObjectClass *object_class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
int result;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_real_build: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_assert( !object->constructed );
|
|
|
|
/* Check all required arguments have been supplied, don't stop on 1st
|
|
* error.
|
|
*/
|
|
result = 0;
|
|
(void) vips_argument_map( object,
|
|
vips_object_check_required, &result, NULL );
|
|
|
|
/* ... more checks go here.
|
|
*/
|
|
object->constructed = TRUE;
|
|
|
|
/* It'd be nice if this just copied a pointer rather than did a
|
|
* strdup(). Set these here rather than in object_init, so that the
|
|
* class gets a chance to set them.
|
|
*/
|
|
g_object_set( object,
|
|
"nickname", object_class->nickname,
|
|
"description", object_class->description, NULL );
|
|
|
|
return( result );
|
|
}
|
|
|
|
static void
|
|
vips_object_real_print_class( VipsObjectClass *class, VipsBuf *buf )
|
|
{
|
|
vips_buf_appendf( buf, "%s", G_OBJECT_CLASS_NAME( class ) );
|
|
if( class->nickname )
|
|
vips_buf_appendf( buf, " (%s)", class->nickname );
|
|
if( class->description )
|
|
vips_buf_appendf( buf, ", %s", class->description );
|
|
}
|
|
|
|
static void
|
|
vips_object_real_print( VipsObject *object, VipsBuf *buf )
|
|
{
|
|
vips_buf_appendf( buf, " (%p)", object );
|
|
}
|
|
|
|
static void
|
|
vips_object_real_sanity( VipsObject *object, VipsBuf *buf )
|
|
{
|
|
}
|
|
|
|
static void
|
|
vips_object_real_rewind( VipsObject *object )
|
|
{
|
|
#ifdef DEBUG
|
|
printf( "vips_object_rewind\n" );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_object_run_dispose( G_OBJECT( object ) );
|
|
|
|
object->constructed = FALSE;
|
|
object->preclose = FALSE;
|
|
object->close = FALSE;
|
|
object->postclose = FALSE;
|
|
}
|
|
|
|
static void
|
|
transform_string_double( const GValue *src_value, GValue *dest_value )
|
|
{
|
|
g_value_set_double( dest_value,
|
|
g_ascii_strtod( g_value_get_string( src_value ), NULL ) );
|
|
}
|
|
|
|
static void
|
|
vips_object_class_init( VipsObjectClass *class )
|
|
{
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
|
|
|
|
GParamSpec *pspec;
|
|
|
|
if( !vips__object_all ) {
|
|
vips__object_all = g_hash_table_new(
|
|
g_direct_hash, g_direct_equal );
|
|
vips__object_all_lock = g_mutex_new();
|
|
}
|
|
|
|
gobject_class->dispose = vips_object_dispose;
|
|
gobject_class->finalize = vips_object_finalize;
|
|
gobject_class->set_property = vips_object_set_property;
|
|
gobject_class->get_property = vips_object_get_property;
|
|
|
|
class->build = vips_object_real_build;
|
|
class->print_class = vips_object_real_print_class;
|
|
class->print = vips_object_real_print;
|
|
class->sanity = vips_object_real_sanity;
|
|
class->rewind = vips_object_real_rewind;
|
|
class->nickname = "object";
|
|
class->description = _( "VIPS base class" );
|
|
|
|
/* Table of VipsArgumentClass ... we can just g_free() them.
|
|
*/
|
|
class->argument_table = g_hash_table_new_full(
|
|
g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) g_free );
|
|
class->argument_table_traverse = NULL;
|
|
|
|
/* For setting double arguments from the command-line.
|
|
*/
|
|
g_value_register_transform_func( G_TYPE_STRING, G_TYPE_DOUBLE,
|
|
transform_string_double );
|
|
|
|
/* Create properties.
|
|
*/
|
|
pspec = g_param_spec_string( "nickname",
|
|
_( "Nickname" ),
|
|
_( "Class nickname" ),
|
|
"",
|
|
(GParamFlags) G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class,
|
|
PROP_NICKNAME, pspec );
|
|
vips_object_class_install_argument( class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsObject, nickname ) );
|
|
|
|
pspec = g_param_spec_string( "description",
|
|
_( "Description" ),
|
|
_( "Class description" ),
|
|
"",
|
|
(GParamFlags) G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class,
|
|
PROP_DESCRIPTION, pspec );
|
|
vips_object_class_install_argument( class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsObject, description ) );
|
|
|
|
vips_object_signals[SIG_PRECLOSE] = g_signal_new( "preclose",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsObjectClass, preclose ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0 );
|
|
vips_object_signals[SIG_CLOSE] = g_signal_new( "close",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsObjectClass, close ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0 );
|
|
vips_object_signals[SIG_POSTCLOSE] = g_signal_new( "postclose",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsObjectClass, postclose ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0 );
|
|
|
|
}
|
|
|
|
static void
|
|
vips_object_init( VipsObject *object )
|
|
{
|
|
#ifdef DEBUG
|
|
printf( "vips_object_init: " );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
#endif /*DEBUG*/
|
|
|
|
g_mutex_lock( vips__object_all_lock );
|
|
g_hash_table_insert( vips__object_all, object, object );
|
|
g_mutex_unlock( vips__object_all_lock );
|
|
}
|
|
|
|
/* Add a vipsargument ... automate some stuff with this.
|
|
*/
|
|
void
|
|
vips_object_class_install_argument( VipsObjectClass *object_class,
|
|
GParamSpec *pspec, VipsArgumentFlags flags, guint offset )
|
|
{
|
|
VipsArgumentClass *argument_class = g_new( VipsArgumentClass, 1 );
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_class_install_argument: %s\n",
|
|
g_param_spec_get_name( pspec ) );
|
|
#endif /*DEBUG*/
|
|
|
|
/* Must be a new one.
|
|
*/
|
|
g_assert( !vips__argument_table_lookup( object_class->argument_table,
|
|
pspec ) );
|
|
|
|
/* Mustn't have INPUT and OUTPUT both set.
|
|
*/
|
|
g_assert( !(
|
|
(flags & VIPS_ARGUMENT_INPUT) &&
|
|
(flags & VIPS_ARGUMENT_OUTPUT)) );
|
|
|
|
((VipsArgument *) argument_class)->pspec = pspec;
|
|
argument_class->object_class = object_class;
|
|
argument_class->flags = flags;
|
|
argument_class->offset = offset;
|
|
|
|
vips_argument_table_replace( object_class->argument_table,
|
|
(VipsArgument *) argument_class );
|
|
object_class->argument_table_traverse = g_slist_prepend(
|
|
object_class->argument_table_traverse, argument_class );
|
|
}
|
|
|
|
/* Set a named arg from a string.
|
|
*/
|
|
int
|
|
vips_object_set_argument_from_string( VipsObject *object,
|
|
const char *name, const char *value )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
GParamSpec *pspec;
|
|
GType otype;
|
|
VipsArgumentClass *argument_class;
|
|
VipsObjectClass *oclass;
|
|
GValue gvalue = { 0 };
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_set_argument_from_string: %s = %s\n",
|
|
name, value );
|
|
#endif /*DEBUG*/
|
|
|
|
pspec = g_object_class_find_property( G_OBJECT_CLASS( class ), name );
|
|
if( !pspec ) {
|
|
vips_error( "VipsObject", _( "%s.%s does not exist" ),
|
|
G_OBJECT_TYPE_NAME( object ), name );
|
|
return( -1 );
|
|
}
|
|
otype = G_PARAM_SPEC_VALUE_TYPE( pspec );
|
|
|
|
argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
|
|
g_assert( argument_class->flags & VIPS_ARGUMENT_INPUT );
|
|
|
|
if( g_type_is_a( otype, VIPS_TYPE_OBJECT ) &&
|
|
(oclass = g_type_class_peek( otype )) &&
|
|
oclass->new_from_string ) {
|
|
VipsObject *object;
|
|
|
|
if( !(object = oclass->new_from_string( value )) )
|
|
return( -1 );
|
|
|
|
g_value_init( &gvalue, G_TYPE_OBJECT );
|
|
|
|
/* VipsObject is GInitiallyUnowned, so the gvalue now has a
|
|
* ref count 1 image.
|
|
*/
|
|
g_value_set_object( &gvalue, object );
|
|
}
|
|
else if( G_IS_PARAM_SPEC_BOOLEAN( pspec ) ) {
|
|
gboolean b;
|
|
|
|
g_value_init( &gvalue, G_TYPE_BOOLEAN );
|
|
b = TRUE;
|
|
if( value &&
|
|
(strcasecmp( value, "false" ) == 0 ||
|
|
strcasecmp( value, "no" ) == 0 ||
|
|
strcmp( value, "0" ) == 0) )
|
|
b = FALSE;
|
|
g_value_set_boolean( &gvalue, b );
|
|
}
|
|
else {
|
|
g_value_init( &gvalue, G_TYPE_STRING );
|
|
g_value_set_string( &gvalue, value );
|
|
}
|
|
|
|
g_object_set_property( G_OBJECT( object ), name, &gvalue );
|
|
g_value_unset( &gvalue );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Does a named output arg need an argument to write to? For example, an image
|
|
* output needs a filename, a double output just prints.
|
|
*/
|
|
gboolean
|
|
vips_object_get_argument_needs_string( VipsObject *object, const char *name )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
GParamSpec *pspec;
|
|
GType otype;
|
|
VipsArgumentClass *argument_class;
|
|
VipsObjectClass *oclass;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_get_argument_needs_string: %s\n", name );
|
|
#endif /*DEBUG*/
|
|
|
|
pspec = g_object_class_find_property( G_OBJECT_CLASS( class ), name );
|
|
if( !pspec ) {
|
|
vips_error( "VipsObject", _( "%s.%s does not exist" ),
|
|
G_OBJECT_TYPE_NAME( object ), name );
|
|
return( -1 );
|
|
}
|
|
otype = G_PARAM_SPEC_VALUE_TYPE( pspec );
|
|
|
|
argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
|
|
g_assert( argument_class->flags & VIPS_ARGUMENT_OUTPUT );
|
|
|
|
/* For now, only vipsobject subclasses can ask for args.
|
|
*/
|
|
if( g_type_is_a( otype, VIPS_TYPE_OBJECT ) &&
|
|
(oclass = g_type_class_peek( otype )) )
|
|
return( oclass->output_needs_arg );
|
|
|
|
return( FALSE );
|
|
}
|
|
|
|
static void
|
|
vips_object_print_arg( VipsObject *object, GParamSpec *pspec, VipsBuf *buf )
|
|
{
|
|
GType type = G_PARAM_SPEC_VALUE_TYPE( pspec );
|
|
const char *name = g_param_spec_get_name( pspec );
|
|
GValue value = { 0 };
|
|
char *str_value;
|
|
|
|
g_value_init( &value, type );
|
|
g_object_get_property( G_OBJECT( object ), name, &value );
|
|
str_value = g_strdup_value_contents( &value );
|
|
vips_buf_appends( buf, str_value );
|
|
g_free( str_value );
|
|
g_value_unset( &value );
|
|
}
|
|
|
|
/* Write a named arg to the string. If the arg does not need a string (see
|
|
* above), arg will be NULL.
|
|
*/
|
|
int
|
|
vips_object_get_argument_to_string( VipsObject *object,
|
|
const char *name, const char *arg )
|
|
{
|
|
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
|
|
|
|
GParamSpec *pspec;
|
|
GType otype;
|
|
VipsArgumentClass *argument_class;
|
|
VipsObjectClass *oclass;
|
|
|
|
#ifdef DEBUG
|
|
printf( "vips_object_get_argument_to_string: %s -> %s\n",
|
|
name, arg );
|
|
#endif /*DEBUG*/
|
|
|
|
pspec = g_object_class_find_property( G_OBJECT_CLASS( class ), name );
|
|
if( !pspec ) {
|
|
vips_error( "VipsObject", _( "%s.%s does not exist" ),
|
|
G_OBJECT_TYPE_NAME( object ), name );
|
|
return( -1 );
|
|
}
|
|
otype = G_PARAM_SPEC_VALUE_TYPE( pspec );
|
|
|
|
argument_class = (VipsArgumentClass *)
|
|
vips__argument_table_lookup( class->argument_table, pspec );
|
|
|
|
g_assert( argument_class->flags & VIPS_ARGUMENT_OUTPUT );
|
|
|
|
if( g_type_is_a( otype, VIPS_TYPE_OBJECT ) &&
|
|
(oclass = g_type_class_peek( otype )) &&
|
|
oclass->output_to_arg ) {
|
|
VipsObject *value;
|
|
|
|
g_object_get( object, name, &value, NULL );
|
|
if( oclass->output_to_arg( value, arg ) ) {
|
|
g_object_unref( value );
|
|
return( -1 );
|
|
}
|
|
g_object_unref( value );
|
|
}
|
|
else {
|
|
char str[1000];
|
|
VipsBuf buf = VIPS_BUF_STATIC( str );
|
|
|
|
vips_object_print_arg( object, pspec, &buf );
|
|
printf( "%s", vips_buf_all( &buf ) );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static void *
|
|
vips_argument_is_required( VipsObject *object,
|
|
GParamSpec *pspec,
|
|
VipsArgumentClass *argument_class,
|
|
VipsArgumentInstance *argument_instance,
|
|
void *a, void *b )
|
|
{
|
|
if( (argument_class->flags & VIPS_ARGUMENT_REQUIRED) &&
|
|
(argument_class->flags & VIPS_ARGUMENT_CONSTRUCT) &&
|
|
(argument_class->flags & VIPS_ARGUMENT_INPUT) &&
|
|
!argument_instance->assigned )
|
|
return( pspec );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/* Set the first unassigned required input arg to the string.
|
|
*/
|
|
int
|
|
vips_object_set_required( VipsObject *object, const char *value )
|
|
{
|
|
GParamSpec *pspec;
|
|
|
|
if( !(pspec = vips_argument_map( object,
|
|
vips_argument_is_required, NULL, NULL )) ) {
|
|
vips_error( "VipsObject",
|
|
_( "no unset required arguments for %s" ), value );
|
|
return( -1 );
|
|
}
|
|
|
|
if( vips_object_set_argument_from_string( object,
|
|
g_param_spec_get_name( pspec ), value ) )
|
|
return( -1 );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Set object args from a string. We've seen the '(', we need to check for the
|
|
* closing ')' and make sure there's no extra stuff.
|
|
*/
|
|
static int
|
|
vips_object_set_args( VipsObject *object, const char *p )
|
|
{
|
|
VipsToken token;
|
|
char string[PATH_MAX];
|
|
char string2[PATH_MAX];
|
|
|
|
do {
|
|
if( !(p = vips__token_need( p, VIPS_TOKEN_STRING,
|
|
string, PATH_MAX )) )
|
|
return( -1 );
|
|
|
|
/* We have to look for a '=', ')' or a ',' to see if string is
|
|
* a param name or a value.
|
|
*/
|
|
if( !(p = vips__token_must( p, &token, string2, PATH_MAX )) )
|
|
return( -1 );
|
|
if( token == VIPS_TOKEN_EQUALS ) {
|
|
if( !(p = vips__token_need( p, VIPS_TOKEN_STRING,
|
|
string2, PATH_MAX )) )
|
|
return( -1 );
|
|
if( vips_object_set_argument_from_string( object,
|
|
string, string2 ) )
|
|
return( -1 );
|
|
if( !(p = vips__token_must( p, &token,
|
|
string2, PATH_MAX )) )
|
|
return( -1 );
|
|
}
|
|
else {
|
|
if( vips_object_set_required( object, string ) )
|
|
return( -1 );
|
|
}
|
|
|
|
/* Now must be a , or a ).
|
|
*/
|
|
if( token != VIPS_TOKEN_RIGHT && token != VIPS_TOKEN_COMMA ) {
|
|
vips_error( "VipsObject",
|
|
"%s", _( "not , or ) after parameter" ) );
|
|
return( -1 );
|
|
}
|
|
} while( token != VIPS_TOKEN_RIGHT );
|
|
|
|
if( (p = vips__token_get( p, &token, string, PATH_MAX )) ) {
|
|
vips_error( "VipsObject",
|
|
"%s", _( "extra tokens after ')'" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
VipsObject *
|
|
vips_object_new( GType type, VipsObjectSetArguments set, void *a, void *b )
|
|
{
|
|
VipsObject *object;
|
|
|
|
object = VIPS_OBJECT( g_object_new( type, NULL ) );
|
|
|
|
if( set && set( object, a, b ) ) {
|
|
g_object_unref( object );
|
|
return( NULL );
|
|
}
|
|
|
|
if( vips_object_build( object ) ) {
|
|
g_object_unref( object );
|
|
return( NULL );
|
|
}
|
|
|
|
return( object );
|
|
}
|
|
|
|
static void *
|
|
vips_object_new_from_string_set( VipsObject *object, void *a, void *b )
|
|
{
|
|
const char *p = (const char *) a;
|
|
VipsToken token;
|
|
char string[PATH_MAX];
|
|
|
|
if( (p = vips__token_get( p, &token, string, PATH_MAX )) ) {
|
|
if( token == VIPS_TOKEN_LEFT &&
|
|
vips_object_set_args( object, p ) ) {
|
|
vips_error( "VipsObject",
|
|
"%s", _( "bad object arguments" ) );
|
|
return( object );
|
|
}
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
VipsObject *
|
|
vips_object_new_from_string( const char *basename, const char *p )
|
|
{
|
|
char string[PATH_MAX];
|
|
GType type;
|
|
|
|
if( !(p = vips__token_need( p, VIPS_TOKEN_STRING, string, PATH_MAX )) ||
|
|
!(type = vips_type_find( basename, string )) )
|
|
return( NULL );
|
|
|
|
return( vips_object_new( type,
|
|
vips_object_new_from_string_set, (void *) p, NULL ) );
|
|
}
|
|
|
|
static void *
|
|
vips_object_to_string_required( VipsObject *object,
|
|
GParamSpec *pspec,
|
|
VipsArgumentClass *argument_class,
|
|
VipsArgumentInstance *argument_instance,
|
|
void *a, void *b )
|
|
{
|
|
VipsBuf *buf = (VipsBuf *) a;
|
|
gboolean *first = (gboolean *) b;
|
|
|
|
if( (argument_class->flags & VIPS_ARGUMENT_REQUIRED) ) {
|
|
if( *first ) {
|
|
vips_buf_appends( buf, "(" );
|
|
*first = FALSE;
|
|
}
|
|
else {
|
|
vips_buf_appends( buf, "," );
|
|
}
|
|
|
|
vips_object_print_arg( object, pspec, buf );
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
static void *
|
|
vips_object_to_string_optional( VipsObject *object,
|
|
GParamSpec *pspec,
|
|
VipsArgumentClass *argument_class,
|
|
VipsArgumentInstance *argument_instance,
|
|
void *a, void *b )
|
|
{
|
|
VipsBuf *buf = (VipsBuf *) a;
|
|
gboolean *first = (gboolean *) b;
|
|
|
|
if( !(argument_class->flags & VIPS_ARGUMENT_REQUIRED) &&
|
|
argument_instance->assigned ) {
|
|
if( *first ) {
|
|
vips_buf_appends( buf, "(" );
|
|
*first = FALSE;
|
|
}
|
|
else {
|
|
vips_buf_appends( buf, "," );
|
|
}
|
|
|
|
vips_buf_appends( buf, g_param_spec_get_name( pspec ) );
|
|
vips_buf_appends( buf, "=" );
|
|
vips_object_print_arg( object, pspec, buf );
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/* The inverse of vips_object_new_from_string(): turn an object into eg.
|
|
* "VipsInterpolateSnohalo1(blur=.333333)".
|
|
*/
|
|
void
|
|
vips_object_to_string( VipsObject *object, VipsBuf *buf )
|
|
{
|
|
gboolean first;
|
|
|
|
/* Nicknames are not guaranteed to be unique, so use the full type
|
|
* name.
|
|
*/
|
|
vips_buf_appends( buf, G_OBJECT_TYPE_NAME( object ) );
|
|
first = TRUE;
|
|
(void) vips_argument_map( object,
|
|
vips_object_to_string_required, buf, &first );
|
|
(void) vips_argument_map( object,
|
|
vips_object_to_string_optional, buf, &first );
|
|
if( !first )
|
|
vips_buf_appends( buf, ")" );
|
|
}
|
|
|
|
typedef struct {
|
|
VipsSListMap2Fn fn;
|
|
void *a;
|
|
void *b;
|
|
void *result;
|
|
} VipsObjectMapArgs;
|
|
|
|
static void
|
|
vips_object_map_sub( VipsObject *key, VipsObject *value,
|
|
VipsObjectMapArgs *args )
|
|
{
|
|
if( !args->result )
|
|
args->result = args->fn( key, args->a, args->b );
|
|
}
|
|
|
|
void *
|
|
vips_object_map( VipsSListMap2Fn fn, void *a, void *b )
|
|
{
|
|
VipsObjectMapArgs args;
|
|
|
|
args.fn = fn;
|
|
args.a = a;
|
|
args.b = b;
|
|
args.result = NULL;
|
|
|
|
/* We must test vips__object_all before we lock because the lock is
|
|
* only created when the first object is created.
|
|
*/
|
|
if( vips__object_all ) {
|
|
g_mutex_lock( vips__object_all_lock );
|
|
g_hash_table_foreach( vips__object_all,
|
|
(GHFunc) vips_object_map_sub, &args );
|
|
g_mutex_unlock( vips__object_all_lock );
|
|
}
|
|
|
|
return( args.result );
|
|
}
|
|
|
|
/* Map over all a type's children.
|
|
*/
|
|
void *
|
|
vips_type_map( GType base, VipsTypeMap2 fn, void *a, void *b )
|
|
{
|
|
GType *child;
|
|
guint n_children;
|
|
unsigned int i;
|
|
void *result;
|
|
|
|
child = g_type_children( base, &n_children );
|
|
result = NULL;
|
|
for( i = 0; i < n_children && !result; i++ )
|
|
result = fn( child[i], a, b );
|
|
g_free( child );
|
|
|
|
return( result );
|
|
}
|
|
|
|
/* Loop over all the concrete subtypes of a base type.
|
|
*/
|
|
void *
|
|
vips_type_map_concrete_all( GType base, VipsTypeMap fn, void *a )
|
|
{
|
|
void *result;
|
|
|
|
result = NULL;
|
|
if( !G_TYPE_IS_ABSTRACT( base ) )
|
|
result = fn( base, a );
|
|
if( !result )
|
|
result = vips_type_map( base,
|
|
(VipsTypeMap2) vips_type_map_concrete_all, fn, a );
|
|
|
|
return( result );
|
|
}
|
|
|
|
/* Loop over all the subclasses of a base type.
|
|
*/
|
|
void *
|
|
vips_class_map_concrete_all( GType type, VipsClassMap fn, void *a )
|
|
{
|
|
void *result;
|
|
|
|
result = NULL;
|
|
if( !G_TYPE_IS_ABSTRACT( type ) ) {
|
|
GTypeClass *class;
|
|
|
|
/* Does this class exist? Try to create if not.
|
|
*/
|
|
if( !(class = g_type_class_peek( type )) )
|
|
/* We don't unref, so the class is never finalized.
|
|
* This will make the peek work next time around and
|
|
* save us from constantly building and destroying
|
|
* classes.
|
|
*/
|
|
if( !(class = g_type_class_ref( type )) ) {
|
|
vips_error( "VipsObject",
|
|
"%s", _( "unable to build class" ) );
|
|
return( NULL );
|
|
}
|
|
|
|
result = fn( VIPS_OBJECT_CLASS( class ), a );
|
|
}
|
|
if( !result )
|
|
result = vips_type_map( type,
|
|
(VipsTypeMap2) vips_class_map_concrete_all, fn, a );
|
|
|
|
return( result );
|
|
}
|
|
|
|
static void *
|
|
test_name( VipsObjectClass *class, const char *nickname )
|
|
{
|
|
if( strcasecmp( class->nickname, nickname ) == 0 )
|
|
return( class );
|
|
|
|
/* Check the class name too, why not.
|
|
*/
|
|
if( strcasecmp( G_OBJECT_CLASS_NAME( class ), nickname ) == 0 )
|
|
return( class );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/* Find a class ... search below base, return the first match on a nickname or
|
|
* a name.
|
|
*/
|
|
VipsObjectClass *
|
|
vips_class_find( const char *basename, const char *nickname )
|
|
{
|
|
VipsObjectClass *class;
|
|
GType base;
|
|
|
|
if( !(base = g_type_from_name( basename )) ) {
|
|
vips_error( "VipsObject",
|
|
_( "base class \"%s\" not found" ), basename );
|
|
return( NULL );
|
|
}
|
|
|
|
if( !(class = vips_class_map_concrete_all( base,
|
|
(VipsClassMap) test_name, (void *) nickname )) ) {
|
|
vips_error( "VipsObject",
|
|
_( "class \"%s\" not found" ), nickname );
|
|
return( NULL );
|
|
}
|
|
|
|
return( class );
|
|
}
|
|
|
|
GType
|
|
vips_type_find( const char *basename, const char *nickname )
|
|
{
|
|
VipsObjectClass *class;
|
|
|
|
if( !(class = vips_class_find( "VipsObject", nickname )) )
|
|
return( 0 );
|
|
|
|
/* FIXME ... we've not supposed to use G_TYPE_FROM_CLASS(), I think.
|
|
* I'm not * sure what the alternative is.
|
|
*/
|
|
return( G_TYPE_FROM_CLASS( class ) );
|
|
}
|
|
|
|
void
|
|
vips_object_local_cb( VipsObject *vobject, GObject *gobject )
|
|
{
|
|
g_object_unref( gobject );
|
|
}
|
|
|
|
int
|
|
vips_object_unref( VipsObject *obj )
|
|
{
|
|
g_object_unref( obj );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static void *
|
|
vips_object_print_all_cb( VipsObject *object, int *n )
|
|
{
|
|
printf( "%d) ", *n );
|
|
vips_object_print_name( object );
|
|
printf( "\n" );
|
|
|
|
*n += 1;
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
void
|
|
vips_object_print_all( void )
|
|
{
|
|
if( g_hash_table_size( vips__object_all ) > 0 ) {
|
|
int n;
|
|
|
|
printf( "%d objects alive:\n",
|
|
g_hash_table_size( vips__object_all ) );
|
|
|
|
n = 0;
|
|
vips_object_map(
|
|
(VipsSListMap2Fn) vips_object_print_all_cb, &n, NULL );
|
|
}
|
|
}
|
|
|
|
static void *
|
|
vips_object_sanity_all_cb( VipsObject *object )
|
|
{
|
|
(void) vips_object_sanity( object );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
void
|
|
vips_object_sanity_all( void )
|
|
{
|
|
vips_object_map(
|
|
(VipsSListMap2Fn) vips_object_sanity_all_cb, NULL, NULL );
|
|
}
|