libvips/libvips/include/vips/private.h

228 lines
6.5 KiB
C
Raw Permalink Normal View History

2009-08-16 17:00:08 +02:00
/* Declarations which are public-facing, but private. See internal.h for
* declarations which are only used internally by vips and which are not
* externally visible.
*
* 6/7/09
* - from vips.h
*/
/*
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., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
2009-08-16 17:00:08 +02:00
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#ifndef VIPS_PRIVATE_H
#define VIPS_PRIVATE_H
2009-08-16 17:00:08 +02:00
#ifdef __cplusplus
extern "C" {
#endif /*__cplusplus*/
#define VIPS_SPARE (8)
2009-08-16 17:00:08 +02:00
2009-12-10 13:34:50 +01:00
/* Private to iofuncs: the minimum number of scanlines we add above and below
* the window as a margin for slop.
2009-08-16 17:00:08 +02:00
*/
#define VIPS__WINDOW_MARGIN_PIXELS (128)
2009-12-10 13:34:50 +01:00
/* Private to iofuncs: add at least this many bytes above and below the window.
* There's no point mapping just a few KB of a small image.
*/
#define VIPS__WINDOW_MARGIN_BYTES (1024 * 1024 * 10)
2009-08-16 17:00:08 +02:00
/* sizeof() a VIPS header on disc.
*/
#define VIPS_SIZEOF_HEADER (64)
2009-08-16 17:00:08 +02:00
/* What we track for each mmap window. Have a list of these on an openin
* VipsImage.
2009-08-16 17:00:08 +02:00
*/
typedef struct {
int ref_count; /* # of regions referencing us */
struct _VipsImage *im; /* VipsImage we are attached to */
2009-08-16 17:00:08 +02:00
int top; /* Area of image we have mapped, in pixels */
int height;
2011-12-31 19:22:42 +01:00
VipsPel *data; /* First pixel of line 'top' */
2009-08-16 17:00:08 +02:00
void *baseaddr; /* Base of window */
2009-08-16 17:00:08 +02:00
size_t length; /* Size of window */
} VipsWindow;
2009-08-16 17:00:08 +02:00
VIPS_API
int vips_window_unref( VipsWindow *window );
VIPS_API
void vips_window_print( VipsWindow *window );
2009-10-06 18:19:13 +02:00
/* Per-thread buffer state. Held in a GPrivate.
2009-10-06 18:19:13 +02:00
*/
typedef struct {
GHashTable *hash; /* VipsImage -> VipsBufferCache* */
2009-10-06 18:19:13 +02:00
GThread *thread; /* Just for sanity checking */
} VipsBufferThread;
2009-10-06 18:19:13 +02:00
2016-10-13 15:57:18 +02:00
/* Per-image buffer cache. This keeps a list of "done" VipsBuffer that this
* worker has generated. We use this to reuse results within a thread.
*
* Hash to this from VipsBufferThread::hash.
* We can't store the GSList directly in the hash table as GHashTable lacks an
2009-10-06 18:19:13 +02:00
* update operation and we'd need to _remove() and _insert() on every list
* operation.
*/
typedef struct _VipsBufferCache {
2016-10-13 15:57:18 +02:00
GSList *buffers; /* GSList of "done" VipsBuffer* */
2009-10-06 18:19:13 +02:00
GThread *thread; /* Just for sanity checking */
struct _VipsImage *im;
VipsBufferThread *buffer_thread;
GSList *reserve; /* VipsBuffer kept in reserve */
int n_reserve; /* Number in reserve */
} VipsBufferCache;
2009-10-06 18:19:13 +02:00
/* What we track for each pixel buffer. These can move between caches and
* between threads, but not between images.
2016-10-13 15:57:18 +02:00
*
* Moving between threads is difficult, use region ownership stuff.
2009-10-06 18:19:13 +02:00
*/
typedef struct _VipsBuffer {
2009-10-06 18:19:13 +02:00
int ref_count; /* # of regions referencing us */
struct _VipsImage *im; /* VipsImage we are attached to */
2009-10-06 18:19:13 +02:00
VipsRect area; /* Area this pixel buffer covers */
2016-10-13 15:57:18 +02:00
gboolean done; /* Calculated and in a cache */
VipsBufferCache *cache; /* The cache this buffer is published on */
2011-12-31 19:22:42 +01:00
VipsPel *buf; /* Private malloc() area */
2009-10-06 18:19:13 +02:00
size_t bsize; /* Size of private malloc() */
} VipsBuffer;
VIPS_API
void vips_buffer_dump_all( void );
VIPS_API
void vips_buffer_done( VipsBuffer *buffer );
VIPS_API
void vips_buffer_undone( VipsBuffer *buffer );
VIPS_API
void vips_buffer_unref( VipsBuffer *buffer );
VIPS_API
VipsBuffer *vips_buffer_new( struct _VipsImage *im, VipsRect *area );
VIPS_API
VipsBuffer *vips_buffer_ref( struct _VipsImage *im, VipsRect *area );
VIPS_API
VipsBuffer *vips_buffer_unref_ref( VipsBuffer *buffer,
struct _VipsImage *im, VipsRect *area );
VIPS_API
void vips_buffer_print( VipsBuffer *buffer );
2009-10-06 18:19:13 +02:00
void vips__render_shutdown( void );
2009-10-07 15:03:46 +02:00
/* Sections of region.h that are private to VIPS.
*/
/* Region types.
*/
typedef enum _RegionType {
VIPS_REGION_NONE,
VIPS_REGION_BUFFER, /* A VipsBuffer */
VIPS_REGION_OTHER_REGION, /* Memory on another region */
VIPS_REGION_OTHER_IMAGE, /* Memory on another image */
VIPS_REGION_WINDOW /* A VipsWindow on fd */
2009-10-07 15:03:46 +02:00
} RegionType;
/* Private to iofuncs: the size of the `tiles' requested by
* vips_image_generate() when acting as a data sink.
2009-10-07 15:03:46 +02:00
*/
#define VIPS__TILE_WIDTH (128)
#define VIPS__TILE_HEIGHT (128)
2009-10-07 15:03:46 +02:00
/* The height of the strips for the other two request styles.
*/
#define VIPS__THINSTRIP_HEIGHT (1)
#define VIPS__FATSTRIP_HEIGHT (16)
2009-10-07 15:03:46 +02:00
/* Functions on regions.
*/
struct _VipsRegion;
void vips__region_take_ownership( struct _VipsRegion *reg );
void vips__region_check_ownership( struct _VipsRegion *reg );
/* TODO(kleisauke): VIPS_API is required by vipsdisp.
*/
VIPS_API
void vips__region_no_ownership( struct _VipsRegion *reg );
2009-10-07 15:03:46 +02:00
typedef int (*VipsRegionFillFn)( struct _VipsRegion *, void * );
VIPS_API
int vips_region_fill( struct _VipsRegion *reg,
const VipsRect *r, VipsRegionFillFn fn, void *a );
2009-10-07 15:03:46 +02:00
2011-12-21 20:00:32 +01:00
int vips__image_wio_output( struct _VipsImage *image );
int vips__image_pio_output( struct _VipsImage *image );
/* VIPS_ARGUMENT_FOR_ALL() needs to have this visible.
*/
VIPS_API
VipsArgumentInstance *vips__argument_get_instance(
VipsArgumentClass *argument_class,
VipsObject *object);
VipsArgument *vips__argument_table_lookup( VipsArgumentTable *table,
GParamSpec *pspec);
/* im_demand_hint_array() needs to have this visible.
*/
#if VIPS_ENABLE_DEPRECATED
VIPS_API
#endif
void vips__demand_hint_array( struct _VipsImage *image,
int hint, struct _VipsImage **in );
/* im_cp_desc_array() needs to have this visible.
*/
#if VIPS_ENABLE_DEPRECATED
VIPS_API
#endif
int vips__image_copy_fields_array( struct _VipsImage *out,
struct _VipsImage *in[] );
2017-04-06 11:19:35 +02:00
void vips__region_count_pixels( struct _VipsRegion *region, const char *nickname );
VIPS_API
2017-04-06 11:19:35 +02:00
void vips_region_dump_all( void );
VIPS_API
int vips_region_prepare_many( struct _VipsRegion **reg, const VipsRect *r );
/* Handy for debugging.
*/
int vips__view_image( struct _VipsImage *image );
/* Pre 8.7 libvipses used this for allocating argument ids.
*/
VIPS_API
int _vips__argument_id;
void vips__meta_init( void );
2009-08-16 17:00:08 +02:00
#ifdef __cplusplus
}
#endif /*__cplusplus*/
#endif /*VIPS_PRIVATE_H*/