1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/************************************************************************/
/* */
/* Keep a list of font faces. */
/* */
/************************************************************************/
# include "appUtilConfig.h"
# include <stddef.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <time.h>
# include <utilTree.h>
# include <utilPostscriptFace.h>
# include <appDebugon.h>
/************************************************************************/
/* */
/* Collect the fonts in a document */
/* This has two functions: */
/* 1) They are needed for the DSC comments. */
/* 2) This makes it possible to define shorthands in the prologue */
/* */
/************************************************************************/
int utilRememberPostsciptFace( PostScriptTypeList * pstl,
int encoding,
const AfmFontInfo * afi,
const TextAttribute * ta,
const char * prefix,
int appearsInText )
{
PostScriptFace * psf;
const char * fontName;
int faceIndex;
char faceId[FACElenID+1];
char * s;
int ref;
FaceReference * fr;
if ( ! pstl->pstlFaceTree )
{
const int ownKeys= 1;
pstl->pstlFaceTree= utilTreeMakeTree( ownKeys );
if ( ! pstl->pstlFaceTree )
{ XDEB(pstl->pstlFaceTree); return -1; }
}
psf= utilTreeGetEQ( pstl->pstlFaceTree, &fontName, afi->afiFontName );
if ( ! psf )
{
int enc;
psf= malloc( sizeof(PostScriptFace) );
if ( ! psf )
{ XDEB(psf); return -1; }
psf->psfAfi= afi;
for ( enc= 0; enc < ENCODINGps_COUNT; enc++ )
{ psf->psfEncodingUsed[enc]= 0; }
psf->psfReferences= (FaceReference *)0;
psf->psfReferenceCount= 0;
psf->psfAppearsInText= 0;
psf->psfEmbed= PSembedUNKNOWN;
psf->psfFontFileName= (char *)0;
psf->psfFontFileNameLength= 0;
if ( utilTreeStoreValue( pstl->pstlFaceTree,
&fontName, afi->afiFontName, psf ) )
{ SDEB(afi->afiFontName); free( psf ); return -1; }
}
faceIndex= FACE_INDEX( ta->taFontIsSlanted, ta->taFontIsBold );
s= faceId;
sprintf( s, "%s%d", prefix, ta->taFontNumber );
s += strlen( s );
if ( ta->taFontIsBold )
{ strcpy( s, "b" ); s++; }
if ( ta->taFontIsSlanted )
{ strcpy( s, "i" ); s++; }
fr= psf->psfReferences;
for ( ref= 0; ref < psf->psfReferenceCount; fr++, ref++ )
{
if ( fr->frDocFontIndex == ta->taFontNumber &&
fr->frDocFaceIndex == faceIndex &&
! strcmp( fr->frFaceId, faceId ) )
{ break; }
}
if ( ref >= psf->psfReferenceCount )
{
fr= (FaceReference *)realloc( psf->psfReferences,
(ref+1)* sizeof(FaceReference) );
if ( ! fr )
{ LXDEB(psf->psfReferenceCount,fr); return -1; }
psf->psfReferences= fr;
fr += psf->psfReferenceCount++;
fr->frDocFontIndex= ta->taFontNumber;
fr->frDocFaceIndex= faceIndex;
strcpy( fr->frFaceId, faceId );
fr->frEncoding= encoding;
fr->frAppearsInText= appearsInText;
}
if ( fr->frEncoding != encoding )
{ LLDEB(fr->frEncoding,encoding); }
if ( appearsInText )
{
fr->frAppearsInText= appearsInText;
psf->psfAppearsInText= appearsInText;
}
if ( encoding >= 0 &&
encoding < ENCODINGps_COUNT )
{
psf->psfEncodingUsed[encoding]= 1;
pstl->pstlEncodingUsed[encoding]= 1;
}
return 0;
}
/************************************************************************/
/* */
/* Bookkeeping. */
/* */
/************************************************************************/
void utilInitPostScriptFaceList( PostScriptTypeList * pstl )
{
int enc;
pstl->pstlFaceTree= (void *)0;
for ( enc= 0; enc < ENCODINGps_COUNT; enc++ )
{ pstl->pstlEncodingUsed[enc]= 0; }
pstl->pstlFontDirectory= (const char *)0;
return;
}
static int utilFreePostScriptFace( const char * key,
void * vpsf,
void * through )
{
PostScriptFace * psf= (PostScriptFace *)vpsf;
if ( psf )
{
if ( psf->psfReferences )
{ free( psf->psfReferences ); }
if ( psf->psfFontFileName )
{ free( psf->psfFontFileName ); }
free( psf );
}
return 0;
}
void utilCleanPostScriptFaceList( PostScriptTypeList * pstl )
{
if ( pstl->pstlFaceTree )
{
utilTreeFreeTree( pstl->pstlFaceTree,
utilFreePostScriptFace, (void *)0 );
}
return;
}
|