2000-06-02 16:30:38 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-06-02 23:31:32 +02:00
|
|
|
/* ftsystem.c */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* */
|
|
|
|
/* ANSI-specific FreeType low-level system interface (body). */
|
|
|
|
/* */
|
2006-02-17 09:07:09 +01:00
|
|
|
/* Copyright 1996-2001, 2002, 2006 by */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-05 07:26:15 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* This file contains the default interface used by FreeType to access */
|
|
|
|
/* low-level, i.e. memory management, i/o access as well as thread */
|
|
|
|
/* synchronisation. It can be replaced by user-specific routines if */
|
|
|
|
/* necessary. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_CONFIG_CONFIG_H
|
|
|
|
#include FT_INTERNAL_DEBUG_H
|
* builds/unix/ftsystem.c, include/freetype/config/ftheader.h,
include/freetype/internal/services/svotval.h,
include/freetype/internal/services/svpfr.h,
src/base/ftsystem.c, src/bdf/bdfdrivr.c, src/cache/ftcbasic.c,
src/cff/cffcmap.c, src/gzip/ftgzip.c, src/lzw/ftlzw.c,
src/lzw/ftlzw2.c, src/psaux/t1cmap.c, src/sfnt/ttbdf.c,
src/smooth/ftgrays.c:
solved -Wmissing-prototypes warnings with GCC
2006-02-25 15:53:02 +01:00
|
|
|
#include FT_INTERNAL_STREAM_H
|
2000-12-08 17:17:16 +01:00
|
|
|
#include FT_SYSTEM_H
|
|
|
|
#include FT_ERRORS_H
|
|
|
|
#include FT_TYPES_H
|
2000-02-29 18:11:53 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* MEMORY MANAGEMENT INTERFACE */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
2000-06-29 05:14:25 +02:00
|
|
|
/* It is not necessary to do any error checking for the */
|
|
|
|
/* allocation-related functions. This will be done by the higher level */
|
2006-02-17 09:07:09 +01:00
|
|
|
/* routines like ft_mem_alloc() or ft_mem_realloc(). */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ft_alloc */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The memory allocation function. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* memory :: A pointer to the memory object. */
|
2000-07-20 08:57:41 +02:00
|
|
|
/* */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* size :: The requested size in bytes. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
2000-11-06 00:41:08 +01:00
|
|
|
/* The address of newly allocated block. */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_CALLBACK_DEF( void* )
|
2001-06-27 11:26:46 +02:00
|
|
|
ft_alloc( FT_Memory memory,
|
|
|
|
long size )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
2000-07-04 20:12:13 +02:00
|
|
|
FT_UNUSED( memory );
|
2000-02-29 18:11:53 +01:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
return malloc( size );
|
|
|
|
}
|
2000-02-29 18:11:53 +01:00
|
|
|
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ft_realloc */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The memory reallocation function. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* memory :: A pointer to the memory object. */
|
|
|
|
/* */
|
|
|
|
/* cur_size :: The current size of the allocated memory block. */
|
|
|
|
/* */
|
|
|
|
/* new_size :: The newly requested size in bytes. */
|
|
|
|
/* */
|
|
|
|
/* block :: The current address of the block in memory. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* The address of the reallocated memory block. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_CALLBACK_DEF( void* )
|
2001-06-27 11:26:46 +02:00
|
|
|
ft_realloc( FT_Memory memory,
|
|
|
|
long cur_size,
|
|
|
|
long new_size,
|
|
|
|
void* block )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
2000-07-04 20:12:13 +02:00
|
|
|
FT_UNUSED( memory );
|
|
|
|
FT_UNUSED( cur_size );
|
2000-02-29 18:11:53 +01:00
|
|
|
|
|
|
|
return realloc( block, new_size );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ft_free */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The memory release function. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* memory :: A pointer to the memory object. */
|
|
|
|
/* */
|
|
|
|
/* block :: The address of block in memory to be freed. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_CALLBACK_DEF( void )
|
2001-06-27 11:26:46 +02:00
|
|
|
ft_free( FT_Memory memory,
|
|
|
|
void* block )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
2000-07-04 20:12:13 +02:00
|
|
|
FT_UNUSED( memory );
|
2000-06-02 16:30:38 +02:00
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
free( block );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* RESOURCE MANAGEMENT INTERFACE */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
2000-02-29 18:11:53 +01:00
|
|
|
|
|
|
|
|
2000-06-02 23:31:32 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* The macro FT_COMPONENT is used in trace mode. It is an implicit */
|
|
|
|
/* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
|
|
|
|
/* messages during execution. */
|
|
|
|
/* */
|
|
|
|
#undef FT_COMPONENT
|
|
|
|
#define FT_COMPONENT trace_io
|
|
|
|
|
|
|
|
/* We use the macro STREAM_FILE for convenience to extract the */
|
|
|
|
/* system-specific stream handle from a given FreeType stream object */
|
2000-06-02 16:30:38 +02:00
|
|
|
#define STREAM_FILE( stream ) ( (FILE*)stream->descriptor.pointer )
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
2002-02-24 06:26:57 +01:00
|
|
|
/* ft_ansi_stream_close */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The function to close a stream. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* stream :: A pointer to the stream object. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_CALLBACK_DEF( void )
|
2002-02-24 06:26:57 +01:00
|
|
|
ft_ansi_stream_close( FT_Stream stream )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
2000-06-02 16:30:38 +02:00
|
|
|
fclose( STREAM_FILE( stream ) );
|
2000-06-02 23:31:32 +02:00
|
|
|
|
|
|
|
stream->descriptor.pointer = NULL;
|
|
|
|
stream->size = 0;
|
|
|
|
stream->base = 0;
|
2000-02-29 18:11:53 +01:00
|
|
|
}
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
2002-02-24 06:26:57 +01:00
|
|
|
/* ft_ansi_stream_io */
|
2000-06-02 16:30:38 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The function to open a stream. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* stream :: A pointer to the stream object. */
|
|
|
|
/* */
|
|
|
|
/* offset :: The position in the data stream to start reading. */
|
|
|
|
/* */
|
|
|
|
/* buffer :: The address of buffer to store the read data. */
|
|
|
|
/* */
|
|
|
|
/* count :: The number of bytes to read from the stream. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* The number of bytes actually read. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_CALLBACK_DEF( unsigned long )
|
2002-02-24 06:26:57 +01:00
|
|
|
ft_ansi_stream_io( FT_Stream stream,
|
|
|
|
unsigned long offset,
|
|
|
|
unsigned char* buffer,
|
|
|
|
unsigned long count )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
|
|
|
FILE* file;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
|
|
|
|
file = STREAM_FILE( stream );
|
2000-02-29 18:11:53 +01:00
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
fseek( file, offset, SEEK_SET );
|
2000-06-02 16:30:38 +02:00
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
return (unsigned long)fread( buffer, 1, count, file );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
* builds/unix/ftsystem.c, include/freetype/config/ftheader.h,
include/freetype/internal/services/svotval.h,
include/freetype/internal/services/svpfr.h,
src/base/ftsystem.c, src/bdf/bdfdrivr.c, src/cache/ftcbasic.c,
src/cff/cffcmap.c, src/gzip/ftgzip.c, src/lzw/ftlzw.c,
src/lzw/ftlzw2.c, src/psaux/t1cmap.c, src/sfnt/ttbdf.c,
src/smooth/ftgrays.c:
solved -Wmissing-prototypes warnings with GCC
2006-02-25 15:53:02 +01:00
|
|
|
/* documentation is in ftstream.h */
|
2000-11-07 18:21:11 +01:00
|
|
|
|
* src/base/ftcalc.c (FT_MulTo64): Commented out.
* include/freetype/internal/ftcalc.h (FT_SqrtFixed), src/base/ftcalc.c
(FT_SqrtFixed), include/freetype/internal/ftdebug.h
(FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message, FT_Panic),
src/base/ftdebug.c (FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message,
FT_Panic), include/freetype/internal/ftobjs.h (FT_New_Memory,
FT_Done_Memory), include/freetype/internal/ftstream.h
(FT_Stream_Open), src/base/ftsystem.c (FT_New_Memory, FT_Done_Memory,
FT_Stream_Open): s/FT_EXPORT/FT_BASE/.
* builds/exports.mk: Manually add TT_New_Context to EXPORTS_LIST too.
2005-11-17 02:53:07 +01:00
|
|
|
FT_BASE_DEF( FT_Error )
|
2002-02-24 06:26:57 +01:00
|
|
|
FT_Stream_Open( FT_Stream stream,
|
|
|
|
const char* filepathname )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
|
|
|
FILE* file;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
|
2002-02-24 06:26:57 +01:00
|
|
|
if ( !stream )
|
2000-06-29 05:14:25 +02:00
|
|
|
return FT_Err_Invalid_Stream_Handle;
|
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
file = fopen( filepathname, "rb" );
|
2000-06-02 16:30:38 +02:00
|
|
|
if ( !file )
|
2000-06-02 23:31:32 +02:00
|
|
|
{
|
2002-02-24 06:26:57 +01:00
|
|
|
FT_ERROR(( "FT_Stream_Open:" ));
|
2000-06-02 23:31:32 +02:00
|
|
|
FT_ERROR(( " could not open `%s'\n", filepathname ));
|
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
return FT_Err_Cannot_Open_Resource;
|
2000-06-02 23:31:32 +02:00
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
fseek( file, 0, SEEK_END );
|
2002-02-24 06:26:57 +01:00
|
|
|
stream->size = ftell( file );
|
2000-02-29 18:11:53 +01:00
|
|
|
fseek( file, 0, SEEK_SET );
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2002-02-24 06:26:57 +01:00
|
|
|
stream->descriptor.pointer = file;
|
|
|
|
stream->pathname.pointer = (char*)filepathname;
|
|
|
|
stream->pos = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2002-02-24 06:26:57 +01:00
|
|
|
stream->read = ft_ansi_stream_io;
|
|
|
|
stream->close = ft_ansi_stream_close;
|
2000-02-29 18:11:53 +01:00
|
|
|
|
2002-02-24 06:26:57 +01:00
|
|
|
FT_TRACE1(( "FT_Stream_Open:" ));
|
2000-06-02 23:31:32 +02:00
|
|
|
FT_TRACE1(( " opened `%s' (%d bytes) successfully\n",
|
2002-02-24 06:26:57 +01:00
|
|
|
filepathname, stream->size ));
|
2000-06-02 23:31:32 +02:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
return FT_Err_Ok;
|
2000-02-29 18:11:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 10:32:21 +02:00
|
|
|
#ifdef FT_DEBUG_MEMORY
|
|
|
|
|
|
|
|
extern FT_Int
|
|
|
|
ft_mem_debug_init( FT_Memory memory );
|
2002-02-24 06:26:57 +01:00
|
|
|
|
2001-10-22 10:32:21 +02:00
|
|
|
extern void
|
|
|
|
ft_mem_debug_done( FT_Memory memory );
|
2002-02-24 06:26:57 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-11-07 18:21:11 +01:00
|
|
|
/* documentation is in ftobjs.h */
|
|
|
|
|
* src/base/ftcalc.c (FT_MulTo64): Commented out.
* include/freetype/internal/ftcalc.h (FT_SqrtFixed), src/base/ftcalc.c
(FT_SqrtFixed), include/freetype/internal/ftdebug.h
(FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message, FT_Panic),
src/base/ftdebug.c (FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message,
FT_Panic), include/freetype/internal/ftobjs.h (FT_New_Memory,
FT_Done_Memory), include/freetype/internal/ftstream.h
(FT_Stream_Open), src/base/ftsystem.c (FT_New_Memory, FT_Done_Memory,
FT_Stream_Open): s/FT_EXPORT/FT_BASE/.
* builds/exports.mk: Manually add TT_New_Context to EXPORTS_LIST too.
2005-11-17 02:53:07 +01:00
|
|
|
FT_BASE_DEF( FT_Memory )
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_New_Memory( void )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
|
|
|
|
memory = (FT_Memory)malloc( sizeof ( *memory ) );
|
|
|
|
if ( memory )
|
2000-02-29 18:11:53 +01:00
|
|
|
{
|
|
|
|
memory->user = 0;
|
|
|
|
memory->alloc = ft_alloc;
|
|
|
|
memory->realloc = ft_realloc;
|
|
|
|
memory->free = ft_free;
|
2001-10-24 09:32:55 +02:00
|
|
|
#ifdef FT_DEBUG_MEMORY
|
|
|
|
ft_mem_debug_init( memory );
|
2002-02-24 06:26:57 +01:00
|
|
|
#endif
|
2000-02-29 18:11:53 +01:00
|
|
|
}
|
2000-06-02 16:30:38 +02:00
|
|
|
|
2000-02-29 18:11:53 +01:00
|
|
|
return memory;
|
|
|
|
}
|
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
|
2000-11-07 18:21:11 +01:00
|
|
|
/* documentation is in ftobjs.h */
|
|
|
|
|
* src/base/ftcalc.c (FT_MulTo64): Commented out.
* include/freetype/internal/ftcalc.h (FT_SqrtFixed), src/base/ftcalc.c
(FT_SqrtFixed), include/freetype/internal/ftdebug.h
(FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message, FT_Panic),
src/base/ftdebug.c (FT_Trace_Get_Count, FT_Trace_Get_Name, FT_Message,
FT_Panic), include/freetype/internal/ftobjs.h (FT_New_Memory,
FT_Done_Memory), include/freetype/internal/ftstream.h
(FT_Stream_Open), src/base/ftsystem.c (FT_New_Memory, FT_Done_Memory,
FT_Stream_Open): s/FT_EXPORT/FT_BASE/.
* builds/exports.mk: Manually add TT_New_Context to EXPORTS_LIST too.
2005-11-17 02:53:07 +01:00
|
|
|
FT_BASE_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
FT_Done_Memory( FT_Memory memory )
|
2000-07-27 23:40:22 +02:00
|
|
|
{
|
2001-10-22 10:32:21 +02:00
|
|
|
#ifdef FT_DEBUG_MEMORY
|
|
|
|
ft_mem_debug_done( memory );
|
2002-02-24 06:26:57 +01:00
|
|
|
#endif
|
2000-12-05 22:32:02 +01:00
|
|
|
memory->free( memory, memory );
|
2000-07-27 23:40:22 +02:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:29:08 +02:00
|
|
|
|
2000-06-02 16:30:38 +02:00
|
|
|
/* END */
|