2008-08-19 00:57:32 +02:00
|
|
|
/* VIPS argument types
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This file is part of VIPS.
|
|
|
|
|
|
|
|
VIPS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser 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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IM_TYPE_H
|
|
|
|
#define IM_TYPE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /*__cplusplus*/
|
|
|
|
|
|
|
|
/* Type names. Old code might use "doublevec" etc. from before we had the
|
|
|
|
* "array" type.
|
|
|
|
*/
|
2008-08-19 16:06:09 +02:00
|
|
|
#define IM_TYPE_NAME_DOUBLE "double" /* im_value_t is ptr to double */
|
2008-08-19 00:57:32 +02:00
|
|
|
#define IM_TYPE_NAME_INT "integer" /* 32-bit integer */
|
|
|
|
#define IM_TYPE_NAME_COMPLEX "complex" /* Pair of doubles */
|
|
|
|
#define IM_TYPE_NAME_STRING "string" /* Zero-terminated char array */
|
|
|
|
#define IM_TYPE_NAME_IMASK "intmask" /* Integer mask type */
|
|
|
|
#define IM_TYPE_NAME_DMASK "doublemask" /* Double mask type */
|
|
|
|
#define IM_TYPE_NAME_IMAGE "image" /* IMAGE descriptor */
|
|
|
|
#define IM_TYPE_NAME_DISPLAY "display" /* Display descriptor */
|
|
|
|
#define IM_TYPE_NAME_GVALUE "gvalue" /* GValue wrapper */
|
|
|
|
#define IM_TYPE_NAME_ARRAY "array" /* Array of other values of some type */
|
|
|
|
|
2008-08-19 16:06:09 +02:00
|
|
|
/* A VIPS type.
|
2008-08-19 00:57:32 +02:00
|
|
|
*/
|
2008-08-19 18:54:55 +02:00
|
|
|
typedef struct im__type_t {
|
2008-08-19 16:06:09 +02:00
|
|
|
const char *name; /* Name of type, eg. "double" */
|
2008-08-19 18:54:55 +02:00
|
|
|
struct im__type_t *type_param; /* What this is an array of */
|
2008-08-19 16:06:09 +02:00
|
|
|
size_t size; /* sizeof( im_value_t ) repres. ) */
|
2008-08-19 18:54:55 +02:00
|
|
|
} im_type_t;
|
|
|
|
|
|
|
|
/* Pass (array of pointers to im_value_t) to operations as the argument list.
|
|
|
|
* Cast to the appropriate type for this argument, eg. (int *) or (IMAGE *).
|
|
|
|
*/
|
|
|
|
typedef void im_value_t;
|
2008-08-19 00:57:32 +02:00
|
|
|
|
2008-08-19 16:06:09 +02:00
|
|
|
/* Various im_value_t values.
|
2008-08-19 00:57:32 +02:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
char *name; /* Command-line name in */
|
|
|
|
void *mask; /* Mask --- DOUBLE or INT */
|
2008-08-19 16:06:09 +02:00
|
|
|
} im_value_mask_t;
|
2008-08-19 00:57:32 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int n; /* Array length */
|
2008-08-19 16:06:09 +02:00
|
|
|
im_value_t **array; /* Array */
|
|
|
|
} im_value_array_t;
|
2008-08-19 00:57:32 +02:00
|
|
|
|
|
|
|
/* An argument to a VIPS operation.
|
|
|
|
*/
|
|
|
|
typedef struct im__argument_t {
|
|
|
|
const char *name; /* Eg. "in2" */
|
|
|
|
im_type_t *type; /* Argument type */
|
|
|
|
gboolean input; /* TRUE means arg to operation */
|
|
|
|
} im_argument_t;
|
|
|
|
|
|
|
|
/* Flags for operations. Various hints for UIs about the behaviour of the
|
|
|
|
* operation,
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
IM_OPERATION_NONE = 0, /* No flags set */
|
|
|
|
IM_OPERATION_PIO = 0x1, /* Is a partial function */
|
|
|
|
IM_OPERATION_TRANSFORM = 0x2, /* Performs coord transformations */
|
|
|
|
IM_OPERATION_PTOP = 0x4, /* Point-to-point ... can be LUTted */
|
|
|
|
IM_OPERATION_NOCACHE = 0x8 /* Result should not be cached */
|
|
|
|
} im_operation_flags;
|
|
|
|
|
|
|
|
/* Type of a VIPS dispatch funtion.
|
|
|
|
*/
|
2008-08-19 16:06:09 +02:00
|
|
|
typedef int (*im_operation_dispatch_fn)( im_value_t **argv );
|
2008-08-19 00:57:32 +02:00
|
|
|
|
|
|
|
/* A VIPS operation.
|
|
|
|
*/
|
|
|
|
typedef struct im__operation_t {
|
|
|
|
const char *name; /* eg "im_invert" */
|
|
|
|
const char *desc; /* One line description */
|
|
|
|
im_operation_flags flags; /* Flags for this function */
|
|
|
|
im_operation_dispatch_fn disp; /* Dispatch */
|
|
|
|
int argc; /* Number of args */
|
|
|
|
im_argument_t **argv; /* Arg list */
|
|
|
|
} im_operation_t;
|
|
|
|
|
|
|
|
/* Register/iterate over types.
|
|
|
|
*/
|
2008-08-19 16:06:09 +02:00
|
|
|
im_type_t *im_type_register( const char *name,
|
2008-08-19 18:54:55 +02:00
|
|
|
im_type_t *type_param, size_t size );
|
2008-08-19 00:57:32 +02:00
|
|
|
void *im_type_map( VSListMap2Fn fn, void *a, void *b );
|
2008-08-19 16:06:09 +02:00
|
|
|
im_type_t *im_type_lookup( const char *name, im_type_t *type_param );
|
2008-08-19 00:57:32 +02:00
|
|
|
|
|
|
|
/* Register/iterate/lookup operations.
|
|
|
|
*/
|
|
|
|
im_operation_t *im_operation_register( const char *name, const char *desc,
|
|
|
|
im_operation_flags flags, im_operation_dispatch_fn disp, int argc );
|
|
|
|
void *im_operation_map( VSListMap2Fn fn, void *a, void *b );
|
|
|
|
im_operation_t *im_operation_lookup( const char *name );
|
|
|
|
|
2008-08-19 16:06:09 +02:00
|
|
|
/* Create arguments.
|
|
|
|
*/
|
|
|
|
im_argument_t *im_argument_new( const char *name,
|
|
|
|
im_type_t *type, gboolean input );
|
|
|
|
|
2008-08-19 00:57:32 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /*__cplusplus*/
|
|
|
|
|
|
|
|
#endif /*IM_TYPE_H*/
|