2000-12-08 03:42:29 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* cffparse.c */
|
|
|
|
/* */
|
|
|
|
/* CFF token stream parser (body) */
|
|
|
|
/* */
|
2009-03-11 11:20:51 +01:00
|
|
|
/* Copyright 1996-2001, 2002, 2003, 2004, 2007, 2008, 2009 by */
|
2000-12-08 03:42:29 +01:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "cffparse.h"
|
2000-12-08 03:42:29 +01:00
|
|
|
#include FT_INTERNAL_STREAM_H
|
2008-06-10 07:58:25 +02:00
|
|
|
#include FT_INTERNAL_DEBUG_H
|
2000-12-08 03:42:29 +01:00
|
|
|
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
#include "cfferrs.h"
|
2009-04-05 17:12:03 +02:00
|
|
|
#include "cffpic.h"
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01: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
|
2001-01-03 01:21:59 +01:00
|
|
|
#define FT_COMPONENT trace_cffparse
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* src/cff/cffcmap.c, src/cff/cffcmap.h, Jamfile, rules.mk: new files added
to support charmaps for CFF fonts
* src/cff/cffload.c, src/cff/cffload.h, src/cff/cffobjs.c,
src/cff/cffobjs.h, src/cff/cffparse.c, src/cffparse.h, src/cff/cffgload.c,
src/cff/cffgload.h: adding support for CFF charmaps, reformatting the
sources, and removing some bugs in the Encoding and Charset loaders
2002-07-10 18:52:06 +02:00
|
|
|
cff_parser_init( CFF_Parser parser,
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_UInt code,
|
2009-04-05 16:34:40 +02:00
|
|
|
void* object,
|
|
|
|
FT_Library library)
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2002-07-28 07:05:24 +02:00
|
|
|
FT_MEM_ZERO( parser, sizeof ( *parser ) );
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
parser->top = parser->stack;
|
|
|
|
parser->object_code = code;
|
|
|
|
parser->object = object;
|
2009-04-05 16:34:40 +02:00
|
|
|
parser->library = library;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
/* read an integer */
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Long
|
|
|
|
cff_parse_integer( FT_Byte* start,
|
|
|
|
FT_Byte* limit )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
|
|
|
FT_Byte* p = start;
|
|
|
|
FT_Int v = *p++;
|
|
|
|
FT_Long val = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if ( v == 28 )
|
|
|
|
{
|
|
|
|
if ( p + 2 > limit )
|
|
|
|
goto Bad;
|
|
|
|
|
|
|
|
val = (FT_Short)( ( (FT_Int)p[0] << 8 ) | p[1] );
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
else if ( v == 29 )
|
|
|
|
{
|
|
|
|
if ( p + 4 > limit )
|
|
|
|
goto Bad;
|
|
|
|
|
|
|
|
val = ( (FT_Long)p[0] << 24 ) |
|
|
|
|
( (FT_Long)p[1] << 16 ) |
|
|
|
|
( (FT_Long)p[2] << 8 ) |
|
|
|
|
p[3];
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
else if ( v < 247 )
|
|
|
|
{
|
|
|
|
val = v - 139;
|
|
|
|
}
|
|
|
|
else if ( v < 251 )
|
|
|
|
{
|
|
|
|
if ( p + 1 > limit )
|
|
|
|
goto Bad;
|
|
|
|
|
|
|
|
val = ( v - 247 ) * 256 + p[0] + 108;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( p + 1 > limit )
|
|
|
|
goto Bad;
|
|
|
|
|
|
|
|
val = -( v - 251 ) * 256 - p[0] - 108;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return val;
|
|
|
|
|
|
|
|
Bad:
|
|
|
|
val = 0;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
static const FT_Long power_tens[] =
|
|
|
|
{
|
|
|
|
1L,
|
|
|
|
10L,
|
|
|
|
100L,
|
|
|
|
1000L,
|
|
|
|
10000L,
|
|
|
|
100000L,
|
|
|
|
1000000L,
|
|
|
|
10000000L,
|
|
|
|
100000000L,
|
|
|
|
1000000000L
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
/* read a real */
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Fixed
|
|
|
|
cff_parse_real( FT_Byte* start,
|
|
|
|
FT_Byte* limit,
|
2008-05-04 15:37:38 +02:00
|
|
|
FT_Int power_ten,
|
|
|
|
FT_Int* scaling )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
FT_Byte* p = start;
|
2001-06-19 10:28:24 +02:00
|
|
|
FT_UInt nib;
|
|
|
|
FT_UInt phase;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
FT_Long result, number, rest, exponent;
|
|
|
|
FT_Int sign = 0, exponent_sign = 0;
|
|
|
|
FT_Int exponent_add, integer_length, fraction_length;
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
if ( scaling )
|
|
|
|
*scaling = 0;
|
|
|
|
|
|
|
|
result = 0;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
number = 0;
|
|
|
|
rest = 0;
|
|
|
|
exponent = 0;
|
|
|
|
|
|
|
|
exponent_add = 0;
|
|
|
|
integer_length = 0;
|
|
|
|
fraction_length = 0;
|
|
|
|
|
2009-07-31 17:30:16 +02:00
|
|
|
FT_UNUSED( rest );
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* First of all, read the integer part. */
|
2000-12-08 03:42:29 +01:00
|
|
|
phase = 4;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
/* If we entered this iteration with phase == 4, we need to */
|
2007-01-26 23:18:56 +01:00
|
|
|
/* read a new byte. This also skips past the initial 0x1E. */
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( phase )
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
|
|
|
|
/* Make sure we don't read past the end. */
|
|
|
|
if ( p >= limit )
|
2008-05-04 15:37:38 +02:00
|
|
|
goto Exit;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the nibble. */
|
|
|
|
nib = ( p[0] >> phase ) & 0xF;
|
|
|
|
phase = 4 - phase;
|
|
|
|
|
|
|
|
if ( nib == 0xE )
|
|
|
|
sign = 1;
|
|
|
|
else if ( nib > 9 )
|
|
|
|
break;
|
|
|
|
else
|
2008-05-04 15:37:38 +02:00
|
|
|
{
|
|
|
|
/* Increase exponent if we can't add the digit. */
|
|
|
|
if ( number >= 0xCCCCCCCL )
|
|
|
|
exponent_add++;
|
|
|
|
/* Skip leading zeros. */
|
|
|
|
else if ( nib || number )
|
|
|
|
{
|
|
|
|
integer_length++;
|
|
|
|
number = number * 10 + nib;
|
|
|
|
}
|
|
|
|
}
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Read fraction part, if any. */
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( nib == 0xa )
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
/* If we entered this iteration with phase == 4, we need */
|
|
|
|
/* to read a new byte. */
|
|
|
|
if ( phase )
|
2000-12-08 17:17:16 +01:00
|
|
|
{
|
2000-12-08 03:42:29 +01:00
|
|
|
p++;
|
|
|
|
|
|
|
|
/* Make sure we don't read past the end. */
|
|
|
|
if ( p >= limit )
|
2008-05-04 15:37:38 +02:00
|
|
|
goto Exit;
|
2000-12-08 17:17:16 +01:00
|
|
|
}
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
/* Get the nibble. */
|
|
|
|
nib = ( p[0] >> phase ) & 0xF;
|
|
|
|
phase = 4 - phase;
|
|
|
|
if ( nib >= 10 )
|
|
|
|
break;
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Skip leading zeros if possible. */
|
|
|
|
if ( !nib && !number )
|
|
|
|
exponent_add--;
|
|
|
|
/* Only add digit if we don't overflow. */
|
2009-03-11 11:20:51 +01:00
|
|
|
else if ( number < 0xCCCCCCCL && fraction_length < 9 )
|
2008-04-01 07:55:48 +02:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
fraction_length++;
|
|
|
|
number = number * 10 + nib;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Read exponent, if any. */
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( nib == 12 )
|
|
|
|
{
|
2004-08-29 18:50:09 +02:00
|
|
|
exponent_sign = 1;
|
|
|
|
nib = 11;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( nib == 11 )
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
/* If we entered this iteration with phase == 4, */
|
|
|
|
/* we need to read a new byte. */
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( phase )
|
2000-12-08 17:17:16 +01:00
|
|
|
{
|
2000-12-08 03:42:29 +01:00
|
|
|
p++;
|
|
|
|
|
|
|
|
/* Make sure we don't read past the end. */
|
|
|
|
if ( p >= limit )
|
2008-05-04 15:37:38 +02:00
|
|
|
goto Exit;
|
2000-12-08 17:17:16 +01:00
|
|
|
}
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
/* Get the nibble. */
|
|
|
|
nib = ( p[0] >> phase ) & 0xF;
|
|
|
|
phase = 4 - phase;
|
|
|
|
if ( nib >= 10 )
|
|
|
|
break;
|
|
|
|
|
2004-08-29 18:50:09 +02:00
|
|
|
exponent = exponent * 10 + nib;
|
2008-05-04 15:37:38 +02:00
|
|
|
|
|
|
|
/* Arbitrarily limit exponent. */
|
|
|
|
if ( exponent > 1000 )
|
|
|
|
goto Exit;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
2004-08-29 18:50:09 +02:00
|
|
|
if ( exponent_sign )
|
|
|
|
exponent = -exponent;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* We don't check `power_ten' and `exponent_add'. */
|
|
|
|
exponent += power_ten + exponent_add;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
if ( scaling )
|
2007-12-14 08:48:32 +01:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Only use `fraction_length'. */
|
|
|
|
fraction_length += integer_length;
|
|
|
|
exponent += integer_length;
|
|
|
|
|
|
|
|
if ( fraction_length <= 5 )
|
|
|
|
{
|
|
|
|
if ( number > 0x7FFFL )
|
|
|
|
{
|
|
|
|
result = FT_DivFix( number, 10 );
|
|
|
|
*scaling = exponent - fraction_length + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( exponent > 0 )
|
|
|
|
{
|
|
|
|
FT_Int new_fraction_length, shift;
|
|
|
|
|
2007-12-14 08:48:32 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Make `scaling' as small as possible. */
|
|
|
|
new_fraction_length = FT_MIN( exponent, 5 );
|
|
|
|
exponent -= new_fraction_length;
|
|
|
|
shift = new_fraction_length - fraction_length;
|
|
|
|
|
|
|
|
number *= power_tens[shift];
|
|
|
|
if ( number > 0x7FFFL )
|
|
|
|
{
|
|
|
|
number /= 10;
|
|
|
|
exponent += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
exponent -= fraction_length;
|
|
|
|
|
|
|
|
result = number << 16;
|
|
|
|
*scaling = exponent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ( number / power_tens[fraction_length - 5] ) > 0x7FFFL )
|
|
|
|
{
|
|
|
|
result = FT_DivFix( number, power_tens[fraction_length - 4] );
|
|
|
|
*scaling = exponent - 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = FT_DivFix( number, power_tens[fraction_length - 5] );
|
|
|
|
*scaling = exponent - 5;
|
|
|
|
}
|
|
|
|
}
|
2007-12-14 08:48:32 +01:00
|
|
|
}
|
2008-05-04 15:37:38 +02:00
|
|
|
else
|
2007-12-14 08:48:32 +01:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
integer_length += exponent;
|
|
|
|
fraction_length -= exponent;
|
2007-12-14 08:48:32 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Check for overflow and underflow. */
|
|
|
|
if ( FT_ABS( integer_length ) > 5 )
|
|
|
|
goto Exit;
|
|
|
|
|
2008-11-27 22:55:20 +01:00
|
|
|
/* Remove non-significant digits. */
|
|
|
|
if ( integer_length < 0 ) {
|
|
|
|
number /= power_tens[-integer_length];
|
|
|
|
fraction_length += integer_length;
|
|
|
|
}
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
/* Convert into 16.16 format. */
|
|
|
|
if ( fraction_length > 0 )
|
|
|
|
{
|
|
|
|
if ( ( number / power_tens[fraction_length] ) > 0x7FFFL )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
result = FT_DivFix( number, power_tens[fraction_length] );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
number *= power_tens[-fraction_length];
|
|
|
|
|
|
|
|
if ( number > 0x7FFFL )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
result = number << 16;
|
|
|
|
}
|
2007-12-14 08:48:32 +01:00
|
|
|
}
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( sign )
|
|
|
|
result = -result;
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read a number, either integer or real */
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Long
|
|
|
|
cff_parse_num( FT_Byte** d )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
return **d == 30 ? ( cff_parse_real( d[0], d[1], 0, NULL ) >> 16 )
|
|
|
|
: cff_parse_integer( d[0], d[1] );
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
/* read a floating point number, either integer or real */
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Fixed
|
|
|
|
cff_parse_fixed( FT_Byte** d )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2008-05-04 15:37:38 +02:00
|
|
|
return **d == 30 ? cff_parse_real( d[0], d[1], 0, NULL )
|
|
|
|
: cff_parse_integer( d[0], d[1] ) << 16;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
|
2001-02-07 02:11:54 +01:00
|
|
|
/* read a floating point number, either integer or real, */
|
2008-05-04 15:37:38 +02:00
|
|
|
/* but return `10^scaling' times the number read in */
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Fixed
|
2008-05-04 15:37:38 +02:00
|
|
|
cff_parse_fixed_scaled( FT_Byte** d,
|
|
|
|
FT_Int scaling )
|
2001-02-07 02:11:54 +01:00
|
|
|
{
|
2008-08-04 17:54:24 +02:00
|
|
|
return **d == 30 ? cff_parse_real( d[0], d[1], scaling, NULL )
|
|
|
|
: ( cff_parse_integer( d[0], d[1] ) *
|
|
|
|
power_tens[scaling] ) << 16;
|
2001-02-07 02:11:54 +01:00
|
|
|
}
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2008-05-04 15:37:38 +02:00
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
/* read a floating point number, either integer or real, */
|
|
|
|
/* and return it as precise as possible -- `scaling' returns */
|
|
|
|
/* the scaling factor (as a power of 10) */
|
|
|
|
static FT_Fixed
|
|
|
|
cff_parse_fixed_dynamic( FT_Byte** d,
|
|
|
|
FT_Int* scaling )
|
|
|
|
{
|
|
|
|
FT_ASSERT( scaling );
|
|
|
|
|
|
|
|
if ( **d == 30 )
|
|
|
|
return cff_parse_real( d[0], d[1], 0, scaling );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FT_Long number;
|
|
|
|
FT_Int integer_length;
|
|
|
|
|
|
|
|
|
|
|
|
number = cff_parse_integer( d[0], d[1] );
|
|
|
|
|
|
|
|
if ( number > 0x7FFFL )
|
|
|
|
{
|
|
|
|
for ( integer_length = 5; integer_length < 10; integer_length++ )
|
|
|
|
if ( number < power_tens[integer_length] )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( ( number / power_tens[integer_length - 5] ) > 0x7FFFL )
|
|
|
|
{
|
|
|
|
*scaling = integer_length - 4;
|
|
|
|
return FT_DivFix( number, power_tens[integer_length - 4] );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*scaling = integer_length - 5;
|
|
|
|
return FT_DivFix( number, power_tens[integer_length - 5] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*scaling = 0;
|
|
|
|
return number << 16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Error
|
2002-03-30 17:41:09 +01:00
|
|
|
cff_parse_font_matrix( CFF_Parser parser )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2002-03-14 09:57:10 +01:00
|
|
|
CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_Matrix* matrix = &dict->font_matrix;
|
|
|
|
FT_Vector* offset = &dict->font_offset;
|
2008-05-15 01:05:38 +02:00
|
|
|
FT_ULong* upm = &dict->units_per_em;
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_Byte** data = parser->stack;
|
2008-05-04 15:37:38 +02:00
|
|
|
FT_Error error = CFF_Err_Stack_Underflow;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
2000-12-30 23:14:58 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
if ( parser->top >= parser->stack + 6 )
|
|
|
|
{
|
2008-05-15 01:05:38 +02:00
|
|
|
FT_Int scaling;
|
2000-12-24 10:57:28 +01:00
|
|
|
|
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
error = CFF_Err_Ok;
|
|
|
|
|
|
|
|
/* We expect a well-formed font matrix, this is, the matrix elements */
|
|
|
|
/* `xx' and `yy' are of approximately the same magnitude. To avoid */
|
|
|
|
/* loss of precision, we use the magnitude of element `xx' to scale */
|
|
|
|
/* all other elements. The scaling factor is then contained in the */
|
|
|
|
/* `units_per_em' value. */
|
2008-04-01 07:55:48 +02:00
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
matrix->xx = cff_parse_fixed_dynamic( data++, &scaling );
|
2001-02-07 02:11:54 +01:00
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
scaling = -scaling;
|
|
|
|
|
|
|
|
if ( scaling < 0 || scaling > 9 )
|
2000-12-24 10:57:28 +01:00
|
|
|
{
|
2008-05-15 01:05:38 +02:00
|
|
|
/* Return default matrix in case of unlikely values. */
|
|
|
|
matrix->xx = 0x10000L;
|
|
|
|
matrix->yx = 0;
|
|
|
|
matrix->yx = 0;
|
|
|
|
matrix->yy = 0x10000L;
|
|
|
|
offset->x = 0;
|
|
|
|
offset->y = 0;
|
|
|
|
*upm = 1;
|
|
|
|
|
|
|
|
goto Exit;
|
2000-12-24 10:57:28 +01:00
|
|
|
}
|
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
matrix->yx = cff_parse_fixed_scaled( data++, scaling );
|
|
|
|
matrix->xy = cff_parse_fixed_scaled( data++, scaling );
|
|
|
|
matrix->yy = cff_parse_fixed_scaled( data++, scaling );
|
|
|
|
offset->x = cff_parse_fixed_scaled( data++, scaling );
|
|
|
|
offset->y = cff_parse_fixed_scaled( data, scaling );
|
2000-12-24 10:57:28 +01:00
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
*upm = power_tens[scaling];
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
2008-05-15 01:05:38 +02:00
|
|
|
Exit:
|
2000-12-08 03:42:29 +01:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Error
|
2002-03-30 17:41:09 +01:00
|
|
|
cff_parse_font_bbox( CFF_Parser parser )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2002-03-14 09:57:10 +01:00
|
|
|
CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_BBox* bbox = &dict->font_bbox;
|
|
|
|
FT_Byte** data = parser->stack;
|
|
|
|
FT_Error error;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Stack_Underflow;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
if ( parser->top >= parser->stack + 4 )
|
|
|
|
{
|
2001-03-17 20:01:25 +01:00
|
|
|
bbox->xMin = FT_RoundFix( cff_parse_fixed( data++ ) );
|
|
|
|
bbox->yMin = FT_RoundFix( cff_parse_fixed( data++ ) );
|
|
|
|
bbox->xMax = FT_RoundFix( cff_parse_fixed( data++ ) );
|
|
|
|
bbox->yMax = FT_RoundFix( cff_parse_fixed( data ) );
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Ok;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Error
|
2002-03-30 17:41:09 +01:00
|
|
|
cff_parse_private_dict( CFF_Parser parser )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2002-03-14 09:57:10 +01:00
|
|
|
CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_Byte** data = parser->stack;
|
|
|
|
FT_Error error;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Stack_Underflow;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
if ( parser->top >= parser->stack + 2 )
|
|
|
|
{
|
|
|
|
dict->private_size = cff_parse_num( data++ );
|
|
|
|
dict->private_offset = cff_parse_num( data );
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Ok;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Error
|
2002-03-30 17:41:09 +01:00
|
|
|
cff_parse_cid_ros( CFF_Parser parser )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2002-03-14 09:57:10 +01:00
|
|
|
CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_Byte** data = parser->stack;
|
|
|
|
FT_Error error;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Stack_Underflow;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
if ( parser->top >= parser->stack + 3 )
|
|
|
|
{
|
|
|
|
dict->cid_registry = (FT_UInt)cff_parse_num ( data++ );
|
|
|
|
dict->cid_ordering = (FT_UInt)cff_parse_num ( data++ );
|
2009-07-31 17:32:06 +02:00
|
|
|
if ( **data == 30 )
|
|
|
|
FT_TRACE1(( "cff_parse_cid_ros: real supplement is rounded\n" ));
|
|
|
|
dict->cid_supplement = cff_parse_num( data );
|
|
|
|
if ( dict->cid_supplement < 0 )
|
|
|
|
FT_TRACE1(( "cff_parse_cid_ros: negative supplement %d is found\n",
|
|
|
|
dict->cid_supplement ));
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Ok;
|
2000-12-08 03:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define CFF_FIELD_NUM( code, name ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_num )
|
|
|
|
#define CFF_FIELD_FIXED( code, name ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_fixed )
|
2003-06-06 07:07:53 +02:00
|
|
|
#define CFF_FIELD_FIXED_1000( code, name ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_fixed_thousand )
|
2000-12-08 03:42:29 +01:00
|
|
|
#define CFF_FIELD_STRING( code, name ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_string )
|
|
|
|
#define CFF_FIELD_BOOL( code, name ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_bool )
|
|
|
|
#define CFF_FIELD_DELTA( code, name, max ) \
|
|
|
|
CFF_FIELD( code, name, cff_kind_delta )
|
|
|
|
|
2009-04-05 17:12:03 +02:00
|
|
|
#define CFFCODE_TOPDICT 0x1000
|
|
|
|
#define CFFCODE_PRIVATE 0x2000
|
|
|
|
|
|
|
|
#ifndef FT_CONFIG_OPTION_PIC
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#define CFF_FIELD_CALLBACK( code, name ) \
|
|
|
|
{ \
|
|
|
|
cff_kind_callback, \
|
|
|
|
code | CFFCODE, \
|
|
|
|
0, 0, \
|
|
|
|
cff_parse_ ## name, \
|
|
|
|
0, 0 \
|
|
|
|
},
|
|
|
|
|
|
|
|
#undef CFF_FIELD
|
|
|
|
#define CFF_FIELD( code, name, kind ) \
|
|
|
|
{ \
|
|
|
|
kind, \
|
|
|
|
code | CFFCODE, \
|
|
|
|
FT_FIELD_OFFSET( name ), \
|
|
|
|
FT_FIELD_SIZE( name ), \
|
|
|
|
0, 0, 0 \
|
|
|
|
},
|
|
|
|
|
|
|
|
#undef CFF_FIELD_DELTA
|
|
|
|
#define CFF_FIELD_DELTA( code, name, max ) \
|
|
|
|
{ \
|
|
|
|
cff_kind_delta, \
|
|
|
|
code | CFFCODE, \
|
|
|
|
FT_FIELD_OFFSET( name ), \
|
|
|
|
FT_FIELD_SIZE_DELTA( name ), \
|
|
|
|
0, \
|
|
|
|
max, \
|
|
|
|
FT_FIELD_OFFSET( num_ ## name ) \
|
|
|
|
},
|
|
|
|
|
|
|
|
static const CFF_Field_Handler cff_field_handlers[] =
|
|
|
|
{
|
|
|
|
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "cfftoken.h"
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-04-05 17:12:03 +02:00
|
|
|
#else /* FT_CONFIG_OPTION_PIC */
|
|
|
|
|
|
|
|
void FT_Destroy_Class_cff_field_handlers(FT_Library library, CFF_Field_Handler* clazz)
|
|
|
|
{
|
|
|
|
FT_Memory memory = library->memory;
|
|
|
|
if ( clazz )
|
|
|
|
FT_FREE( clazz );
|
|
|
|
}
|
|
|
|
|
|
|
|
FT_Error FT_Create_Class_cff_field_handlers(FT_Library library, CFF_Field_Handler** output_class)
|
|
|
|
{
|
|
|
|
CFF_Field_Handler* clazz;
|
|
|
|
FT_Error error;
|
|
|
|
FT_Memory memory = library->memory;
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
#undef CFF_FIELD
|
|
|
|
#undef CFF_FIELD_DELTA
|
|
|
|
#undef CFF_FIELD_CALLBACK
|
|
|
|
#define CFF_FIELD_CALLBACK( code, name ) i++;
|
|
|
|
#define CFF_FIELD( code, name, kind ) i++;
|
|
|
|
#define CFF_FIELD_DELTA( code, name, max ) i++;
|
|
|
|
|
|
|
|
#include "cfftoken.h"
|
|
|
|
i++;/*{ 0, 0, 0, 0, 0, 0, 0 }*/
|
|
|
|
|
|
|
|
if ( FT_ALLOC( clazz, sizeof(CFF_Field_Handler)*i ) )
|
|
|
|
return error;
|
|
|
|
|
|
|
|
i=0;
|
|
|
|
#undef CFF_FIELD
|
|
|
|
#undef CFF_FIELD_DELTA
|
|
|
|
#undef CFF_FIELD_CALLBACK
|
|
|
|
|
|
|
|
#define CFF_FIELD_CALLBACK( code_, name_ ) \
|
|
|
|
clazz[i].kind = cff_kind_callback; \
|
|
|
|
clazz[i].code = code_ | CFFCODE; \
|
|
|
|
clazz[i].offset = 0; \
|
|
|
|
clazz[i].size = 0; \
|
|
|
|
clazz[i].reader = cff_parse_ ## name_; \
|
|
|
|
clazz[i].array_max = 0; \
|
|
|
|
clazz[i].count_offset = 0; \
|
|
|
|
i++;
|
|
|
|
|
|
|
|
#undef CFF_FIELD
|
|
|
|
#define CFF_FIELD( code_, name_, kind_ ) \
|
|
|
|
clazz[i].kind = kind_; \
|
|
|
|
clazz[i].code = code_ | CFFCODE; \
|
|
|
|
clazz[i].offset = FT_FIELD_OFFSET( name_ ); \
|
|
|
|
clazz[i].size = FT_FIELD_SIZE( name_ ); \
|
|
|
|
clazz[i].reader = 0; \
|
|
|
|
clazz[i].array_max = 0; \
|
|
|
|
clazz[i].count_offset = 0; \
|
|
|
|
i++; \
|
|
|
|
|
|
|
|
#undef CFF_FIELD_DELTA
|
|
|
|
#define CFF_FIELD_DELTA( code_, name_, max_ ) \
|
|
|
|
clazz[i].kind = cff_kind_delta; \
|
|
|
|
clazz[i].code = code_ | CFFCODE; \
|
|
|
|
clazz[i].offset = FT_FIELD_OFFSET( name_ ); \
|
|
|
|
clazz[i].size = FT_FIELD_SIZE_DELTA( name_ ); \
|
|
|
|
clazz[i].reader = 0; \
|
|
|
|
clazz[i].array_max = max_; \
|
|
|
|
clazz[i].count_offset = FT_FIELD_OFFSET( num_ ## name_ ); \
|
|
|
|
i++;
|
|
|
|
|
|
|
|
#include "cfftoken.h"
|
|
|
|
|
|
|
|
clazz[i].kind = 0;
|
|
|
|
clazz[i].code = 0;
|
|
|
|
clazz[i].offset = 0;
|
|
|
|
clazz[i].size = 0;
|
|
|
|
clazz[i].reader = 0;
|
|
|
|
clazz[i].array_max = 0;
|
|
|
|
clazz[i].count_offset = 0;
|
|
|
|
|
|
|
|
*output_class = clazz;
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* FT_CONFIG_OPTION_PIC */
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* src/cff/cffcmap.c, src/cff/cffcmap.h, Jamfile, rules.mk: new files added
to support charmaps for CFF fonts
* src/cff/cffload.c, src/cff/cffload.h, src/cff/cffobjs.c,
src/cff/cffobjs.h, src/cff/cffparse.c, src/cffparse.h, src/cff/cffgload.c,
src/cff/cffgload.h: adding support for CFF charmaps, reformatting the
sources, and removing some bugs in the Encoding and Charset loaders
2002-07-10 18:52:06 +02:00
|
|
|
cff_parser_run( CFF_Parser parser,
|
2002-03-30 17:41:09 +01:00
|
|
|
FT_Byte* start,
|
|
|
|
FT_Byte* limit )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
2009-04-05 17:12:03 +02:00
|
|
|
FT_Byte* p = start;
|
|
|
|
FT_Error error = CFF_Err_Ok;
|
|
|
|
FT_Library library = parser->library;
|
|
|
|
FT_UNUSED(library);
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
parser->top = parser->stack;
|
|
|
|
parser->start = start;
|
|
|
|
parser->limit = limit;
|
|
|
|
parser->cursor = start;
|
|
|
|
|
|
|
|
while ( p < limit )
|
|
|
|
{
|
2001-06-19 10:28:24 +02:00
|
|
|
FT_UInt v = *p;
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
if ( v >= 27 && v != 31 )
|
|
|
|
{
|
|
|
|
/* it's a number; we will push its position on the stack */
|
|
|
|
if ( parser->top - parser->stack >= CFF_MAX_STACK_DEPTH )
|
|
|
|
goto Stack_Overflow;
|
|
|
|
|
|
|
|
*parser->top ++ = p;
|
|
|
|
|
|
|
|
/* now, skip it */
|
|
|
|
if ( v == 30 )
|
|
|
|
{
|
|
|
|
/* skip real number */
|
|
|
|
p++;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if ( p >= limit )
|
|
|
|
goto Syntax_Error;
|
|
|
|
v = p[0] >> 4;
|
|
|
|
if ( v == 15 )
|
|
|
|
break;
|
|
|
|
v = p[0] & 0xF;
|
|
|
|
if ( v == 15 )
|
|
|
|
break;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( v == 28 )
|
|
|
|
p += 2;
|
|
|
|
else if ( v == 29 )
|
|
|
|
p += 4;
|
|
|
|
else if ( v > 246 )
|
|
|
|
p += 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This is not a number, hence it's an operator. Compute its code */
|
|
|
|
/* and look for it in our current list. */
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
FT_UInt code;
|
|
|
|
FT_UInt num_args = (FT_UInt)
|
|
|
|
( parser->top - parser->stack );
|
2000-12-08 03:42:29 +01:00
|
|
|
const CFF_Field_Handler* field;
|
|
|
|
|
|
|
|
|
|
|
|
*parser->top = p;
|
|
|
|
code = v;
|
|
|
|
if ( v == 12 )
|
|
|
|
{
|
|
|
|
/* two byte operator */
|
|
|
|
p++;
|
2002-09-10 01:45:29 +02:00
|
|
|
if ( p >= limit )
|
|
|
|
goto Syntax_Error;
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
code = 0x100 | p[0];
|
|
|
|
}
|
|
|
|
code = code | parser->object_code;
|
|
|
|
|
2009-04-05 17:12:03 +02:00
|
|
|
for ( field = FT_CFF_FIELD_HANDLERS_GET; field->kind; field++ )
|
2000-12-08 03:42:29 +01:00
|
|
|
{
|
|
|
|
if ( field->code == (FT_Int)code )
|
|
|
|
{
|
|
|
|
/* we found our field's handler; read it */
|
|
|
|
FT_Long val;
|
|
|
|
FT_Byte* q = (FT_Byte*)parser->object + field->offset;
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2002-09-10 01:45:29 +02:00
|
|
|
/* check that we have enough arguments -- except for */
|
|
|
|
/* delta encoded arrays, which can be empty */
|
|
|
|
if ( field->kind != cff_kind_delta && num_args < 1 )
|
|
|
|
goto Stack_Underflow;
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
switch ( field->kind )
|
|
|
|
{
|
|
|
|
case cff_kind_bool:
|
|
|
|
case cff_kind_string:
|
|
|
|
case cff_kind_num:
|
|
|
|
val = cff_parse_num( parser->stack );
|
|
|
|
goto Store_Number;
|
|
|
|
|
|
|
|
case cff_kind_fixed:
|
|
|
|
val = cff_parse_fixed( parser->stack );
|
2003-06-06 07:07:53 +02:00
|
|
|
goto Store_Number;
|
|
|
|
|
|
|
|
case cff_kind_fixed_thousand:
|
2008-05-04 15:37:38 +02:00
|
|
|
val = cff_parse_fixed_scaled( parser->stack, 3 );
|
2000-12-08 03:42:29 +01:00
|
|
|
|
|
|
|
Store_Number:
|
|
|
|
switch ( field->size )
|
|
|
|
{
|
2004-04-24 08:06:39 +02:00
|
|
|
case (8 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Byte*)q = (FT_Byte)val;
|
|
|
|
break;
|
|
|
|
|
2004-04-24 08:06:39 +02:00
|
|
|
case (16 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Short*)q = (FT_Short)val;
|
|
|
|
break;
|
|
|
|
|
2004-04-24 08:06:39 +02:00
|
|
|
case (32 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Int32*)q = (FT_Int)val;
|
|
|
|
break;
|
|
|
|
|
2004-04-24 08:06:39 +02:00
|
|
|
default: /* for 64-bit systems */
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Long*)q = val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cff_kind_delta:
|
|
|
|
{
|
|
|
|
FT_Byte* qcount = (FT_Byte*)parser->object +
|
|
|
|
field->count_offset;
|
|
|
|
|
|
|
|
FT_Byte** data = parser->stack;
|
|
|
|
|
|
|
|
|
|
|
|
if ( num_args > field->array_max )
|
|
|
|
num_args = field->array_max;
|
|
|
|
|
|
|
|
/* store count */
|
|
|
|
*qcount = (FT_Byte)num_args;
|
|
|
|
|
|
|
|
val = 0;
|
|
|
|
while ( num_args > 0 )
|
|
|
|
{
|
|
|
|
val += cff_parse_num( data++ );
|
|
|
|
switch ( field->size )
|
|
|
|
{
|
2004-04-24 08:06:39 +02:00
|
|
|
case (8 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Byte*)q = (FT_Byte)val;
|
|
|
|
break;
|
|
|
|
|
2004-04-24 08:06:39 +02:00
|
|
|
case (16 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Short*)q = (FT_Short)val;
|
|
|
|
break;
|
|
|
|
|
2004-04-24 08:06:39 +02:00
|
|
|
case (32 / FT_CHAR_BIT):
|
2000-12-08 03:42:29 +01:00
|
|
|
*(FT_Int32*)q = (FT_Int)val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* for 64-bit systems */
|
|
|
|
*(FT_Long*)q = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
q += field->size;
|
|
|
|
num_args--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* callback */
|
|
|
|
error = field->reader( parser );
|
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
goto Found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this is an unknown operator, or it is unsupported; */
|
|
|
|
/* we will ignore it for now. */
|
|
|
|
|
|
|
|
Found:
|
|
|
|
/* clear stack */
|
|
|
|
parser->top = parser->stack;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
|
|
|
|
Stack_Overflow:
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Invalid_Argument;
|
2000-12-08 03:42:29 +01:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
Stack_Underflow:
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Invalid_Argument;
|
2000-12-08 03:42:29 +01:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
Syntax_Error:
|
2001-01-03 01:21:59 +01:00
|
|
|
error = CFF_Err_Invalid_Argument;
|
2000-12-08 03:42:29 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* END */
|