2000-07-08 21:51:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* z1parse.c */
|
|
|
|
/* */
|
|
|
|
/* Experimental Type 1 parser (body). */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996-2000 by */
|
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* The Type 1 parser is in charge of the following: */
|
|
|
|
/* */
|
|
|
|
/* - provide an implementation of a growing sequence of objects called */
|
|
|
|
/* a `Z1_Table' (used to build various tables needed by the loader). */
|
|
|
|
/* */
|
|
|
|
/* - opening .pfb and .pfa files to extract their top-level and private */
|
|
|
|
/* dictionaries. */
|
|
|
|
/* */
|
|
|
|
/* - read numbers, arrays & strings from any dictionary. */
|
|
|
|
/* */
|
|
|
|
/* See `z1load.c' to see how data is loaded from the font file. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-05-11 20:23:52 +02:00
|
|
|
#include <freetype/internal/ftdebug.h>
|
|
|
|
#include <freetype/internal/ftcalc.h>
|
|
|
|
#include <freetype/internal/ftobjs.h>
|
|
|
|
#include <freetype/internal/ftstream.h>
|
2000-06-07 06:48:12 +02:00
|
|
|
#include <freetype/internal/t1errors.h>
|
2000-07-08 02:41:13 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#ifdef FT_FLAT_COMPILE
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#include "z1parse.h"
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#else
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#include <type1z/z1parse.h>
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
#endif
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
#include <string.h> /* for strncmp() */
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* 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_z1parse
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** IMPLEMENTATION OF Z1_TABLE OBJECT *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* Z1_New_Table */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Initialises a Z1_Table. */
|
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The address of the target table. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* count :: The table size = the maximum number of elements. */
|
|
|
|
/* */
|
|
|
|
/* memory :: The memory object to use for all subsequent */
|
|
|
|
/* reallocations. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
2000-01-27 15:02:04 +01:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_New_Table( Z1_Table* table,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int count,
|
2000-01-27 15:02:04 +01:00
|
|
|
FT_Memory memory )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Error error;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
table->memory = memory;
|
|
|
|
if ( ALLOC_ARRAY( table->elements, count, FT_Byte* ) ||
|
|
|
|
ALLOC_ARRAY( table->lengths, count, FT_Byte* ) )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
table->max_elems = count;
|
2000-01-27 15:02:04 +01:00
|
|
|
table->init = 0xdeadbeef;
|
2000-07-08 21:51:42 +02:00
|
|
|
table->num_elems = 0;
|
|
|
|
table->block = 0;
|
|
|
|
table->capacity = 0;
|
|
|
|
table->cursor = 0;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
Exit:
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( error )
|
|
|
|
FREE( table->elements );
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
return error;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
static
|
|
|
|
void shift_elements( Z1_Table* table,
|
|
|
|
FT_Byte* old_base )
|
|
|
|
{
|
|
|
|
FT_Long delta = table->block - old_base;
|
|
|
|
FT_Byte** offset = table->elements;
|
|
|
|
FT_Byte** limit = offset + table->max_elems;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( delta )
|
|
|
|
for ( ; offset < limit; offset++ )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( offset[0] )
|
|
|
|
offset[0] += delta;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
static
|
|
|
|
FT_Error reallocate_t1_table( Z1_Table* table,
|
|
|
|
FT_Int new_size )
|
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
|
|
|
FT_Byte* old_base = table->block;
|
|
|
|
FT_Error error;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* reallocate the base block */
|
|
|
|
if ( REALLOC( table->block, table->capacity, new_size ) )
|
|
|
|
return error;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
table->capacity = new_size;
|
|
|
|
|
|
|
|
/* shift all offsets if necessary */
|
|
|
|
if ( old_base )
|
|
|
|
shift_elements( table, old_base );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
return T1_Err_Ok;
|
|
|
|
}
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* Z1_Add_Table */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Adds an object to a Z1_Table, possibly growing its memory block. */
|
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The target table. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* index :: The index of the object in the table. */
|
|
|
|
/* */
|
|
|
|
/* object :: The address of the object to copy in memory. */
|
|
|
|
/* */
|
|
|
|
/* length :: The length in bytes of the source object. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. An error is returned if a */
|
|
|
|
/* reallocation fails. */
|
|
|
|
/* */
|
2000-01-27 15:02:04 +01:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Add_Table( Z1_Table* table,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int index,
|
2000-01-27 15:02:04 +01:00
|
|
|
void* object,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int length )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( index < 0 || index > table->max_elems )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_ERROR(( "Z1_Add_Table: invalid index\n" ));
|
|
|
|
return T1_Err_Syntax_Error;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* grow the base block if needed */
|
|
|
|
if ( table->cursor + length > table->capacity )
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error;
|
|
|
|
FT_Int new_size = table->capacity;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
while ( new_size < table->cursor + length )
|
2000-01-27 15:02:04 +01:00
|
|
|
new_size += 1024;
|
|
|
|
|
|
|
|
error = reallocate_t1_table( table, new_size );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( error )
|
|
|
|
return error;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add the object to the base block and adjust offset */
|
2000-07-08 21:51:42 +02:00
|
|
|
table->elements[index] = table->block + table->cursor;
|
|
|
|
table->lengths [index] = length;
|
2000-01-27 15:02:04 +01:00
|
|
|
MEM_Copy( table->block + table->cursor, object, length );
|
|
|
|
|
|
|
|
table->cursor += length;
|
|
|
|
return T1_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-13 13:57:27 +01:00
|
|
|
#if 0
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* Z1_Done_Table */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Finalizes a Z1_Table (i.e., reallocate it to its current cursor). */
|
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The target table. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* This function does NOT release the heap's memory block. It is up */
|
|
|
|
/* to the caller to clean it, or reference it in its own structures. */
|
|
|
|
/* */
|
2000-01-27 15:02:04 +01:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_Done_Table( Z1_Table* table )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error;
|
|
|
|
FT_Byte* old_base;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* should never fail, as rec.cursor <= rec.size */
|
|
|
|
old_base = table->block;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !old_base )
|
2000-01-27 15:02:04 +01:00
|
|
|
return;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
(void)REALLOC( table->block, table->capacity, table->cursor );
|
|
|
|
table->capacity = table->cursor;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( old_base != table->block )
|
2000-01-27 15:02:04 +01:00
|
|
|
shift_elements( table, old_base );
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_Release_Table( Z1_Table* table )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( table->init == (FT_Long)0xDEADBEEF )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FREE( table->block );
|
|
|
|
FREE( table->elements );
|
|
|
|
FREE( table->lengths );
|
|
|
|
table->init = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** INPUT STREAM PARSER *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#define IS_Z1_WHITESPACE( c ) ( (c) == ' ' || (c) == '\t' )
|
|
|
|
#define IS_Z1_LINESPACE( c ) ( (c) == '\r' || (c) == '\n' )
|
|
|
|
|
|
|
|
#define IS_Z1_SPACE( c ) ( IS_Z1_WHITESPACE( c ) || IS_Z1_LINESPACE( c ) )
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
void Z1_Skip_Spaces( Z1_Parser* parser )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur = parser->cursor;
|
|
|
|
FT_Byte* limit = parser->limit;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
while ( cur < limit )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte c = *cur;
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( !IS_Z1_SPACE( c ) )
|
2000-05-24 23:12:02 +02:00
|
|
|
break;
|
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
parser->cursor = cur;
|
|
|
|
}
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_ToToken( Z1_Parser* parser,
|
|
|
|
Z1_Token_Rec* token )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur;
|
|
|
|
FT_Byte* limit;
|
|
|
|
FT_Byte starter, ender;
|
|
|
|
FT_Int embed;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
token->type = t1_token_none;
|
|
|
|
token->start = 0;
|
|
|
|
token->limit = 0;
|
|
|
|
|
|
|
|
/* first of all, skip space */
|
2000-07-08 21:51:42 +02:00
|
|
|
Z1_Skip_Spaces( parser );
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
cur = parser->cursor;
|
|
|
|
limit = parser->limit;
|
|
|
|
|
|
|
|
if ( cur < limit )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
switch ( *cur )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
|
|
|
/************* check for strings ***********************/
|
2000-07-08 21:51:42 +02:00
|
|
|
case '(':
|
|
|
|
token->type = t1_token_string;
|
|
|
|
ender = ')';
|
|
|
|
goto Lookup_Ender;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
/************* check for programs/array ****************/
|
2000-07-08 21:51:42 +02:00
|
|
|
case '{':
|
|
|
|
token->type = t1_token_array;
|
|
|
|
ender = '}';
|
|
|
|
goto Lookup_Ender;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
/************* check for table/array ******************/
|
2000-07-08 21:51:42 +02:00
|
|
|
case '[':
|
|
|
|
token->type = t1_token_array;
|
|
|
|
ender = ']';
|
|
|
|
|
|
|
|
Lookup_Ender:
|
|
|
|
embed = 1;
|
|
|
|
starter = *cur++;
|
|
|
|
token->start = cur;
|
|
|
|
while ( cur < limit )
|
|
|
|
{
|
|
|
|
if ( *cur == starter )
|
|
|
|
embed++;
|
|
|
|
else if ( *cur == ender )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
embed--;
|
|
|
|
if ( embed <= 0 )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
token->limit = cur++;
|
|
|
|
break;
|
2000-05-24 23:12:02 +02:00
|
|
|
}
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
break;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
/* **************** otherwise, it's any token **********/
|
2000-07-08 21:51:42 +02:00
|
|
|
default:
|
|
|
|
token->start = cur++;
|
|
|
|
token->type = t1_token_any;
|
|
|
|
while ( cur < limit && !IS_Z1_SPACE( *cur ) )
|
|
|
|
cur++;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
token->limit = cur;
|
2000-05-24 23:12:02 +02:00
|
|
|
}
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !token->limit )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
|
|
|
token->start = 0;
|
|
|
|
token->type = t1_token_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
parser->cursor = cur;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_ToTokenArray( Z1_Parser* parser,
|
|
|
|
Z1_Token_Rec* tokens,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt max_tokens,
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int* pnum_tokens )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Token_Rec master;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
*pnum_tokens = -1;
|
|
|
|
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_ToToken( parser, &master );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( master.type == t1_token_array )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* old_cursor = parser->cursor;
|
|
|
|
FT_Byte* old_limit = parser->limit;
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Token_Rec* cur = tokens;
|
|
|
|
Z1_Token_Rec* limit = cur + max_tokens;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
parser->cursor = master.start;
|
|
|
|
parser->limit = master.limit;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
while ( parser->cursor < parser->limit )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Token_Rec token;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_ToToken( parser, &token );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !token.type )
|
2000-05-24 23:12:02 +02:00
|
|
|
break;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur < limit )
|
2000-05-24 23:12:02 +02:00
|
|
|
*cur = token;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pnum_tokens = cur - tokens;
|
|
|
|
|
|
|
|
parser->cursor = old_cursor;
|
|
|
|
parser->limit = old_limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Long t1_toint( FT_Byte** cursor,
|
|
|
|
FT_Byte* limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Long result = 0;
|
|
|
|
FT_Byte* cur = *cursor;
|
|
|
|
FT_Byte c, d;
|
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
for ( ; cur < limit; cur++ )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
c = *cur;
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (FT_Byte)( c - '0' );
|
|
|
|
if ( d < 10 )
|
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '-' )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur < limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (FT_Byte)( cur[0] - '0' );
|
|
|
|
if ( d >= 10 )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
result = result * 10 + d;
|
2000-01-27 15:02:04 +01:00
|
|
|
cur++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
} while ( cur < limit );
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '-' )
|
2000-01-27 15:02:04 +01:00
|
|
|
result = -result;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
*cursor = cur;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Long t1_tofixed( FT_Byte** cursor,
|
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Long power_ten )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Byte* cur = *cursor;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Long num, divider, result;
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int sign = 0;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte d;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( cur >= limit )
|
|
|
|
return 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* first of all, read the integer part */
|
|
|
|
result = t1_toint( &cur, limit ) << 16;
|
|
|
|
num = 0;
|
|
|
|
divider = 1;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( result < 0 )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
sign = 1;
|
|
|
|
result = -result;
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* read decimal part, if any */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( *cur == '.' && cur + 1 < limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
cur++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (FT_Byte)( *cur - '0' );
|
|
|
|
if ( d >= 10 )
|
|
|
|
break;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( divider < 10000000L )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
num = num * 10 + d;
|
2000-01-27 15:02:04 +01:00
|
|
|
divider *= 10;
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
cur++;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
break;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* read exponent, if any */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur + 1 < limit && ( *cur == 'e' || *cur == 'E' ) )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
power_ten += t1_toint( &cur, limit );
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
Exit:
|
|
|
|
/* raise to power of ten if needed */
|
2000-07-08 21:51:42 +02:00
|
|
|
while ( power_ten > 0 )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
result = result * 10;
|
|
|
|
num = num * 10;
|
2000-01-27 15:02:04 +01:00
|
|
|
power_ten--;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
while ( power_ten < 0 )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
result = result / 10;
|
|
|
|
divider = divider * 10;
|
2000-01-27 15:02:04 +01:00
|
|
|
power_ten++;
|
|
|
|
}
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( num )
|
2000-01-27 15:02:04 +01:00
|
|
|
result += FT_DivFix( num, divider );
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( sign )
|
2000-01-27 15:02:04 +01:00
|
|
|
result = -result;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
*cursor = cur;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int t1_tocoordarray( FT_Byte** cursor,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Int max_coords,
|
|
|
|
FT_Short* coords )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur = *cursor;
|
|
|
|
FT_Int count = 0;
|
|
|
|
FT_Byte c, ender;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* check for the beginning of an array. If not, only one number will */
|
|
|
|
/* be read */
|
2000-01-27 15:02:04 +01:00
|
|
|
c = *cur;
|
|
|
|
ender = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '[' )
|
2000-01-27 15:02:04 +01:00
|
|
|
ender = ']';
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '{' )
|
2000-01-27 15:02:04 +01:00
|
|
|
ender = '}';
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
cur++;
|
|
|
|
|
|
|
|
/* now, read the coordinates */
|
2000-02-15 13:55:57 +01:00
|
|
|
for ( ; cur < limit; )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-02-15 13:55:57 +01:00
|
|
|
/* skip whitespace in front of data */
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
c = *cur;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c != ' ' && c != '\t' )
|
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-02-15 13:55:57 +01:00
|
|
|
cur++;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-02-15 13:55:57 +01:00
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( count >= max_coords || c == ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
coords[count] = (FT_Short)( t1_tofixed( &cur, limit, 0 ) >> 16 );
|
2000-01-27 15:02:04 +01:00
|
|
|
count++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
Exit:
|
|
|
|
*cursor = cur;
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int t1_tofixedarray( FT_Byte** cursor,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Int max_values,
|
|
|
|
FT_Fixed* values,
|
|
|
|
FT_Int power_ten )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur = *cursor;
|
|
|
|
FT_Int count = 0;
|
|
|
|
FT_Byte c, ender;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit ) goto Exit;
|
|
|
|
|
|
|
|
/* check for the beginning of an array. If not, only one number will */
|
|
|
|
/* be read */
|
2000-01-27 15:02:04 +01:00
|
|
|
c = *cur;
|
|
|
|
ender = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '[' )
|
2000-01-27 15:02:04 +01:00
|
|
|
ender = ']';
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == '{' )
|
2000-01-27 15:02:04 +01:00
|
|
|
ender = '}';
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
cur++;
|
|
|
|
|
|
|
|
/* now, read the values */
|
2000-02-15 13:55:57 +01:00
|
|
|
for ( ; cur < limit; )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-02-15 13:55:57 +01:00
|
|
|
/* skip whitespace in front of data */
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
c = *cur;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c != ' ' && c != '\t' )
|
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-02-15 13:55:57 +01:00
|
|
|
cur++;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-02-15 13:55:57 +01:00
|
|
|
}
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( count >= max_values || c == ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
values[count] = t1_tofixed( &cur, limit, power_ten );
|
2000-01-27 15:02:04 +01:00
|
|
|
count++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !ender )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
Exit:
|
|
|
|
*cursor = cur;
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-26 04:07:40 +02:00
|
|
|
#if 0
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_String* t1_tostring( FT_Byte** cursor,
|
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Memory memory )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur = *cursor;
|
|
|
|
FT_Int len = 0;
|
|
|
|
FT_Int count;
|
|
|
|
FT_String* result;
|
|
|
|
FT_Error error;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-02-15 13:55:57 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* XXX: some stupid fonts have a `Notice' or `Copyright' string */
|
|
|
|
/* that simply doesn't begin with an opening parenthesis, even */
|
|
|
|
/* though they have a closing one! E.g. "amuncial.pfb" */
|
|
|
|
/* */
|
|
|
|
/* We must deal with these ill-fated cases there. Note that */
|
|
|
|
/* these fonts didn't work with the old Type 1 driver as the */
|
|
|
|
/* notice/copyright was not recognized as a valid string token */
|
|
|
|
/* and made the old token parser commit errors. */
|
|
|
|
|
|
|
|
while ( cur < limit && ( *cur == ' ' || *cur == '\t' ) )
|
|
|
|
cur++;
|
|
|
|
if ( cur + 1 >= limit )
|
|
|
|
return 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( *cur == '(' )
|
|
|
|
cur++; /* skip the opening parenthesis, if there is one */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
*cursor = cur;
|
|
|
|
count = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* then, count its length */
|
|
|
|
for ( ; cur < limit; cur++ )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( *cur == '(' )
|
2000-01-27 15:02:04 +01:00
|
|
|
count++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
else if ( *cur == ')' )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
count--;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( count < 0 )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
len = cur - *cursor;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit || ALLOC( result, len + 1 ) )
|
|
|
|
return 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* now copy the string */
|
|
|
|
MEM_Copy( result, *cursor, len );
|
|
|
|
result[len] = '\0';
|
2000-02-15 13:55:57 +01:00
|
|
|
*cursor = cur;
|
2000-05-17 01:44:38 +02:00
|
|
|
return result;
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
int t1_tobool( FT_Byte** cursor,
|
|
|
|
FT_Byte* limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur = *cursor;
|
|
|
|
FT_Bool result = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
/* return 1 if we find `true', 0 otherwise */
|
|
|
|
if ( cur + 3 < limit &&
|
2000-01-27 15:02:04 +01:00
|
|
|
cur[0] == 't' &&
|
|
|
|
cur[1] == 'r' &&
|
|
|
|
cur[2] == 'u' &&
|
|
|
|
cur[3] == 'e' )
|
|
|
|
{
|
|
|
|
result = 1;
|
|
|
|
cur += 5;
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
else if ( cur + 4 < limit &&
|
2000-01-27 15:02:04 +01:00
|
|
|
cur[0] == 'f' &&
|
|
|
|
cur[1] == 'a' &&
|
|
|
|
cur[2] == 'l' &&
|
|
|
|
cur[3] == 's' &&
|
|
|
|
cur[4] == 'e' )
|
|
|
|
{
|
|
|
|
result = 0;
|
|
|
|
cur += 6;
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
*cursor = cur;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* Load a simple field (i.e. non-table) into the current list of objects */
|
2000-05-24 23:12:02 +02:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Load_Field( Z1_Parser* parser,
|
|
|
|
const Z1_Field_Rec* field,
|
2000-05-24 23:12:02 +02:00
|
|
|
void** objects,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt max_objects,
|
|
|
|
FT_ULong* pflags )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Token_Rec token;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* cur;
|
|
|
|
FT_Byte* limit;
|
|
|
|
FT_UInt count;
|
|
|
|
FT_UInt index;
|
|
|
|
FT_Error error;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_ToToken( parser, &token );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !token.type )
|
2000-05-24 23:12:02 +02:00
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
count = 1;
|
|
|
|
index = 0;
|
|
|
|
cur = token.start;
|
|
|
|
limit = token.limit;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( token.type == t1_token_array )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
|
|
|
/* if this is an array, and we have no blend, an error occurs */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( max_objects == 0 )
|
2000-05-24 23:12:02 +02:00
|
|
|
goto Fail;
|
2000-05-26 04:07:40 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
count = max_objects;
|
|
|
|
index = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( ; count > 0; count--, index++ )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Byte* q = (FT_Byte*)objects[index] + field->offset;
|
|
|
|
FT_Long val;
|
|
|
|
FT_String* string;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
switch ( field->type )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
case t1_field_bool:
|
|
|
|
val = t1_tobool( &cur, limit );
|
|
|
|
goto Store_Integer;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
case t1_field_fixed:
|
|
|
|
val = t1_tofixed( &cur, limit, 3 );
|
|
|
|
goto Store_Integer;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
case t1_field_integer:
|
|
|
|
val = t1_toint( &cur, limit );
|
2000-07-04 20:12:13 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
Store_Integer:
|
|
|
|
switch ( field->size )
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
*(FT_Byte*)q = (FT_Byte)val;
|
|
|
|
break;
|
2000-07-04 20:12:13 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
case 2:
|
|
|
|
*(FT_UShort*)q = (FT_UShort)val;
|
2000-05-24 23:12:02 +02:00
|
|
|
break;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
case 4:
|
|
|
|
*(FT_UInt32*)q = (FT_UInt32)val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* for 64-bit systems */
|
|
|
|
*(FT_Long*)q = val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case t1_field_string:
|
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
FT_UInt len = limit-cur;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( ALLOC( string, len + 1 ) )
|
|
|
|
goto Exit;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
MEM_Copy( string, cur, len );
|
2000-07-09 21:15:30 +02:00
|
|
|
string[len] = 0;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
*(FT_String**)q = string;
|
|
|
|
}
|
|
|
|
break;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
default:
|
|
|
|
/* an error occured */
|
|
|
|
goto Fail;
|
2000-05-24 23:12:02 +02:00
|
|
|
}
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( pflags )
|
2000-05-24 23:12:02 +02:00
|
|
|
*pflags |= 1L << field->flag_bit;
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
error = FT_Err_Ok;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
Fail:
|
|
|
|
error = T1_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define T1_MAX_TABLE_ELEMENTS 32
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Load_Field_Table( Z1_Parser* parser,
|
|
|
|
const Z1_Field_Rec* field,
|
2000-05-24 23:12:02 +02:00
|
|
|
void** objects,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt max_objects,
|
|
|
|
FT_ULong* pflags )
|
2000-05-24 23:12:02 +02:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
Z1_Token_Rec elements[T1_MAX_TABLE_ELEMENTS];
|
|
|
|
Z1_Token_Rec* token;
|
|
|
|
FT_Int num_elements;
|
|
|
|
FT_Error error = 0;
|
|
|
|
FT_Byte* old_cursor;
|
|
|
|
FT_Byte* old_limit;
|
|
|
|
Z1_Field_Rec fieldrec = *(Z1_Field_Rec*)field;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_ToTokenArray( parser, elements, 32, &num_elements );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( num_elements < 0 )
|
2000-05-24 23:12:02 +02:00
|
|
|
goto Fail;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( num_elements > T1_MAX_TABLE_ELEMENTS )
|
2000-05-24 23:12:02 +02:00
|
|
|
num_elements = T1_MAX_TABLE_ELEMENTS;
|
|
|
|
|
|
|
|
old_cursor = parser->cursor;
|
|
|
|
old_limit = parser->limit;
|
|
|
|
|
|
|
|
/* we store the elements count */
|
2000-07-08 21:51:42 +02:00
|
|
|
*(FT_Byte*)( (FT_Byte*)objects[0] + field->count_offset ) = num_elements;
|
2000-05-24 23:12:02 +02:00
|
|
|
|
|
|
|
/* we now load each element, adjusting the field.offset on each one */
|
|
|
|
token = elements;
|
|
|
|
for ( ; num_elements > 0; num_elements--, token++ )
|
|
|
|
{
|
|
|
|
parser->cursor = token->start;
|
|
|
|
parser->limit = token->limit;
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Load_Field( parser, &fieldrec, objects, max_objects, 0 );
|
2000-05-24 23:12:02 +02:00
|
|
|
fieldrec.offset += fieldrec.size;
|
|
|
|
}
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( pflags )
|
2000-05-24 23:12:02 +02:00
|
|
|
*pflags |= 1L << field->flag_bit;
|
2000-07-09 21:15:30 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
parser->cursor = old_cursor;
|
|
|
|
parser->limit = old_limit;
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-24 23:12:02 +02:00
|
|
|
Fail:
|
|
|
|
error = T1_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Long Z1_ToInt ( Z1_Parser* parser )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
return t1_toint( &parser->cursor, parser->limit );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Long Z1_ToFixed( Z1_Parser* parser,
|
|
|
|
FT_Int power_ten )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
return t1_tofixed( &parser->cursor, parser->limit, power_ten );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int Z1_ToCoordArray( Z1_Parser* parser,
|
|
|
|
FT_Int max_coords,
|
|
|
|
FT_Short* coords )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
return t1_tocoordarray( &parser->cursor, parser->limit,
|
|
|
|
max_coords, coords );
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int Z1_ToFixedArray( Z1_Parser* parser,
|
|
|
|
FT_Int max_values,
|
|
|
|
FT_Fixed* values,
|
|
|
|
FT_Int power_ten )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
return t1_tofixedarray( &parser->cursor, parser->limit,
|
|
|
|
max_values, values, power_ten );
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-26 04:07:40 +02:00
|
|
|
#if 0
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_String* Z1_ToString( Z1_Parser* parser )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
return t1_tostring( &parser->cursor, parser->limit, parser->memory );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Bool Z1_ToBool( Z1_Parser* parser )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
return t1_tobool( &parser->cursor, parser->limit );
|
|
|
|
}
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
#endif /* 0 */
|
2000-05-24 00:16:27 +02:00
|
|
|
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
static
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Error read_pfb_tag( FT_Stream stream,
|
|
|
|
FT_UShort* tag,
|
|
|
|
FT_Long* size )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( READ_UShort( *tag ) )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
if ( *tag == 0x8001 || *tag == 0x8002 )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_Long asize;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( READ_ULong( asize ) )
|
|
|
|
goto Exit;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* swap between big and little endianness */
|
2000-07-08 21:51:42 +02:00
|
|
|
*size = ( ( asize & 0xFF000000L ) >> 24 ) |
|
|
|
|
( ( asize & 0x00FF0000L ) >> 8 ) |
|
|
|
|
( ( asize & 0x0000FF00L ) << 8 ) |
|
|
|
|
( ( asize & 0x000000FFL ) << 24 );
|
2000-01-27 15:02:04 +01:00
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_New_Parser( Z1_Parser* parser,
|
2000-01-27 15:02:04 +01:00
|
|
|
FT_Stream stream,
|
|
|
|
FT_Memory memory )
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error;
|
|
|
|
FT_UShort tag;
|
|
|
|
FT_Long size;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->stream = stream;
|
|
|
|
parser->memory = memory;
|
|
|
|
parser->base_len = 0;
|
|
|
|
parser->base_dict = 0;
|
|
|
|
parser->private_len = 0;
|
|
|
|
parser->private_dict = 0;
|
|
|
|
parser->in_pfb = 0;
|
|
|
|
parser->in_memory = 0;
|
|
|
|
parser->single_block = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->cursor = 0;
|
|
|
|
parser->limit = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/******************************************************************/
|
|
|
|
/* */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* Here a short summary of what is going on: */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* When creating a new Type 1 parser, we try to locate and load */
|
|
|
|
/* the base dictionary if this is possible (i.e. for PFB */
|
|
|
|
/* files). Otherwise, we load the whole font into memory. */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* When `loading' the base dictionary, we only setup pointers */
|
|
|
|
/* in the case of a memory-based stream. Otherwise, we */
|
|
|
|
/* allocate and load the base dictionary in it. */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* parser->in_pfb is set if we are in a binary (".pfb") font. */
|
|
|
|
/* parser->in_memory is set if we have a memory stream. */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* try to compute the size of the base dictionary; */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* look for a Postscript binary file tag, i.e 0x8001 */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( FILE_Seek( 0L ) )
|
2000-01-27 15:02:04 +01:00
|
|
|
goto Exit;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
error = read_pfb_tag( stream, &tag, &size );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( tag != 0x8001 )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
/* assume that this is a PFA file for now; an error will */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* be produced later when more things are checked */
|
2000-07-08 21:51:42 +02:00
|
|
|
(void)FILE_Seek( 0L );
|
2000-01-27 15:02:04 +01:00
|
|
|
size = stream->size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
parser->in_pfb = 1;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* now, try to load `size' bytes of the `base' dictionary we */
|
|
|
|
/* found previously */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* if it is a memory-based resource, set up pointers */
|
2000-02-15 13:55:57 +01:00
|
|
|
if ( !stream->read )
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
parser->base_dict = (FT_Byte*)stream->base + stream->pos;
|
2000-02-15 13:55:57 +01:00
|
|
|
parser->base_len = size;
|
|
|
|
parser->in_memory = 1;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* check that the `size' field is valid */
|
|
|
|
if ( FILE_Skip( size ) )
|
|
|
|
goto Exit;
|
2000-02-15 13:55:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* read segment in memory */
|
|
|
|
if ( ALLOC( parser->base_dict, size ) ||
|
|
|
|
FILE_Read( parser->base_dict, size ) )
|
|
|
|
goto Exit;
|
|
|
|
parser->base_len = size;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* Now check font format; we must see `%!PS-AdobeFont-1' */
|
|
|
|
/* or `%!FontType' */
|
2000-02-15 13:55:57 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( size <= 16 ||
|
|
|
|
( strncmp( (const char*)parser->base_dict,
|
|
|
|
"%!PS-AdobeFont-1", 16 ) &&
|
|
|
|
strncmp( (const char*)parser->base_dict,
|
|
|
|
"%!FontType", 10 ) ) )
|
2000-02-15 13:55:57 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_TRACE2(( "[not a Type1 font]\n" ));
|
2000-05-12 12:19:41 +02:00
|
|
|
error = FT_Err_Unknown_File_Format;
|
2000-02-15 13:55:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parser->cursor = parser->base_dict;
|
|
|
|
parser->limit = parser->cursor + parser->base_len;
|
|
|
|
}
|
|
|
|
}
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
Exit:
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( error && !parser->in_memory )
|
2000-01-27 15:02:04 +01:00
|
|
|
FREE( parser->base_dict );
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_Done_Parser( Z1_Parser* parser )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* always free the private dictionary */
|
|
|
|
FREE( parser->private_dict );
|
|
|
|
|
|
|
|
/* free the base dictionary only when we have a disk stream */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( !parser->in_memory )
|
2000-01-27 15:02:04 +01:00
|
|
|
FREE( parser->base_dict );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* return the value of an hexadecimal digit */
|
|
|
|
static
|
|
|
|
int hexa_value( char c )
|
|
|
|
{
|
2000-01-27 15:02:04 +01:00
|
|
|
unsigned int d;
|
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (unsigned int)( c - '0' );
|
|
|
|
if ( d <= 9 )
|
|
|
|
return (int)d;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (unsigned int)( c - 'a' );
|
|
|
|
if ( d <= 5 )
|
|
|
|
return (int)( d + 10 );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
d = (unsigned int)( c - 'A' );
|
|
|
|
if ( d <= 5 )
|
|
|
|
return (int)( d + 10 );
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
void Z1_Decrypt( FT_Byte* buffer,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int length,
|
|
|
|
FT_UShort seed )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
while ( length > 0 )
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte plain;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
plain = ( *buffer ^ ( seed >> 8 ) );
|
|
|
|
seed = ( *buffer + seed ) * 52845 + 22719;
|
2000-01-27 15:02:04 +01:00
|
|
|
*buffer++ = plain;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_FUNC
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Get_Private_Dict( Z1_Parser* parser )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_Stream stream = parser->stream;
|
|
|
|
FT_Memory memory = parser->memory;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error = 0;
|
|
|
|
FT_Long size;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
if ( parser->in_pfb )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
/* in the case of the PFB format, the private dictionary can be */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* made of several segments. We thus first read the number of */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* segments to compute the total size of the private dictionary */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* then re-read them into memory. */
|
|
|
|
FT_Long start_pos = FILE_Pos();
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort tag;
|
|
|
|
FT_Long size;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
parser->private_len = 0;
|
2000-01-27 15:02:04 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
error = read_pfb_tag( stream, &tag, &size );
|
|
|
|
if ( error )
|
|
|
|
goto Fail;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( tag != 0x8002 )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->private_len += size;
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( FILE_Skip( size ) )
|
2000-01-27 15:02:04 +01:00
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that we have a private dictionary there */
|
|
|
|
/* and allocate private dictionary buffer */
|
|
|
|
if ( parser->private_len == 0 )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_ERROR(( "Z1_Get_Private_Dict:" ));
|
|
|
|
FT_ERROR(( " invalid private dictionary section\n" ));
|
2000-01-27 15:02:04 +01:00
|
|
|
error = T1_Err_Invalid_File_Format;
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( FILE_Seek( start_pos ) ||
|
|
|
|
ALLOC( parser->private_dict, parser->private_len ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
parser->private_len = 0;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
error = read_pfb_tag( stream, &tag, &size );
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( error || tag != 0x8002 )
|
|
|
|
{
|
|
|
|
error = FT_Err_Ok;
|
|
|
|
break;
|
|
|
|
}
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
if ( FILE_Read( parser->private_dict + parser->private_len, size ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
parser->private_len += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
/* we have already `loaded' the whole PFA font file into memory; */
|
|
|
|
/* if this is a memory resource, allocate a new block to hold */
|
|
|
|
/* the private dict. Otherwise, simply overwrite into the base */
|
|
|
|
/* dictionary block in the heap. */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* first of all, look at the `eexec' keyword */
|
2000-01-27 15:02:04 +01:00
|
|
|
FT_Byte* cur = parser->base_dict;
|
2000-05-17 01:44:38 +02:00
|
|
|
FT_Byte* limit = cur + parser->base_len;
|
2000-01-27 15:02:04 +01:00
|
|
|
FT_Byte c;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
c = cur[0];
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( c == 'e' && cur + 9 < limit ) /* 9 = 5 letters for `eexec' + */
|
|
|
|
/* newline + 4 chars */
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
if ( cur[1] == 'e' && cur[2] == 'x' &&
|
|
|
|
cur[3] == 'e' && cur[4] == 'c' )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
cur += 6; /* we skip the newling after the `eexec' */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* XXX: Some fonts use DOS-linefeeds, i.e. \r\n; we need to */
|
|
|
|
/* skip the extra \n if we find it */
|
|
|
|
if ( cur[0] == '\n' )
|
2000-04-14 13:22:17 +02:00
|
|
|
cur++;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cur++;
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur >= limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_ERROR(( "Z1_Get_Private_Dict:" ));
|
|
|
|
FT_ERROR(( " could not find `eexec' keyword\n" ));
|
A complete revision of FreeType 2's GNU makefiles (of the library):
Tons of unnecessary stuff have been removed; only the essential rules
have been retained.
The source files now depend on all header files in include/freetype,
include/freetype/config, and include/freetype/internal. This is not
optimal, I know, and I'll try to improve this, but it is better than
before (namely no dependencies on `internal').
FTDEBUG_SRC has been added (similar to FTSYS_SRC) -- I don't know
exactly whether this is really useful, but it doesn't harm.
There is now more documentation in the makefiles itself.
io-frames.html: Use of <th>, <code>, and <var> for better tagging.
Reactivating of FT_DEBUG_LEVEL_xxx macros.
Added a lot of #include directives to make `multi' builds possible -- note
that currently the modules cid, t1, and t1z have clashing structures and
functions which means that you can only use one of these three modules for a
multi build.
Added some missing function declarations to (local) header files.
Renamed some T1_Open_Face() to CID_Open_Face() in the cid module -- a lot
of other functions should be renamed also...
Replaced many FT_xxx stuff with T1_xxx in t1z driver -- this isn't finished
yet...
Fixed FT_Free() to allow a NULL pointer without an assertion (this has
always been a valid assumption in FreeType, at least in FT 1.x).
A lot of other, minor fixes (mostly documentation).
2000-06-11 05:46:57 +02:00
|
|
|
error = T1_Err_Invalid_File_Format;
|
2000-01-27 15:02:04 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* now determine where to write the _encrypted_ binary private */
|
|
|
|
/* dictionary. We overwrite the base dictionary for disk-based */
|
|
|
|
/* resources and allocate a new block otherwise */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
size = parser->base_len - ( cur - parser->base_dict);
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
if ( parser->in_memory )
|
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
/* note that we allocate one more byte to put a terminating `0' */
|
|
|
|
if ( ALLOC( parser->private_dict, size + 1 ) )
|
|
|
|
goto Fail;
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->private_len = size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-05-17 01:44:38 +02:00
|
|
|
parser->single_block = 1;
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->private_dict = parser->base_dict;
|
|
|
|
parser->private_len = size;
|
|
|
|
parser->base_dict = 0;
|
|
|
|
parser->base_len = 0;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/* now determine whether the private dictionary is encoded in binary */
|
|
|
|
/* or hexadecimal ASCII format -- decode it accordingly */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
/* we need to access the next 4 bytes (after the final \r following */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* the `eexec' keyword); if they all are hexadecimal digits, then */
|
|
|
|
/* we have a case of ASCII storage */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
if ( ( hexa_value( cur[0] ) | hexa_value( cur[1] ) |
|
|
|
|
hexa_value( cur[2] ) | hexa_value( cur[3] ) ) < 0 )
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
/* binary encoding -- `simply' copy the private dict */
|
|
|
|
MEM_Copy( parser->private_dict, cur, size );
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
else
|
2000-05-17 01:44:38 +02:00
|
|
|
{
|
2000-07-08 21:51:42 +02:00
|
|
|
/* ASCII hexadecimal encoding */
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* write;
|
|
|
|
FT_Int count;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
write = parser->private_dict;
|
|
|
|
count = 0;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
for ( ;cur < limit; cur++ )
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
int hex1;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* check for newline */
|
2000-07-08 21:51:42 +02:00
|
|
|
if ( cur[0] == '\r' || cur[0] == '\n' )
|
2000-01-27 15:02:04 +01:00
|
|
|
continue;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* exit if we have a non-hexadecimal digit that isn't a newline */
|
2000-07-08 21:51:42 +02:00
|
|
|
hex1 = hexa_value( cur[0] );
|
|
|
|
if ( hex1 < 0 || cur + 1 >= limit )
|
2000-01-27 15:02:04 +01:00
|
|
|
break;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* otherwise, store byte */
|
2000-07-08 21:51:42 +02:00
|
|
|
*write++ = ( hex1 << 4 ) | hexa_value( cur[1] );
|
2000-01-27 15:02:04 +01:00
|
|
|
count++;
|
|
|
|
cur++;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* put a safeguard */
|
|
|
|
parser->private_len = write - parser->private_dict;
|
|
|
|
*write++ = 0;
|
|
|
|
}
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* we now decrypt the encoded binary private dictionary */
|
2000-06-28 01:21:51 +02:00
|
|
|
Z1_Decrypt( parser->private_dict, parser->private_len, 55665 );
|
2000-01-27 15:02:04 +01:00
|
|
|
parser->cursor = parser->private_dict;
|
|
|
|
parser->limit = parser->cursor + parser->private_len;
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
/* END */
|