1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
/* utils.c: useful utility functions
Copyright (c) 2002-2007 Philip Kendall
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include <config.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#ifndef WIN32
#include <sys/utsname.h>
#endif
#include <libspectrum.h>
#include "compat.h"
#include "utils.h"
extern char *progname;
/* The minimum version of libspectrum we need */
static const char *LIBSPECTRUM_MIN_VERSION = "0.2.0";
int
init_libspectrum( void )
{
if( libspectrum_check_version( LIBSPECTRUM_MIN_VERSION ) ) {
if( libspectrum_init() ) return 1;
} else {
fprintf( stderr, "libspectrum version %s found, but %s required",
libspectrum_version(), LIBSPECTRUM_MIN_VERSION );
return 1;
}
return 0;
}
int
get_creator( libspectrum_creator **creator, const char *program )
{
char *custom;
unsigned int version[4] = { 0, 0, 0, 0 };
libspectrum_error error;
size_t i;
#ifndef WIN32
char osname[ 256 ];
int sys_error;
sys_error = compat_osname( osname, sizeof( osname ) );
if( sys_error ) return 1;
#endif
*creator = libspectrum_creator_alloc();
error = libspectrum_creator_set_program( *creator, program );
if( error ) { libspectrum_creator_free( *creator ); return error; }
sscanf( VERSION, "%u.%u.%u.%u",
&version[0], &version[1], &version[2], &version[3] );
for( i=0; i<4; i++ ) if( version[i] > 0xff ) version[i] = 0xff;
error = libspectrum_creator_set_major( *creator,
version[0] * 0x100 + version[1] );
if( error ) { libspectrum_creator_free( *creator ); return error; }
error = libspectrum_creator_set_minor( *creator,
version[2] * 0x100 + version[3] );
if( error ) { libspectrum_creator_free( *creator ); return error; }
custom = malloc( 256 );
if( !custom ) {
fprintf( stderr, "%s: out of memory at %s:%d\n", progname,
__FILE__, __LINE__ );
libspectrum_creator_free( *creator );
return 1;
}
#ifdef WIN32
snprintf( custom, 256, "libspectrum: %s\nsystem: windows\n",
libspectrum_version() );
#else
snprintf( custom, 256, "libspectrum: %s\nuname: %s\n",
libspectrum_version(),
osname );
#endif
error = libspectrum_creator_set_custom( *creator,
(libspectrum_byte*)custom,
strlen( custom ) );
if( error ) {
free( custom ); libspectrum_creator_free( *creator );
return error;
}
return 0;
}
int
read_file( const char *filename, unsigned char **buffer, size_t *length )
{
int fd; struct stat file_info;
ssize_t bytes;
if( ( fd = open( filename, O_RDONLY | O_BINARY ) ) == -1 ) {
fprintf( stderr, "%s: couldn't open `%s': %s\n", progname, filename,
strerror( errno ) );
return 1;
}
if( fstat( fd, &file_info) ) {
fprintf( stderr, "%s: couldn't stat `%s': %s\n", progname, filename,
strerror( errno ) );
close(fd);
return 1;
}
*length = file_info.st_size;
*buffer = malloc( *length );
if( !*buffer ) {
fprintf( stderr, "%s: out of memory allocating %lu bytes\n", progname,
(unsigned long)*length );
close(fd);
return 1;
}
bytes = read( fd, *buffer, *length );
if( bytes == -1 ) {
fprintf( stderr, "%s: error reading from `%s': %s\n", progname, filename,
strerror( errno ) );
free( *buffer );
close(fd);
return 1;
} else if( bytes < *length ) {
fprintf( stderr, "%s: could read only %lu out of %lu bytes from `%s'\n",
progname, (unsigned long)bytes, (unsigned long)*length, filename );
free( *buffer );
close(fd);
return 1;
}
if( close(fd) ) {
fprintf( stderr, "%s: couldn't close `%s': %s\n", progname, filename,
strerror( errno ) );
free( *buffer );
return 1;
}
return 0;
}
int
write_file( const char *filename, const void *buffer, size_t length )
{
FILE *f;
size_t bytes;
f = fopen( filename, "wb" );
if( !f ) {
fprintf( stderr, "%s: couldn't open `%s': %s\n", progname, filename,
strerror( errno ) );
return 1;
}
bytes = fwrite( buffer, 1, length, f );
if( bytes != length ) {
fprintf( stderr, "%s: wrote only %lu of %lu bytes to `%s'\n", progname,
(unsigned long)bytes, (unsigned long)length, filename );
fclose( f );
return 1;
}
if( fclose( f ) ) {
fprintf( stderr, "%s: error closing `%s': %s\n", progname, filename,
strerror( errno ) );
return 1;
}
return 0;
}
|