2011-02-14 19:23:01 +01:00
|
|
|
/* Read and write a vips file
|
2009-08-16 17:00:08 +02:00
|
|
|
*
|
|
|
|
* 22/5/08
|
|
|
|
* - from im_open.c, im_openin.c, im_desc_hd.c, im_readhist.c,
|
|
|
|
* im_openout.c
|
|
|
|
* 19/3/09
|
|
|
|
* - block mmaps of nodata images
|
|
|
|
* 12/5/09
|
|
|
|
* - fix signed/unsigned warnings
|
2009-10-12 18:16:25 +02:00
|
|
|
* 12/10/09
|
|
|
|
* - heh argh reading history always stopped after the first line
|
2009-12-10 11:58:10 +01:00
|
|
|
* 9/12/09
|
|
|
|
* - only wholly map input files on im_incheck() ... this reduces VM use,
|
|
|
|
* especially with large numbers of small files
|
2011-02-14 19:23:01 +01:00
|
|
|
* 14/2/11
|
|
|
|
* - renamed to vips.c from im_open_vips.c, some stuff chopped out for
|
|
|
|
* image.c ... this file now just does read / write to disc
|
2011-03-28 15:57:43 +02:00
|
|
|
* 28/3/11
|
|
|
|
* - moved to vips_ namespace
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
#define DEBUG
|
2011-12-01 19:03:41 +01:00
|
|
|
#define SHOW_HEADER
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif /*HAVE_CONFIG_H*/
|
|
|
|
#include <vips/intl.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_FILE_H
|
|
|
|
#include <sys/file.h>
|
|
|
|
#endif /*HAVE_SYS_FILE_H*/
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif /*HAVE_UNISTD_H*/
|
|
|
|
#ifdef HAVE_IO_H
|
|
|
|
#include <io.h>
|
|
|
|
#endif /*HAVE_IO_H*/
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#ifdef OS_WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif /*OS_WIN32*/
|
|
|
|
|
|
|
|
#include <vips/vips.h>
|
|
|
|
#include <vips/internal.h>
|
|
|
|
#include <vips/debug.h>
|
|
|
|
|
|
|
|
/* Try to make an O_BINARY ... sometimes need the leading '_'.
|
|
|
|
*/
|
|
|
|
#ifdef BINARY_OPEN
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#ifdef _O_BINARY
|
|
|
|
#define O_BINARY _O_BINARY
|
|
|
|
#endif /*_O_BINARY*/
|
|
|
|
#endif /*!O_BINARY*/
|
|
|
|
#endif /*BINARY_OPEN*/
|
|
|
|
|
2011-02-14 19:23:01 +01:00
|
|
|
/* If we have O_BINARY, add it to a mode flags set.
|
|
|
|
*/
|
|
|
|
#ifdef O_BINARY
|
|
|
|
#define BINARYIZE(M) ((M) | O_BINARY)
|
|
|
|
#else /*!O_BINARY*/
|
|
|
|
#define BINARYIZE(M) (M)
|
|
|
|
#endif /*O_BINARY*/
|
|
|
|
|
|
|
|
/* Open mode for image write ... on some systems, have to set BINARY too.
|
|
|
|
*/
|
|
|
|
#define MODE_WRITE BINARYIZE (O_WRONLY | O_CREAT | O_TRUNC)
|
|
|
|
|
|
|
|
/* Mode for read/write. This is if we might later want to mmaprw () the file.
|
|
|
|
*/
|
|
|
|
#define MODE_READWRITE BINARYIZE (O_RDWR)
|
|
|
|
|
|
|
|
/* Mode for read only. This is the fallback if READWRITE fails.
|
|
|
|
*/
|
|
|
|
#define MODE_READONLY BINARYIZE (O_RDONLY)
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
/* Our XML namespace.
|
|
|
|
*/
|
|
|
|
#define NAMESPACE "http://www.vips.ecs.soton.ac.uk/vips"
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
/* Open for read for image files.
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
2011-03-23 19:28:48 +01:00
|
|
|
int
|
|
|
|
vips__open_image_read( const char *filename )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
/* Try to open read-write, so that calls to vips_image_inplace() will
|
|
|
|
* work. When we later mmap this file, we set read-only, so there
|
2009-08-16 17:00:08 +02:00
|
|
|
* is little danger of scrubbing over files we own.
|
|
|
|
*/
|
2011-11-02 15:51:39 +01:00
|
|
|
fd = vips_tracked_open( filename, MODE_READWRITE );
|
|
|
|
if( fd == -1 )
|
2009-08-16 17:00:08 +02:00
|
|
|
/* Open read-write failed. Fall back to open read-only.
|
|
|
|
*/
|
2011-11-02 15:51:39 +01:00
|
|
|
fd = vips_tracked_open( filename, MODE_READONLY );
|
|
|
|
|
|
|
|
if( fd == -1 ) {
|
|
|
|
vips_error_system( errno, "VipsImage",
|
|
|
|
_( "unable to open \"%s\"" ), filename );
|
|
|
|
return( -1 );
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( fd );
|
|
|
|
}
|
|
|
|
|
2011-12-15 11:59:05 +01:00
|
|
|
/* Open for write for image files.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vips__open_image_write( const char *filename, gboolean temp )
|
|
|
|
{
|
|
|
|
int flags;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
flags = MODE_WRITE;
|
|
|
|
|
|
|
|
#ifdef _O_TEMPORARY
|
|
|
|
/* On Windows, setting O_TEMP gets the file automatically
|
|
|
|
* deleted on process exit, even if the processes crashes. See
|
|
|
|
* vips_image_rewind() for what we do to help on *nix.
|
|
|
|
*/
|
|
|
|
if( temp )
|
|
|
|
flags |= _O_TEMPORARY;
|
|
|
|
#endif /*_O_TEMPORARY*/
|
|
|
|
|
|
|
|
if( (fd = vips_tracked_open( filename, flags, 0666 )) < 0 ) {
|
|
|
|
vips_error_system( errno, "VipsImage",
|
|
|
|
_( "unable to write to \"%s\"" ),
|
|
|
|
filename );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( fd );
|
|
|
|
}
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
/* Predict the size of the header plus pixel data. Don't use off_t,
|
|
|
|
* it's sometimes only 32 bits (eg. on many windows build environments) and we
|
|
|
|
* want to always be 64 bit.
|
|
|
|
*/
|
2011-03-28 15:57:43 +02:00
|
|
|
static gint64
|
|
|
|
image_pixel_length( VipsImage *image )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
gint64 psize;
|
|
|
|
|
2011-02-26 15:46:38 +01:00
|
|
|
switch( image->Coding ) {
|
|
|
|
case VIPS_CODING_LABQ:
|
|
|
|
case VIPS_CODING_RAD:
|
|
|
|
case VIPS_CODING_NONE:
|
2011-03-23 15:25:34 +01:00
|
|
|
psize = VIPS_IMAGE_SIZEOF_IMAGE( image );
|
2009-08-16 17:00:08 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-02-26 15:46:38 +01:00
|
|
|
psize = image->Length;
|
2009-08-16 17:00:08 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-26 15:46:38 +01:00
|
|
|
return( psize + image->sizeof_header );
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
/* Copy 2 and 4 bytes, optionally swapping byte order.
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
|
|
|
void
|
2011-12-01 19:03:41 +01:00
|
|
|
vips__copy_4byte( int swap, unsigned char *to, unsigned char *from )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
2011-12-01 19:03:41 +01:00
|
|
|
guint32 *in = (guint32 *) from;
|
|
|
|
guint32 *out = (guint32 *) to;
|
2009-08-16 17:00:08 +02:00
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
if( swap )
|
|
|
|
*out = GUINT32_SWAP_LE_BE( *in );
|
2009-08-16 17:00:08 +02:00
|
|
|
else
|
2011-12-01 19:03:41 +01:00
|
|
|
*out = *in;
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-12-01 19:03:41 +01:00
|
|
|
vips__copy_2byte( gboolean swap, unsigned char *to, unsigned char *from )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
2011-12-01 19:03:41 +01:00
|
|
|
guint16 *in = (guint16 *) from;
|
|
|
|
guint16 *out = (guint16 *) to;
|
2009-08-16 17:00:08 +02:00
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
if( swap )
|
|
|
|
*out = GUINT16_SWAP_LE_BE( *in );
|
2009-08-16 17:00:08 +02:00
|
|
|
else
|
2011-12-01 19:03:41 +01:00
|
|
|
*out = *in;
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
2011-11-26 13:41:54 +01:00
|
|
|
guint32
|
|
|
|
vips__file_magic( const char *filename )
|
|
|
|
{
|
|
|
|
guint32 magic;
|
|
|
|
|
|
|
|
if( vips__get_bytes( filename, (unsigned char *) &magic, 4 ) &&
|
|
|
|
(magic == VIPS_MAGIC_INTEL ||
|
|
|
|
magic == VIPS_MAGIC_SPARC ) )
|
|
|
|
return( magic );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
/* offset, read, write functions.
|
|
|
|
*/
|
|
|
|
typedef struct _FieldIO {
|
|
|
|
glong offset;
|
2011-12-01 15:52:49 +01:00
|
|
|
int size;
|
2011-12-01 19:03:41 +01:00
|
|
|
void (*copy)( gboolean swap, unsigned char *to, unsigned char *from );
|
2009-08-16 17:00:08 +02:00
|
|
|
} FieldIO;
|
|
|
|
|
|
|
|
static FieldIO fields[] = {
|
2011-12-01 15:52:49 +01:00
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Xsize ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Ysize ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Bands ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Bbits ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, BandFmt ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Coding ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Type ), 4, vips__copy_4byte },
|
2012-03-02 13:54:50 +01:00
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Xres_float ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Yres_float ), 4, vips__copy_4byte },
|
2011-12-01 15:52:49 +01:00
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Length ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Compression ), 2, vips__copy_2byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Level ), 2, vips__copy_2byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Xoffset ), 4, vips__copy_4byte },
|
|
|
|
{ G_STRUCT_OFFSET( VipsImage, Yoffset ), 4, vips__copy_4byte }
|
2009-08-16 17:00:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__read_header_bytes( VipsImage *im, unsigned char *from )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
2011-12-01 19:03:41 +01:00
|
|
|
gboolean swap;
|
2009-08-16 17:00:08 +02:00
|
|
|
int i;
|
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
#ifdef SHOW_HEADER
|
|
|
|
printf( "vips__read_header_bytes: file bytes:\n" );
|
|
|
|
for( i = 0; i < im->sizeof_header; i++ )
|
|
|
|
printf( "%2d - 0x%02x\n", i, from[i] );
|
|
|
|
#endif /*SHOW_HEADER*/
|
|
|
|
|
|
|
|
/* The magic number is always written MSB first, we may need to swap.
|
|
|
|
*/
|
|
|
|
vips__copy_4byte( !vips_amiMSBfirst(),
|
|
|
|
(unsigned char *) &im->magic, from );
|
2011-12-01 15:52:49 +01:00
|
|
|
from += 4;
|
2011-02-26 15:46:38 +01:00
|
|
|
if( im->magic != VIPS_MAGIC_INTEL &&
|
|
|
|
im->magic != VIPS_MAGIC_SPARC ) {
|
|
|
|
vips_error( "VipsImage", _( "\"%s\" is not a VIPS image" ),
|
2009-08-16 17:00:08 +02:00
|
|
|
im->filename );
|
|
|
|
return( -1 );
|
|
|
|
}
|
2011-12-01 15:52:49 +01:00
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
/* We need to swap for other fields if the file byte order is
|
|
|
|
* different from ours.
|
|
|
|
*/
|
|
|
|
swap = vips_amiMSBfirst() != (im->magic == VIPS_MAGIC_SPARC);
|
2009-08-16 17:00:08 +02:00
|
|
|
|
2011-12-01 15:52:49 +01:00
|
|
|
for( i = 0; i < VIPS_NUMBER( fields ); i++ ) {
|
2011-12-01 19:03:41 +01:00
|
|
|
fields[i].copy( swap,
|
2009-08-16 17:00:08 +02:00
|
|
|
&G_STRUCT_MEMBER( unsigned char, im, fields[i].offset ),
|
2011-12-01 15:52:49 +01:00
|
|
|
from );
|
|
|
|
from += fields[i].size;
|
|
|
|
}
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
/* Set this ourselves ... bbits is deprecated in the file format.
|
|
|
|
*/
|
2011-03-02 15:13:05 +01:00
|
|
|
im->Bbits = vips_format_sizeof( im->BandFmt ) << 3;
|
2009-08-16 17:00:08 +02:00
|
|
|
|
2012-03-02 13:54:50 +01:00
|
|
|
/* We read xres/yres as floats to a staging area, then copy to double
|
|
|
|
* in the main fields.
|
|
|
|
*/
|
|
|
|
im->Xres = im->Xres_float;
|
|
|
|
im->Yres = im->Yres_float;
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__write_header_bytes( VipsImage *im, unsigned char *to )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
2011-12-01 19:03:41 +01:00
|
|
|
/* Swap if the byte order we are asked to write the header in is
|
|
|
|
* different from ours.
|
|
|
|
*/
|
|
|
|
gboolean swap = vips_amiMSBfirst() != (im->magic == VIPS_MAGIC_SPARC);
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
int i;
|
|
|
|
unsigned char *q;
|
|
|
|
|
2012-03-02 13:54:50 +01:00
|
|
|
/* We set xres/yres as floats in a staging area, then copy those
|
|
|
|
* smaller values to the file.
|
|
|
|
*/
|
|
|
|
im->Xres_float = im->Xres;
|
|
|
|
im->Yres_float = im->Yres;
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
/* Always write the magic number MSB first.
|
|
|
|
*/
|
2011-12-01 19:03:41 +01:00
|
|
|
vips__copy_4byte( !vips_amiMSBfirst(),
|
|
|
|
to, (unsigned char *) &im->magic );
|
2009-08-16 17:00:08 +02:00
|
|
|
q = to + 4;
|
|
|
|
|
2011-12-01 15:52:49 +01:00
|
|
|
for( i = 0; i < VIPS_NUMBER( fields ); i++ ) {
|
2011-12-01 19:03:41 +01:00
|
|
|
fields[i].copy( swap,
|
2011-12-01 15:52:49 +01:00
|
|
|
q,
|
2009-08-16 17:00:08 +02:00
|
|
|
&G_STRUCT_MEMBER( unsigned char, im,
|
|
|
|
fields[i].offset ) );
|
2011-12-01 15:52:49 +01:00
|
|
|
q += fields[i].size;
|
|
|
|
}
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
/* Pad spares with zeros.
|
|
|
|
*/
|
|
|
|
while( q - to < im->sizeof_header )
|
|
|
|
*q++ = 0;
|
|
|
|
|
2011-12-01 19:03:41 +01:00
|
|
|
#ifdef SHOW_HEADER
|
|
|
|
printf( "vips__write_header_bytes: file bytes:\n" );
|
|
|
|
for( i = 0; i < im->sizeof_header; i++ )
|
|
|
|
printf( "%2d - 0x%02x\n", i, to[i] );
|
|
|
|
#endif /*SHOW_HEADER*/
|
|
|
|
|
2009-08-16 17:00:08 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a chunk of an fd into memory. Add a '\0' at the end.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
read_chunk( int fd, gint64 offset, size_t length )
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
if( vips__seek( fd, offset ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
2011-03-25 15:01:12 +01:00
|
|
|
if( !(buf = vips_malloc( NULL, length + 1 )) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
|
|
|
if( read( fd, buf, length ) != (ssize_t) length ) {
|
2011-03-25 15:01:12 +01:00
|
|
|
vips_free( buf );
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s", _( "unable to read history" ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
buf[length] = '\0';
|
|
|
|
|
|
|
|
return( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Does it look like an image has an extension block?
|
|
|
|
*/
|
|
|
|
int
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__has_extension_block( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
gint64 psize;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
psize = image_pixel_length( im );
|
2009-08-16 17:00:08 +02:00
|
|
|
g_assert( im->file_length > 0 );
|
|
|
|
|
|
|
|
return( im->file_length - psize > 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read everything after the pixels into memory.
|
|
|
|
*/
|
|
|
|
void *
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__read_extension_block( VipsImage *im, int *size )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
gint64 psize;
|
|
|
|
void *buf;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
psize = image_pixel_length( im );
|
2009-08-16 17:00:08 +02:00
|
|
|
g_assert( im->file_length > 0 );
|
|
|
|
if( im->file_length - psize > 10 * 1024 * 1024 ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage",
|
2009-08-16 17:00:08 +02:00
|
|
|
"%s", _( "more than a 10 megabytes of XML? "
|
|
|
|
"sufferin' succotash!" ) );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
if( im->file_length - psize == 0 )
|
|
|
|
return( NULL );
|
|
|
|
if( !(buf = read_chunk( im->fd, psize, im->file_length - psize )) )
|
|
|
|
return( NULL );
|
|
|
|
if( size )
|
|
|
|
*size = im->file_length - psize;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-03-28 15:57:43 +02:00
|
|
|
printf( "vips__read_extension_block: read %d bytes from %s\n",
|
2009-08-16 17:00:08 +02:00
|
|
|
(int) (im->file_length - psize), im->filename );
|
|
|
|
printf( "data: \"%s\"\n", (char *) buf );
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
return( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read everything after the pixels into memory.
|
|
|
|
|
|
|
|
FIXME ... why can't we use xmlParserInputBufferCreateFd and parse
|
|
|
|
directly from the fd rather than having to read the stupid thing into
|
|
|
|
memory
|
|
|
|
|
|
|
|
the libxml API docs are impossible to decipher
|
|
|
|
|
|
|
|
*/
|
|
|
|
static xmlDoc *
|
2011-03-28 15:57:43 +02:00
|
|
|
read_xml( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
int size;
|
|
|
|
xmlDoc *doc;
|
|
|
|
xmlNode *node;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
if( !(buf = vips__read_extension_block( im, &size )) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
|
|
|
if( !(doc = xmlParseMemory( buf, size )) ) {
|
2011-03-25 15:01:12 +01:00
|
|
|
vips_free( buf );
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
|
|
|
}
|
2011-03-25 15:01:12 +01:00
|
|
|
vips_free( buf );
|
2009-08-16 17:00:08 +02:00
|
|
|
if( !(node = xmlDocGetRootElement( doc )) ||
|
|
|
|
!node->nsDef ||
|
2011-03-28 17:03:31 +02:00
|
|
|
!vips_isprefix( NAMESPACE, (char *) node->nsDef->href ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage",
|
2009-08-16 17:00:08 +02:00
|
|
|
"%s", _( "incorrect namespace in XML" ) );
|
|
|
|
xmlFreeDoc( doc );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf( "read_xml: namespace == %s\n", node->nsDef->href );
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
return( doc );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the first child node with a name.
|
|
|
|
*/
|
|
|
|
static xmlNode *
|
|
|
|
get_node( xmlNode *base, const char *name )
|
|
|
|
{
|
|
|
|
xmlNode *i;
|
|
|
|
|
|
|
|
for( i = base->children; i; i = i->next )
|
|
|
|
if( strcmp( (char *) i->name, name ) == 0 )
|
|
|
|
return( i );
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a string property to a buffer. TRUE for success.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_sprop( xmlNode *xnode, const char *name, char *buf, int sz )
|
|
|
|
{
|
|
|
|
char *value = (char *) xmlGetProp( xnode, (xmlChar *) name );
|
|
|
|
|
|
|
|
if( !value )
|
|
|
|
return( 0 );
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
vips_strncpy( buf, value, sz );
|
2011-02-26 15:46:38 +01:00
|
|
|
VIPS_FREEF( xmlFree, value );
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chop history into lines, add each one as a refstring.
|
|
|
|
*/
|
|
|
|
static void
|
2011-03-28 15:57:43 +02:00
|
|
|
set_history( VipsImage *im, char *history )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
GSList *history_list;
|
|
|
|
char *p, *q;
|
|
|
|
|
|
|
|
/* There can be history there already if we're rewinding.
|
|
|
|
*/
|
2011-03-28 17:03:31 +02:00
|
|
|
VIPS_FREEF( vips__gslist_gvalue_free, im->history_list );
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
history_list = NULL;
|
|
|
|
|
|
|
|
for( p = history; *p; p = q ) {
|
2009-10-12 18:16:25 +02:00
|
|
|
if( (q = strchr( p, '\n' )) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
*q = '\0';
|
2009-10-12 18:16:25 +02:00
|
|
|
q += 1;
|
|
|
|
}
|
2009-08-16 17:00:08 +02:00
|
|
|
else
|
|
|
|
q = p + strlen( p );
|
|
|
|
|
|
|
|
history_list = g_slist_prepend( history_list,
|
2011-03-28 17:03:31 +02:00
|
|
|
vips__gvalue_ref_string_new( p ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
im->history_list = g_slist_reverse( history_list );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load header fields.
|
|
|
|
*/
|
|
|
|
static int
|
2011-03-28 15:57:43 +02:00
|
|
|
rebuild_header_builtin( VipsImage *im, xmlNode *i )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
char name[256];
|
|
|
|
|
|
|
|
if( get_sprop( i, "name", name, 256 ) ) {
|
|
|
|
if( strcmp( name, "Hist" ) == 0 ) {
|
|
|
|
char *history;
|
|
|
|
|
|
|
|
/* Have to take (another) copy, since we need to free
|
|
|
|
* with xmlFree().
|
|
|
|
*/
|
|
|
|
history = (char *) xmlNodeGetContent( i );
|
|
|
|
set_history( im, history );
|
|
|
|
xmlFree( history );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load meta fields.
|
|
|
|
*/
|
|
|
|
static int
|
2011-03-28 15:57:43 +02:00
|
|
|
rebuild_header_meta( VipsImage *im, xmlNode *i )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
char name[256];
|
|
|
|
char type[256];
|
|
|
|
|
|
|
|
if( get_sprop( i, "name", name, 256 ) &&
|
|
|
|
get_sprop( i, "type", type, 256 ) ) {
|
|
|
|
GType gtype = g_type_from_name( type );
|
|
|
|
|
2011-03-27 23:03:38 +02:00
|
|
|
/* Can we convert from VIPS_SAVE_STRING to type?
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
|
|
|
if( gtype &&
|
|
|
|
g_value_type_transformable(
|
2011-03-27 23:03:38 +02:00
|
|
|
VIPS_TYPE_SAVE_STRING, gtype ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
char *content;
|
|
|
|
GValue save_value = { 0 };
|
|
|
|
GValue value = { 0 };
|
|
|
|
|
|
|
|
content = (char *) xmlNodeGetContent( i );
|
2011-03-27 23:03:38 +02:00
|
|
|
g_value_init( &save_value, VIPS_TYPE_SAVE_STRING );
|
2011-10-28 11:28:31 +02:00
|
|
|
vips_value_set_save_string( &save_value, content );
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFree( content );
|
|
|
|
|
|
|
|
g_value_init( &value, gtype );
|
|
|
|
if( !g_value_transform( &save_value, &value ) ) {
|
|
|
|
g_value_unset( &save_value );
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage",
|
2009-08-16 17:00:08 +02:00
|
|
|
"%s", _( "error transforming from "
|
|
|
|
"save format" ) );
|
|
|
|
return( -1 );
|
|
|
|
}
|
2011-09-21 15:50:32 +02:00
|
|
|
vips_image_set( im, name, &value );
|
2009-08-16 17:00:08 +02:00
|
|
|
g_value_unset( &save_value );
|
|
|
|
g_value_unset( &value );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static xmlDoc *
|
2011-03-28 15:57:43 +02:00
|
|
|
get_xml( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
2011-03-27 23:03:38 +02:00
|
|
|
if( vips_image_get_typeof( im, VIPS_META_XML ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlDoc *doc;
|
|
|
|
|
2011-03-27 23:03:38 +02:00
|
|
|
if( vips_image_get_area( im, VIPS_META_XML, (void *) &doc ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( NULL );
|
|
|
|
|
|
|
|
return( doc );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rebuild header fields that depend on stuff saved in xml.
|
|
|
|
*/
|
|
|
|
static int
|
2011-03-28 15:57:43 +02:00
|
|
|
rebuild_header( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
xmlDoc *doc;
|
|
|
|
|
|
|
|
if( (doc = get_xml( im )) ) {
|
|
|
|
xmlNode *root;
|
|
|
|
xmlNode *block;
|
|
|
|
|
|
|
|
if( !(root = xmlDocGetRootElement( doc )) )
|
|
|
|
return( -1 );
|
|
|
|
if( (block = get_node( root, "header" )) ) {
|
|
|
|
xmlNode *i;
|
|
|
|
|
|
|
|
for( i = block->children; i; i = i->next )
|
|
|
|
if( strcmp( (char *) i->name, "field" ) == 0 )
|
|
|
|
if( rebuild_header_builtin( im, i ) )
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
if( (block = get_node( root, "meta" )) ) {
|
|
|
|
xmlNode *i;
|
|
|
|
|
|
|
|
for( i = block->children; i; i = i->next )
|
|
|
|
if( strcmp( (char *) i->name, "field" ) == 0 )
|
|
|
|
if( rebuild_header_meta( im, i ) )
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
/* Called at the end of vips open ... get any XML after the pixel data
|
2009-08-16 17:00:08 +02:00
|
|
|
* and read it in.
|
|
|
|
*/
|
|
|
|
static int
|
2011-03-28 15:57:43 +02:00
|
|
|
readhist( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
/* Junk any old xml meta.
|
|
|
|
*/
|
2011-03-27 23:03:38 +02:00
|
|
|
if( vips_image_get_typeof( im, VIPS_META_XML ) )
|
|
|
|
vips_image_set_area( im, VIPS_META_XML, NULL, NULL );
|
2009-08-16 17:00:08 +02:00
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
if( vips__has_extension_block( im ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlDoc *doc;
|
|
|
|
|
|
|
|
if( !(doc = read_xml( im )) )
|
|
|
|
return( -1 );
|
2011-09-21 15:50:32 +02:00
|
|
|
vips_image_set_area( im, VIPS_META_XML,
|
|
|
|
(VipsCallbackFn) xmlFreeDoc, doc );
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( rebuild_header( im ) )
|
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_STRSIZE (32768) /* Max size of text for stack strings */
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_prop( xmlNode *node, const char *name, const char *fmt, ... )
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char value[MAX_STRSIZE];
|
|
|
|
|
|
|
|
va_start( ap, fmt );
|
2011-03-28 17:03:31 +02:00
|
|
|
(void) vips_vsnprintf( value, MAX_STRSIZE, fmt, ap );
|
2009-08-16 17:00:08 +02:00
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
if( !xmlSetProp( node, (xmlChar *) name, (xmlChar *) value ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", _( "unable to set property \"%s\" "
|
2009-08-16 17:00:08 +02:00
|
|
|
"to value \"%s\"." ),
|
|
|
|
name, value );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_sprop( xmlNode *node, const char *name, const char *value )
|
|
|
|
{
|
|
|
|
if( value && set_prop( node, name, "%s", value ) )
|
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_field( xmlNode *node,
|
|
|
|
const char *name, const char *type, const char *content )
|
|
|
|
{
|
|
|
|
xmlNode *field;
|
|
|
|
|
|
|
|
if( !(field = xmlNewChild( node, NULL, (xmlChar *) "field", NULL )) ||
|
|
|
|
set_sprop( field, "type", type ) ||
|
|
|
|
set_sprop( field, "name", name ) )
|
|
|
|
return( -1 );
|
|
|
|
xmlNodeSetContent( field, (xmlChar *) content );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
2011-03-27 23:03:38 +02:00
|
|
|
save_fields_meta( VipsMeta *meta, xmlNode *node )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
GType type = G_VALUE_TYPE( &meta->value );
|
|
|
|
|
2011-03-27 23:03:38 +02:00
|
|
|
/* If we can transform to VIPS_TYPE_SAVE_STRING and back, we can save
|
|
|
|
* and restore.
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
2011-03-27 23:03:38 +02:00
|
|
|
if( g_value_type_transformable( type, VIPS_TYPE_SAVE_STRING ) &&
|
|
|
|
g_value_type_transformable( VIPS_TYPE_SAVE_STRING, type ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
GValue save_value = { 0 };
|
|
|
|
|
2011-03-27 23:03:38 +02:00
|
|
|
g_value_init( &save_value, VIPS_TYPE_SAVE_STRING );
|
2009-08-16 17:00:08 +02:00
|
|
|
if( !g_value_transform( &meta->value, &save_value ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s",
|
2009-08-16 17:00:08 +02:00
|
|
|
_( "error transforming to save format" ) );
|
|
|
|
return( node );
|
|
|
|
}
|
|
|
|
if( set_field( node, meta->field, g_type_name( type ),
|
2011-10-28 11:28:31 +02:00
|
|
|
vips_value_get_save_string( &save_value ) ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
g_value_unset( &save_value );
|
|
|
|
return( node );
|
|
|
|
}
|
|
|
|
g_value_unset( &save_value );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2011-03-28 15:57:43 +02:00
|
|
|
save_fields( VipsImage *im, xmlNode *node )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
xmlNode *this;
|
|
|
|
|
|
|
|
/* Save header fields.
|
|
|
|
*/
|
|
|
|
if( !(this = xmlNewChild( node, NULL, (xmlChar *) "header", NULL )) )
|
|
|
|
return( -1 );
|
|
|
|
if( set_field( this, "Hist",
|
2011-03-27 23:03:38 +02:00
|
|
|
g_type_name( VIPS_TYPE_REF_STRING ),
|
|
|
|
vips_image_get_history( im ) ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
if( !(this = xmlNewChild( node, NULL, (xmlChar *) "meta", NULL )) )
|
|
|
|
return( -1 );
|
2011-03-27 23:03:38 +02:00
|
|
|
if( im->meta_traverse &&
|
2011-03-28 17:03:31 +02:00
|
|
|
vips_slist_map2( im->meta_traverse,
|
|
|
|
(VipsSListMap2Fn) save_fields_meta, this, NULL ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__write_extension_block( VipsImage *im, void *buf, int size )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
gint64 length;
|
|
|
|
gint64 psize;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
psize = image_pixel_length( im );
|
2011-03-28 17:03:31 +02:00
|
|
|
if( (length = vips_file_length( im->fd )) == -1 )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
if( length - psize < 0 ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s", _( "file has been truncated" ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
if( vips__ftruncate( im->fd, psize ) ||
|
|
|
|
vips__seek( im->fd, psize ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
2011-03-28 17:03:31 +02:00
|
|
|
if( vips__write( im->fd, buf, size ) )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-03-28 15:57:43 +02:00
|
|
|
printf( "vips__write_extension_block: written %d bytes of XML to %s\n",
|
2009-08-16 17:00:08 +02:00
|
|
|
size, im->filename );
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/* Return a string of n characters. Buffer is zapped each time!
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
rpt( char ch, int n )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
static char buf[200];
|
|
|
|
|
2011-03-27 23:03:38 +02:00
|
|
|
n = VIPS_MIN( 190, n );
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
for( i = 0; i < n; i++ )
|
|
|
|
buf[i] = ch;
|
|
|
|
buf[i] = '\0';
|
|
|
|
|
|
|
|
return( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a string of n spaces. Buffer is zapped each time!
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
spc( int n )
|
|
|
|
{
|
|
|
|
return( rpt( ' ', n ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
prettify_tree_sub( xmlNode *xnode, int indent )
|
|
|
|
{
|
|
|
|
xmlNode *txt;
|
|
|
|
xmlNode *next;
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
next = xnode->next;
|
|
|
|
|
|
|
|
/* According to memprof, this leaks :-( If you cut it out into
|
|
|
|
* a separate prog though, it's OK
|
|
|
|
|
|
|
|
FIXME ... how odd
|
|
|
|
|
|
|
|
*/
|
|
|
|
txt = xmlNewText( "\n" );
|
|
|
|
xmlAddPrevSibling( xnode, txt );
|
|
|
|
txt = xmlNewText( spc( indent ) );
|
|
|
|
xmlAddPrevSibling( xnode, txt );
|
|
|
|
|
|
|
|
if( xnode->children )
|
|
|
|
prettify_tree_sub( xnode->children, indent + 2 );
|
|
|
|
|
|
|
|
if( !next )
|
|
|
|
break;
|
|
|
|
|
|
|
|
xnode = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
txt = xmlNewText( spc( indent - 2 ) );
|
|
|
|
xmlAddNextSibling( xnode, txt );
|
|
|
|
txt = xmlNewText( "\n" );
|
|
|
|
xmlAddNextSibling( xnode, txt );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Walk an XML document, adding extra blank text elements so that it's easier
|
|
|
|
* to read. Don't call me twice!
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
prettify_tree( xmlDoc *xdoc )
|
|
|
|
{
|
|
|
|
xmlNode *xnode = xmlDocGetRootElement( xdoc );
|
|
|
|
|
|
|
|
prettify_tree_sub( xnode, 0 );
|
|
|
|
}
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
/* Append XML to output fd.
|
|
|
|
*/
|
|
|
|
int
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__writehist( VipsImage *im )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
xmlDoc *doc;
|
|
|
|
char namespace[256];
|
|
|
|
char *dump;
|
|
|
|
int dump_size;
|
|
|
|
|
2011-02-26 15:46:38 +01:00
|
|
|
assert( im->dtype == VIPS_IMAGE_OPENOUT );
|
2009-08-16 17:00:08 +02:00
|
|
|
assert( im->fd != -1 );
|
|
|
|
|
|
|
|
if( !(doc = xmlNewDoc( (xmlChar *) "1.0" )) )
|
|
|
|
return( -1 );
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
vips_snprintf( namespace, 256, "%s/%d.%d.%d",
|
2009-08-16 17:00:08 +02:00
|
|
|
NAMESPACE,
|
2011-03-28 18:18:06 +02:00
|
|
|
VIPS_MAJOR_VERSION, VIPS_MINOR_VERSION, VIPS_MICRO_VERSION );
|
2009-08-16 17:00:08 +02:00
|
|
|
if( !(doc->children = xmlNewDocNode( doc,
|
|
|
|
NULL, (xmlChar *) "root", NULL )) ||
|
|
|
|
set_sprop( doc->children, "xmlns", namespace ) ||
|
|
|
|
save_fields( im, doc->children ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s", _( "xml save error" ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFreeDoc( doc );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Bizarre double-cast stops a bogus gcc 4.1 compiler warning.
|
|
|
|
*/
|
|
|
|
xmlDocDumpMemory( doc, (xmlChar **) ((char *) &dump), &dump_size );
|
|
|
|
if( !dump ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s", _( "xml save error" ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFreeDoc( doc );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
if( vips__write_extension_block( im, dump, dump_size ) ) {
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFreeDoc( doc );
|
|
|
|
xmlFree( dump );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
{
|
|
|
|
char *dump2;
|
|
|
|
int dump_size2;
|
|
|
|
|
|
|
|
/* Uncomment to have XML pretty-printed. Can be annoying during
|
|
|
|
* debugging tho'
|
|
|
|
*/
|
|
|
|
prettify_tree( doc );
|
|
|
|
|
|
|
|
xmlDocDumpMemory( doc, (xmlChar **) &dump2, &dump_size2 );
|
|
|
|
if( !dump2 ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error( "VipsImage", "%s", _( "xml save error" ) );
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFreeDoc( doc );
|
|
|
|
xmlFree( dump );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2011-03-28 17:03:31 +02:00
|
|
|
printf( "vips__writehist: saved XML is: \"%s\"", dump2 );
|
2009-08-16 17:00:08 +02:00
|
|
|
xmlFree( dump2 );
|
|
|
|
}
|
|
|
|
#endif /*DEBUG*/
|
|
|
|
|
|
|
|
xmlFreeDoc( doc );
|
|
|
|
xmlFree( dump );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the filename, read the header, some sanity checking.
|
|
|
|
*/
|
2009-12-10 11:58:10 +01:00
|
|
|
int
|
2011-03-01 15:49:16 +01:00
|
|
|
vips_image_open_input( VipsImage *image )
|
2009-08-16 17:00:08 +02:00
|
|
|
{
|
|
|
|
/* We don't use im->sizeof_header here, but we know we're reading a
|
|
|
|
* VIPS image anyway.
|
|
|
|
*/
|
2011-03-28 18:18:06 +02:00
|
|
|
unsigned char header[VIPS_SIZEOF_HEADER];
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
gint64 psize;
|
|
|
|
gint64 rsize;
|
|
|
|
|
2011-02-26 15:46:38 +01:00
|
|
|
image->dtype = VIPS_IMAGE_OPENIN;
|
2011-03-23 19:28:48 +01:00
|
|
|
if( (image->fd = vips__open_image_read( image->filename )) == -1 )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
2011-03-28 18:18:06 +02:00
|
|
|
if( read( image->fd, header, VIPS_SIZEOF_HEADER ) !=
|
|
|
|
VIPS_SIZEOF_HEADER ||
|
2011-03-28 15:57:43 +02:00
|
|
|
vips__read_header_bytes( image, header ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_error_system( errno, "VipsImage",
|
2011-03-23 19:07:51 +01:00
|
|
|
_( "unable to read header for \"%s\"" ),
|
|
|
|
image->filename );
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Predict and check the file size.
|
|
|
|
*/
|
2011-03-28 15:57:43 +02:00
|
|
|
psize = image_pixel_length( image );
|
2011-03-28 17:03:31 +02:00
|
|
|
if( (rsize = vips_file_length( image->fd )) == -1 )
|
2009-08-16 17:00:08 +02:00
|
|
|
return( -1 );
|
|
|
|
image->file_length = rsize;
|
|
|
|
if( psize > rsize )
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_warn( "VipsImage",
|
2009-12-10 11:58:10 +01:00
|
|
|
_( "unable to read data for \"%s\", %s" ),
|
2009-08-16 17:00:08 +02:00
|
|
|
image->filename, _( "file has been truncated" ) );
|
|
|
|
|
2011-02-14 19:23:01 +01:00
|
|
|
/* Set demand style. This suits a disc file we read sequentially.
|
2009-08-16 17:00:08 +02:00
|
|
|
*/
|
2011-02-26 15:46:38 +01:00
|
|
|
image->dhint = VIPS_DEMAND_STYLE_THINSTRIP;
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
/* Set the history part of im descriptor. Don't return an error if this
|
|
|
|
* fails (due to eg. corrupted XML) because it's probably mostly
|
|
|
|
* harmless.
|
|
|
|
*/
|
2011-03-28 15:57:43 +02:00
|
|
|
if( readhist( image ) ) {
|
2011-03-24 12:21:24 +01:00
|
|
|
vips_warn( "VipsImage", _( "error reading XML: %s" ),
|
2011-02-26 15:46:38 +01:00
|
|
|
vips_error_buffer() );
|
|
|
|
vips_error_clear();
|
2009-08-16 17:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2011-03-23 19:07:51 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
vips_image_open_output( VipsImage *image )
|
|
|
|
{
|
|
|
|
if( image->fd == -1 ) {
|
|
|
|
/* Don't use im->sizeof_header here, but we know we're
|
|
|
|
* writing a VIPS image anyway.
|
|
|
|
*/
|
2011-03-28 18:18:06 +02:00
|
|
|
unsigned char header[VIPS_SIZEOF_HEADER];
|
2011-11-10 18:48:09 +01:00
|
|
|
|
2011-12-15 11:59:05 +01:00
|
|
|
if( (image->fd = vips__open_image_write( image->filename,
|
|
|
|
image->delete_on_close )) < 0 )
|
2011-03-23 19:07:51 +01:00
|
|
|
return( -1 );
|
|
|
|
|
2011-12-01 14:17:40 +01:00
|
|
|
/* We always write in native mode, so we must overwrite the
|
|
|
|
* magic we read from the file originally.
|
|
|
|
*/
|
|
|
|
image->magic = vips_amiMSBfirst() ?
|
|
|
|
VIPS_MAGIC_SPARC : VIPS_MAGIC_INTEL;
|
|
|
|
|
2011-03-28 15:57:43 +02:00
|
|
|
if( vips__write_header_bytes( image, header ) ||
|
2011-03-28 18:18:06 +02:00
|
|
|
vips__write( image->fd, header, VIPS_SIZEOF_HEADER ) )
|
2011-03-23 19:07:51 +01:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|