summaryrefslogtreecommitdiff
path: root/tex/context/base/enco-pfr.tex
blob: 5ace40261a8de2073c4ee385019d28986b7c8660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
%D \module
%D   [       filefile=enco-pfr,
%D        version=2000.12.10,
%D          title=\CONTEXT\ Encoding Macros,
%D       subtitle=PDF Font Resource Inclusion,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA / Hans Hagen \& Ton Otten}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

%D This is an experimental module in which we implement
%D font resource inclusion in \PDF. One reason to include
%D font resources is that it enables a search engine to
%D perform a search (I'm told). This feature ws requested by
%D Petr Ferdus from Czech.

%D A simple test file may look like this (watch how we first
%D load the encoding and then the font; previous font
%D definitions are left untouched.)
%D
%D \starttyping
%D % output=pdftex interface=en
%D
%D \useencoding[pfr]
%D \setupbodyfont[csr]
%D
%D \starttext
%D   test \`z \'z \bf test \sl test \bs quite funny \`z \page
%D   test \`z \'z \bf test \sl test \bs quite funny \`z \page
%D \stoptext
%D \stoptyping
%D
%D We do our best to include a (often large) font resources
%D only once. The current implementation is not that
%D general which is also due to the fact that \type
%D {\pdffontattr} is expanded instantly and persistent. A
%D more versatile (but also slower) approach is to keep track
%D of the fonts and either flush the information at shipout
%D time, or at the end of the document.

\unprotect

%D \macros
%D   {ifincludepdffontresources}
%D
%D You can turn of this feature using the following switch.

\newif\ifincludepdffontresources \includepdffontresourcestrue

%D The name of the resource is stored in a macro, as is its
%D object reference. A resource is only processed once. When
%D done, the resource name is erased, and we use this fact to
%D prevent redefinition as well as well as reloading. So, a
%D macro defined with \type {\pdffontfileresource} can have
%D three states:
%D
%D \startitemize[packed]
%D \item undefined: not yet loaded, and not yet included
%D \item some value: loaded, but not yet included
%D \item empty: loaded, and already included
%D \stopitemize

\def\pdffontresource    {pdfr:\currentencoding}
\def\pdffontfileresource{pdff:\pdffontresource}

%D A resource is defined in a file prefixed by \type {pdfr-}.
%D The following \PDF\ code is composed by Ondrej Koala Vacha (I
%D probably mispelled this name).
%D
%D \starttyping
%D \startpdffontresource[il2]
%D /CIDInit /ProcSet findresource begin
%D 12 dict begin
%D   begincmap
%D     /CIDSystemInfo
%D       << /Registry (Adobe)
%D          /Ordering (T1UV)
%D          /Supplement 0
%D       >> def
%D     /CMapName /Adobe-Identity-UCS def
%D     /CMapType 1 def
%D     1 begincodespacerange
%D       <00> <FF>
%D     endcodespacerange
%D     %%FontSpecificEncoding
%D     191 beginbfrange
%D       <20> <20> <0020> % space         dec: 32 oct:040 hex:20
%D       .... .... ...... . ........      .... .. ....... ......
%D       <ff> <ff> <00ff> % dotaccent     dec:255 oct:377 hex:ff
%D     endbfrange
%D   endcmap
%D CMapName currentdict /CMap defineresource pop end
%D end
%D \stoppdffontresource
%D \stoptyping
%D
%D We don't preload such huge definitions, and process them
%D run||time to save memory. Therefore, in the encoding
%D vector, we only add an entry like:
%D
%D \starttyping
%D \startencoding [il2]
%D   \usepdffontresource il2
%D \stopencoding
%D \stoptyping
%D
%D This macro is defined as follows.

\def\usepdffontresource #1 %
  {\doifundefinedelse{\pdffontfileresource} % okay, undefined, so either
     {\setxvalue{\pdffontfileresource}{#1}} % band new, or not yet loaded
     {\doifvaluesomething{\pdffontfileresource}  % only if not loaded in which
        {\setxvalue{\pdffontfileresource}{#1}}}} % case it's made empty

%D Watch how we check for duplicated loading. The resource
%D itself, when asked for, is included immediately, after which
%D we save its reference. Normally a document will have one
%D such a resource.

\long\def\startpdffontresource[#1]#2\stoppdffontresource%
  {\donefalse % we use boolean due to \par
   \doifundefined{\pdffontresource}% should be \long
     {\doif{#1}{\currentencoding}{\donetrue}}%
   \ifdone
     \immediate\pdfobj stream {#2}%
     \setxvalue{\pdffontresource}{\the\pdflastobj}%
   \fi}

%D The reference to such a vector is to be handled at font
%D definition time, which is why we hook it into the font
%D loading routine. A little bit of indirectness speeds up
%D the process when this feature is disabled and keeps the
%D macros readable.

\appendtoksonce \includepdffontresource \to \everyfont

\def\includepdffontresource
  {\ifincludepdffontresources
     \ifx\pdffontattr\undefined
       % we're not using (a recent version of) pdftex
     \else\ifcase\pdfoutput
       % we're not in pdf mode
     \else
       \doincludepdffontresource
     \fi\fi
   \fi}

\beginETEX

\def\doincludepdffontresource
  {\ifcsname\s!ucmap\fontfile\endcsname\else
     \dodoincludepdffontresource
   \fi}

\def\dodoincludepdffontresource%
  {% does this font has an encoding specified
   \ifx\currentencoding\empty \else \ifx\currentencoding\s!default \else
     % is there a pdf font encoding resource file defined
     \ifcsname\pdffontfileresource\endcsname
       % load the pdf font resource
       \edef\xpdffontfileresource{\csname\pdffontfileresource\endcsname}%
       \ifx\xpdffontfileresource\empty \else
         % but load it only once
         \startreadingfile
           \readsysfile{pdfr-\xpdffontfileresource}{}{}% messages
         \stopreadingfile
         % but do that only once, so forget the flag, empty==loaded
         \global\@EA\let\csname\pdffontfileresource\endcsname\empty
       \fi
     \fi
     % is there a resource indeed, i.e. an object reference
     \ifcsname\pdffontresource\endcsname
       % if so, create a reference to the object
       \expanded{\pdffontattr\font % current font
         {/ToUnicode \csname\pdffontresource\endcsname\space0 R}}%
     \fi
     \global\@EA\let\csname\s!ucmap\fontfile\endcsname\empty
   \fi \fi}

\endETEX

\beginTEX

\def\doincludepdffontresource
  {\@EA\ifx\csname\s!ucmap\fontfile\endcsname\relax
     \dodoincludepdffontresource
   \fi}

\def\dodoincludepdffontresource%
  {\ifx\currentencoding\empty \else \ifx\currentencoding\s!default \else
     \@EA\ifx\csname\pdffontfileresource\endcsname\relax\else
       \edef\xpdffontfileresource{\csname\pdffontfileresource\endcsname}%
       \ifx\xpdffontfileresource\empty \else
         \startreadingfile
           \readsysfile{pdfr-\xpdffontfileresource}{}{}%
         \stopreadingfile
         \global\@EA\let\csname\pdffontfileresource\endcsname\empty
       \fi
     \fi
     \@EA\ifx\csname\pdffontresource\endcsname\relax\else
       \expanded{\pdffontattr\font
         {/ToUnicode \csname\pdffontresource\endcsname\space0 R}}%
     \fi
     \global\@EA\let\csname\s!ucmap\fontfile\endcsname\empty
   \fi\fi}

\endTEX


%D For the moment, we keep this definition here, if only
%D because \type {\usepdffontencoding} is not defined in the
%D core. In the end, this will go to enco-il2.

\startencoding [il2]
  \usepdffontresource il2
\stopencoding

\protect \endinput