Drop a duplicated line
[latex2e.git] / trunk / base / ltluatex.dtx
blob06cb389a2bf596e10d251669b99447073193db39
1 % \iffalse meta-comment
3 % Copyright 2015
4 % The LaTeX3 Project and any individual authors listed elsewhere
5 % in this file.
7 % It may be distributed and/or modified under the conditions of
8 % the LaTeX Project Public License (LPPL), either version 1.3c of
9 % this license or (at your option) any later version.  The latest
10 % version of this license is in the file:
12 %   http://www.latex-project.org/lppl.txt
16 %<2ekernel>%%% From File: ltluatex.dtx
17 %<plain>\ifx\newluafunction\undefined\else\expandafter\endinput\fi
18 %<tex>\ifx
19 %<tex>  \ProvidesFile\undefined\begingroup\def\ProvidesFile
20 %<tex>  #1#2[#3]{\endgroup\immediate\write-1{File: #1 #3}}
21 %<tex>\fi
22 %<plain>\ProvidesFile{ltluatex.tex}
23 %<*driver>
24 \ProvidesFile{ltluatex.dtx}
25 %</driver>
26 %<*tex>
27 [2015/12/18 v1.0l
28 %</tex>
29 %<plain>  LuaTeX support for plain TeX (core)
30 %<*tex>
32 \edef\etatcatcode{\the\catcode`\@}
33 \catcode`\@=11
34 %</tex>
35 %<*driver>
36 \documentclass{ltxdoc}
37 \GetFileInfo{ltluatex.dtx}
38 \begin{document}
39 \title{\filename\\(Lua\TeX{}-specific support)}
40 \author{David Carlisle and Joseph Wright\footnote{Significant portions
41   of the code here are adapted/simplified from the packages \textsf{luatex} and
42   \textsf{luatexbase} written by Heiko Oberdiek, \'{E}lie Roux,
43   Manuel P\'{e}gouri\'{e}-Gonnar and Philipp Gesang.}}
44 \date{\filedate}
45 \maketitle
46 \setcounter{tocdepth}{2}
47 \tableofcontents
48 \DocInput{\filename}
49 \end{document}
50 %</driver>
51 % \fi
54 % \section{Overview}
56 % Lua\TeX{} adds a number of engine-specific functions to \TeX{}. Several of
57 % these require set up that is best done in the kernel or need related support
58 % functions. This file provides \emph{basic} support for Lua\TeX{} at the
59 % \LaTeXe{} kernel level plus as a loadable file which can be used with
60 % plain \TeX{} and \LaTeX{}.
62 % This file contains code for both \TeX{} (to be stored as part of the format)
63 % and Lua (to be loaded at the start of each job). In the Lua code, the kernel
64 % uses the namespace |luatexbase|.
66 % The following |\count| registers are used here for register allocation:
67 % \begin{itemize}
68 %  \item[\texttt{\string\e@alloc@attribute@count}] Attributes (default~258)
69 %  \item[\texttt{\string\e@alloc@ccodetable@count}] Category code tables
70 %    (default~259)
71 %  \item[\texttt{\string\e@alloc@luafunction@count}] Lua functions
72 %    (default~260)
73 %  \item[\texttt{\string\e@alloc@whatsit@count}] User whatsits (default~261)
74 %  \item[\texttt{\string\e@alloc@bytecode@count}] Lua bytecodes (default~262)
75 %  \item[\texttt{\string\e@alloc@luachunk@count}] Lua chunks (default~263)
76 % \end{itemize}
77 % (|\count 256| is used for |\newmarks| allocation and |\count 257|
78 % is used for\linebreak
79 % |\newXeTeXintercharclass| with Xe\TeX{}, with code defined in
80 % \texttt{ltfinal.dtx}).
81 % With any \LaTeXe{} kernel from 2015 onward these registers are part of
82 % the block in the extended area reserved by the kernel (prior to 2015 the
83 % \LaTeXe{} kernel did not provide any functionality for the extended
84 % allocation area).
86 % \section{Core \TeX{} functionality}
88 % The commands defined here are defined for
89 % possible inclusion in a future \LaTeX{} format, however also extracted
90 % to the file |ltluatex.tex| which may be used with older \LaTeX\
91 % formats, and with plain \TeX.
93 % \noindent
94 % \DescribeMacro{\newattribute}
95 % |\newattribute{|\meta{attribute}|}|\\
96 % Defines a named \cs{attribute}, indexed from~$1$
97 % (\emph{i.e.}~|\attribute0| is never defined). Attributes initially
98 % have the marker value |-"7FFFFFFF| (`unset') set by the engine.
100 % \noindent
101 % \DescribeMacro{\newcatcodetable}
102 % |\newcatcodetable{|\meta{catcodetable}|}|\\
103 % Defines a named \cs{catcodetable}, indexed from~$1$
104 % (|\catcodetable0| is never assigned). A new catcode table will be
105 % populated with exactly those values assigned by Ini\TeX{} (as described
106 % in the Lua\TeX{} manual).
108 % \noindent
109 % \DescribeMacro{\newluafunction}
110 % |\newluafunction{|\meta{function}|}|\\
111 % Defines a named \cs{luafunction}, indexed from~$1$. (Lua indexes
112 % tables from $1$ so |\luafunction0| is not available).
114 % \noindent
115 % \DescribeMacro{\newwhatsit}
116 % |\newwhatsit{|\meta{whatsit}|}|\\
117 % Defines a custom \cs{whatsit}, indexed from~$1$.
119 % \noindent
120 % \DescribeMacro{\newluabytecode}
121 % |\newluabytecode{|\meta{bytecode}|}|\\
122 % Allocates a number for Lua bytecode register, indexed from~$1$.
124 % \noindent
125 % \DescribeMacro{\newluachunkname}
126 % |newluachunkname{|\meta{chunkname}|}|\\
127 % Allocates a number for Lua chunk register, indexed from~$1$.
128 % Also enters the name of the regiser (without backslash) into the
129 % \verb|lua.name| table to be used in stack traces.
131 % \noindent
132 % \DescribeMacro{\catcodetable@initex}
133 % \DescribeMacro{\catcodetable@string}
134 % \DescribeMacro{\catcodetable@latex}
135 % \DescribeMacro{\catcodetable@atletter}
136 % Predefined category code tables with the obvious assignments. Note
137 % that the |latex| and |atletter| tables set the full Unicode range
138 % to the codes predefined by the kernel.
140 % \noindent
141 % \DescribeMacro{\setattribute}
142 % \DescribeMacro{\unsetattribute}
143 % |\setattribute{|\meta{attribute}|}{|\meta{value}|}|\\
144 % |\unsetattribute{|\meta{attribute}|}|\\
145 % Set and unset attributes in a manner analogous to |\setlength|. Note that
146 % attributes take a marker value when unset so this operation is distinct
147 % from setting the value to zero.
149 % \section{Plain \TeX\ interface}
151 % The \textsf{ltluatex} interface may be used with plain \TeX\ using 
152 % |\input{ltluatex}|. This inputs |ltluatex.tex| which inputs
153 % |etex.src| (or |etex.sty| if used with \LaTeX)
154 % if it is not already input, and then defines some internal commands to
155 % allow the \textsf{ltluatex} interface to be defined.
157 % The \textsf{luatexbase} package interface may also be used in plain \TeX,
158 % as before, by inputting the package |\input luatexbase.sty|. The new
159 % version of \textsf{luatexbase} is based on this \textsf{ltluatex}
160 % code but implements a compatibility layer providing the interface
161 % of the original package.
163 % \section{Lua functionality}
165 % \begingroup
167 % \begingroup\lccode`~=`_
168 % \lowercase{\endgroup\let~}_
169 % \catcode`_=12
171 % \subsection{Allocators in Lua}
173 % \DescribeMacro{new_attribute}
174 % |luatexbase.new_attribute(|\meta{attribute}|)|\\
175 % Returns an allocation number for the \meta{attribute}, indexed from~$1$.
176 % The attribute will be initialised with the marker value |-"7FFFFFFF|
177 % (`unset'). The attribute allocation sequence is shared with the \TeX{}
178 % code but this function does \emph{not} define a token using
179 % |\attributedef|.
180 % The attribute name is recorded in the |attributes| table. A
181 % metatable is provided so that the table syntax can be used
182 % consistently for attributes declared in \TeX\ or Lua.
184 % \noindent
185 % \DescribeMacro{new_whatsit}
186 % |luatexbase.new_whatsit(|\meta{whatsit}|)|\\
187 % Returns an allocation number for the custom \meta{whatsit}, indexed from~$1$.
189 % \noindent
190 % \DescribeMacro{new_bytecode}
191 % |luatexbase.new_bytecode(|\meta{bytecode}|)|\\
192 % Returns an allocation number for a bytecode register, indexed from~$1$.
193 % The optional \meta{name} argument is just used for logging.
195 % \noindent
196 % \DescribeMacro{new_chunkname}
197 % |luatexbase.new_chunkname(|\meta{chunkname}|)|\\
198 % Returns an allocation number for a Lua chunk name for use with 
199 % |\directlua| and |\latelua|, indexed from~$1$.
200 % The number is returned and also \meta{name} argument is added to the
201 % |lua.name| array at that index.
204 % \subsection{Lua access to \TeX{} register numbers}
206 % \DescribeMacro{registernumber}
207 % |luatexbase.registernumer(|\meta{name}|)|\\
208 % Sometimes (notably in the case of Lua attributes) it is necessary to
209 % access a register \emph{by number} that has been allocated by \TeX{}.
210 % This package provides a function to look up the relevant number
211 % using Lua\TeX{}'s internal tables. After for example
212 % |\newattribute\myattrib|, |\myattrib| would be defined by (say)
213 % |\myattrib=\attribute15|.  |luatexbase.registernumer("myattrib")|
214 % would then return the register number, $15$ in this case. If the string passed
215 % as argument does not correspond to a token defined by |\attributedef|,
216 % |\countdef| or similar commands, the Lua value |false| is returned.
218 % As an example, consider the input:
219 %\begin{verbatim}
220 % \newcommand\test[1]{%
221 % \typeout{#1: \expandafter\meaning\csname#1\endcsname^^J
222 % \space\space\space\space
223 % \directlua{tex.write(luatexbase.registernumber("#1") or "bad input")}%
224 % }}
226 % \test{undefinedrubbish}
228 % \test{space}
230 % \test{hbox}
232 % \test{@MM}
234 % \test{@tempdima}
235 % \test{@tempdimb}
237 % \test{strutbox}
239 % \test{sixt@@n}
241 % \attrbutedef\myattr=12
242 % \myattr=200
243 % \test{myattr}
245 %\end{verbatim}
247 % If the demonstration code is processed with Lua\LaTeX{} then the following
248 % would be produced in the log and terminal output.
249 %\begin{verbatim}
250 % undefinedrubbish: \relax
251 %      bad input
252 % space: macro:->
253 %      bad input
254 % hbox: \hbox
255 %      bad input
256 % @MM: \mathchar"4E20
257 %      20000
258 % @tempdima: \dimen14
259 %      14
260 % @tempdimb: \dimen15
261 %      15
262 % strutbox: \char"B
263 %      11
264 % sixt@@n: \char"10
265 %      16
266 % myattr: \attribute12
267 %      12
268 %\end{verbatim}
270 % Notice how undefined commands, or commands unrelated to registers
271 % do not produce an error, just return |false| and so print
272 % |bad input| here. Note also that commands defined by |\newbox| work and
273 % return the number of the box register even though the actual command
274 % holding this number is a |\chardef| defined token (there is no
275 % |\boxdef|).
277 % \subsection{Module utilities}
279 % \DescribeMacro{provides_module}
280 % |luatexbase.provides_module(|\meta{info}|)|\\
281 % This function is used by modules to identify themselves; the |info| should be
282 % a table containing information about the module. The required field
283 % |name| must contain the name of the module. It is recommended to provide a
284 % field |date| in the usual \LaTeX{} format |yyyy/mm/dd|. Optional fields
285 % |version| (a string) and |description| may be used if present. This
286 % information will be recorded in the log. Other fields are ignored.
288 % \noindent
289 % \DescribeMacro{module_info}
290 % \DescribeMacro{module_warning}
291 % \DescribeMacro{module_error}
292 % |luatexbase.module_info(|\meta{module}, \meta{text}|)|\\
293 % |luatexbase.module_warning(|\meta{module}, \meta{text}|)|\\
294 % |luatexbase.module_error(|\meta{module}, \meta{text}|)|\\
295 % These functions are similar to \LaTeX{}'s |\PackageError|, |\PackageWarning|
296 % and |\PackageInfo| in the way they format the output.  No automatic line
297 % breaking is done, you may still use |\n| as usual for that, and the name of
298 % the package will be prepended to each output line.
300 % Note that |luatexbase.module_error| raises an actual Lua error with |error()|,
301 % which currently means a call stack will be dumped. While this may not
302 % look pretty, at least it provides useful information for tracking the
303 % error down.
305 % \subsection{Callback management}
307 % \noindent
308 % \DescribeMacro{add_to_callback}
309 % |luatexbase.add_to_callback(|^^A
310 % \meta{callback}, \meta{function}, \meta{description}|)|
311 % Registers the \meta{function} into the \meta{callback} with a textual
312 % \meta{description} of the function. Functions are inserted into the callback
313 % in the order loaded.
315 % \noindent
316 % \DescribeMacro{remove_from_callback}
317 % |luatexbase.remove_from_callback(|\meta{callback}, \meta{description}|)|
318 % Removes the callback function with \meta{description} from the \meta{callback}.
319 % The removed function and its description 
320 % are returned as the results of this function.
322 % \noindent
323 % \DescribeMacro{in_callback}
324 % |luatexbase.in_callback(|\meta{callback}, \meta{description}|)|
325 % Checks if the \meta{description} matches one of the functions added
326 % to the list for the \meta{callback}, returning a boolean value.
328 % \noindent
329 % \DescribeMacro{disable_callback}
330 % |luatexbase.disable_callback(|\meta{callback}|)|
331 % Sets the \meta{callback} to \texttt{false} as described in the Lua\TeX{}
332 % manual for the underlying \texttt{callback.register} built-in. Callbacks
333 % will only be set to false (and thus be skipped entirely) if there are
334 % no functions registered using the callback.
336 % \noindent
337 % \DescribeMacro{callback_descriptions}
338 % A list of the descriptions of functions registered to the specified
339 % callback is returned. |{}| is returned if there are no functions registered.
341 % \noindent
342 % \DescribeMacro{create_callback}
343 % |luatexbase.create_callback(|\meta{name},meta{type},\meta{default}|)|
344 % Defines a user defined callback. The last argument is a default
345 % function or |false|.
347 % \noindent
348 % \DescribeMacro{call_callback}
349 % |luatexbase.call_callback(|\meta{name},\ldots|)|
350 % Calls a user defined callback with the supplied arguments.
352 % \endgroup
354 % \CheckSum{495}
355 % \StopEventually{}
357 % \section{Implementation}
359 %    \begin{macrocode}
360 %<*2ekernel|tex|latexrelease>
361 %<2ekernel|latexrelease>\ifx\directlua\@undefined\else
362 %    \end{macrocode}
365 % \changes{v1.0j}{2015/12/02}{Remove nonlocal iteration variables (PHG)}
366 % \changes{v1.0j}{2015/12/02}{Assorted typos fixed (PHG)}
367 % \changes{v1.0j}{2015/12/02}{Remove unreachable code after calls to error() (PHG)}
368 % \subsection{Minimum Lua\TeX{} version}
370 % Lua\TeX{} has changed a lot over time. In the kernel support for ancient
371 % versions is not provided: trying to build a format with a very old binary
372 % therefore gives some information in the log and loading stops. The cut-off
373 % selected here relates to the tree-searching behaviour of |require()|:
374 % from version~0.60, Lua\TeX{} will correctly find Lua files in the |texmf|
375 % tree without `help'.
376 %    \begin{macrocode}
377 %<latexrelease>\IncludeInRelease{2015/10/01}
378 %<latexrelease>                 {\newluafunction}{LuaTeX}%
379 \ifnum\luatexversion<60 %
380   \wlog{***************************************************}
381   \wlog{* LuaTeX version too old for ltluatex support *}
382   \wlog{***************************************************}
383   \expandafter\endinput
385 %    \end{macrocode}
387 % \subsection{Older \LaTeX{}/Plain \TeX\ setup}
389 %    \begin{macrocode}
390 %<*tex>
391 %    \end{macrocode}
393 % Older \LaTeX{} formats don't have the primitives with `native' names:
394 % sort that out. If they already exist this will still be safe.
395 %    \begin{macrocode}
396 \directlua{tex.enableprimitives("",tex.extraprimitives("luatex"))}
397 %    \end{macrocode}
399 %    \begin{macrocode}
400 \ifx\e@alloc\@undefined
401 %    \end{macrocode}
403 % In pre-2014 \LaTeX{}, or plain \TeX{}, load |etex.{sty,src}|.
404 %    \begin{macrocode}
405   \ifx\documentclass\@undefined
406     \ifx\loccount\@undefined
407       \input{etex.src}%
408     \fi
409     \catcode`\@=11 %
410     \outer\expandafter\def\csname newfam\endcsname
411                           {\alloc@8\fam\chardef\et@xmaxfam}
412   \else
413     \RequirePackage{etex}
414     \expandafter\def\csname newfam\endcsname
415                     {\alloc@8\fam\chardef\et@xmaxfam}
416     \expandafter\let\expandafter\new@mathgroup\csname newfam\endcsname
417   \fi
418 %    \end{macrocode}
420 % \subsubsection{Fixes to \texttt{etex.src}/\texttt{etex.sty}}
422 % These could and probably should be made directly in an
423 % update to |etex.src| which already has some Lua\TeX-specific
424 % code, but does not define the correct range for Lua\TeX.
426 %    \begin{macrocode}
427 % 2015-07-13 higher range in luatex
428 \edef \et@xmaxregs {\ifx\directlua\@undefined 32768\else 65536\fi}
429 % luatex/xetex also allow more math fam
430 \edef \et@xmaxfam {\ifx\Umathchar\@undefined\sixt@@n\else\@cclvi\fi}
431 %    \end{macrocode}
433 %    \begin{macrocode}
434 \count 270=\et@xmaxregs % locally allocates \count registers
435 \count 271=\et@xmaxregs % ditto for \dimen registers
436 \count 272=\et@xmaxregs % ditto for \skip registers
437 \count 273=\et@xmaxregs % ditto for \muskip registers
438 \count 274=\et@xmaxregs % ditto for \box registers
439 \count 275=\et@xmaxregs % ditto for \toks registers
440 \count 276=\et@xmaxregs % ditto for \marks classes
441 %    \end{macrocode}
443 % and 256 or 16 fam. (Done above due to plain/\LaTeX\ differences in
444 % \textsf{ltluatex}.)
445 %    \begin{macrocode}
446 % \outer\def\newfam{\alloc@8\fam\chardef\et@xmaxfam}
447 %    \end{macrocode}
449 % End of proposed changes to \texttt{etex.src}
451 % \subsubsection{luatex specific settings}
453 % Switch to global cf |luatex.sty| to leave room for inserts
454 % not really needed for luatex but possibly most compatible
455 % with existing use.
456 %    \begin{macrocode}
457 \expandafter\let\csname newcount\expandafter\expandafter\endcsname
458                 \csname globcount\endcsname
459 \expandafter\let\csname newdimen\expandafter\expandafter\endcsname
460                 \csname globdimen\endcsname
461 \expandafter\let\csname newskip\expandafter\expandafter\endcsname
462                 \csname globskip\endcsname
463 \expandafter\let\csname newbox\expandafter\expandafter\endcsname
464                 \csname globbox\endcsname
465 %    \end{macrocode}
467 % Define|\e@alloc| as in latex (the existing macros in |etex.src|
468 % hard to extend to further register types as they assume specific
469 % 26x and 27x count range. For compatibility the existing register
470 % allocation is not changed.
472 %    \begin{macrocode}
473 \chardef\e@alloc@top=65535
474 \let\e@alloc@chardef\chardef
475 %    \end{macrocode}
477 %    \begin{macrocode}
478 \def\e@alloc#1#2#3#4#5#6{%
479   \global\advance#3\@ne
480   \e@ch@ck{#3}{#4}{#5}#1%
481   \allocationnumber#3\relax
482   \global#2#6\allocationnumber
483   \wlog{\string#6=\string#1\the\allocationnumber}}%
484 %    \end{macrocode}
486 %    \begin{macrocode}
487 \gdef\e@ch@ck#1#2#3#4{%
488   \ifnum#1<#2\else
489     \ifnum#1=#2\relax
490       #1\@cclvi
491       \ifx\count#4\advance#1 10 \fi
492     \fi
493     \ifnum#1<#3\relax
494     \else
495       \errmessage{No room for a new \string#4}%
496     \fi
497   \fi}%
498 %    \end{macrocode}
500 % Two simple \LaTeX\ macros used in |ltlatex.sty|.
501 %    \begin{macrocode}
502 \long\def\@gobble#1{}
503 \long\def\@firstofone#1{#1}
504 %    \end{macrocode}
506 %    \begin{macrocode}
507 % Fix up allocations not to clash with |etex.src|.
508 %    \end{macrocode}
510 %    \begin{macrocode}
511 \expandafter\csname newcount\endcsname\e@alloc@attribute@count
512 \expandafter\csname newcount\endcsname\e@alloc@ccodetable@count
513 \expandafter\csname newcount\endcsname\e@alloc@luafunction@count
514 \expandafter\csname newcount\endcsname\e@alloc@whatsit@count
515 \expandafter\csname newcount\endcsname\e@alloc@bytecode@count
516 \expandafter\csname newcount\endcsname\e@alloc@luachunk@count
517 %    \end{macrocode}
519 % End of conditional setup for plain \TeX\ / old \LaTeX.
520 %    \begin{macrocode}
522 %</tex>
523 %    \end{macrocode}
526 % \subsection{Attributes}
528 % \begin{macro}{\newattribute}
529 % \changes{v1.0a}{2015/09/24}{Macro added}
530 %   As is generally the case for the Lua\TeX{} registers we start here
531 %   from~$1$. Notably, some code assumes that |\attribute0| is never used so
532 %   this is important in this case.
533 %    \begin{macrocode}
534 \ifx\e@alloc@attribute@count\@undefined
535   \countdef\e@alloc@attribute@count=258
537 \def\newattribute#1{%
538   \e@alloc\attribute\attributedef
539     \e@alloc@attribute@count\m@ne\e@alloc@top#1%
541 \e@alloc@attribute@count=\z@
542 %    \end{macrocode}
543 % \end{macro}
545 % \begin{macro}{\setattribute}
546 % \begin{macro}{\unsetattribute}
547 %   Handy utilities.
548 %    \begin{macrocode}
549 \def\setattribute#1#2{#1=\numexpr#2\relax}
550 \def\unsetattribute#1{#1=-"7FFFFFFF\relax}
551 %    \end{macrocode}
552 % \end{macro}
553 % \end{macro}
555 % \subsection{Category code tables}
557 % \begin{macro}{\newcatcodetable}
558 % \changes{v1.0a}{2015/09/24}{Macro added}
559 %   Category code tables are allocated with a limit half of that used by Lua\TeX{}
560 %   for everything else. At the end of allocation there needs to be an
561 %   initialisation step. Table~$0$ is already taken (it's the global one for
562 %   current use) so the allocation starts at~$1$.
563 %    \begin{macrocode}
564 \ifx\e@alloc@ccodetable@count\@undefined
565   \countdef\e@alloc@ccodetable@count=259
567 \def\newcatcodetable#1{%
568   \e@alloc\catcodetable\chardef
569     \e@alloc@ccodetable@count\m@ne{"8000}#1%
570   \initcatcodetable\allocationnumber
572 \e@alloc@ccodetable@count=\z@
573 %    \end{macrocode}
574 % \end{macro}
576 % \changes{v1.0l}{2015/12/18}{Load Unicode data from source}
577 % \begin{macro}{\catcodetable@initex}
578 % \changes{v1.0a}{2015/09/24}{Macro added}
579 % \begin{macro}{\catcodetable@string}
580 % \changes{v1.0a}{2015/09/24}{Macro added}
581 % \begin{macro}{\catcodetable@latex}
582 % \changes{v1.0a}{2015/09/24}{Macro added}
583 % \begin{macro}{\catcodetable@atletter}
584 % \changes{v1.0a}{2015/09/24}{Macro added}
585 %   Save a small set of standard tables. The Unicode data is read
586 %   here in using a parser simplified from that in |load-unicode-data|:
587 %   only the nature of letters needs to be detected.
588 %    \begin{macrocode}
589 \newcatcodetable\catcodetable@initex
590 \newcatcodetable\catcodetable@string
591 \begingroup
592   \def\setrangecatcode#1#2#3{%
593     \ifnum#1>#2 %
594       \expandafter\@gobble
595     \else
596       \expandafter\@firstofone
597     \fi
598       {%
599         \catcode#1=#3 %
600         \expandafter\setrangecatcode\expandafter
601           {\number\numexpr#1 + 1\relax}{#2}{#3}
602       }%
603   }
604   \@firstofone{%
605     \catcodetable\catcodetable@initex
606       \catcode0=12 %
607       \catcode13=12 %
608       \catcode37=12 %
609       \setrangecatcode{65}{90}{12}%
610       \setrangecatcode{97}{122}{12}%
611       \catcode92=12 %
612       \catcode127=12 %
613       \savecatcodetable\catcodetable@string
614     \endgroup
615   }%
616 \newcatcodetable\catcodetable@latex
617 \newcatcodetable\catcodetable@atletter
618 \begingroup
619   \def\parseunicodedataI#1;#2;#3;#4\relax{%
620     \parseunicodedataII#1;#3;#2 First>\relax
621   }%
622   \def\parseunicodedataII#1;#2;#3 First>#4\relax{%
623     \ifx\relax#4\relax
624       \expandafter\parseunicodedataIII
625     \else
626       \expandafter\parseunicodedataIV
627     \fi
628       {#1}#2\relax%
629   }%
630   \def\parseunicodedataIII#1#2#3\relax{%
631     \ifnum 0%
632       \if L#21\fi
633       \if M#21\fi
634       >0 %
635       \catcode"#1=11 %
636     \fi
637   }%
638   \def\parseunicodedataIV#1#2#3\relax{%
639     \read\unicoderead to \unicodedataline
640     \if L#2%
641       \count0="#1 %
642       \expandafter\parseunicodedataV\unicodedataline\relax
643     \fi
644   }%
645   \def\parseunicodedataV#1;#2\relax{%
646     \loop
647       \unless\ifnum\count0>"#1 %
648         \catcode\count0=11 %
649         \advance\count0 by 1 %
650     \repeat
651   }%
652   \def\storedpar{\par}%
653   \chardef\unicoderead=\numexpr\count16 + 1\relax
654   \openin\unicoderead=UnicodeData.txt %
655   \loop\unless\ifeof\unicoderead %
656     \read\unicoderead to \unicodedataline  
657     \unless\ifx\unicodedataline\storedpar
658       \expandafter\parseunicodedataI\unicodedataline\relax
659     \fi
660   \repeat
661   \closein\unicoderead
662   \@firstofone{%
663     \catcode64=12 %
664     \savecatcodetable\catcodetable@latex
665     \catcode64=11 %
666     \savecatcodetable\catcodetable@atletter
667    }
668 \endgroup
669 %    \end{macrocode}
670 % \end{macro}
671 % \end{macro}
672 % \end{macro}
673 % \end{macro}
675 % \subsection{Named Lua functions}
677 % \begin{macro}{\newluafunction}
678 % \changes{v1.0a}{2015/09/24}{Macro added}
679 %   Much the same story for allocating Lua\TeX{} functions except here they are
680 %   just numbers so they are allocated in the same way as boxes.
681 %   Lua indexes from~$1$ so once again slot~$0$ is skipped.
682 %    \begin{macrocode}
683 \ifx\e@alloc@luafunction@count\@undefined
684   \countdef\e@alloc@luafunction@count=260
686 \def\newluafunction{%
687   \e@alloc\luafunction\e@alloc@chardef
688     \e@alloc@luafunction@count\m@ne\e@alloc@top
690 \e@alloc@luafunction@count=\z@
691 %    \end{macrocode}
692 % \end{macro}
694 % \subsection{Custom whatsits}
696 % \begin{macro}{\newwhatsit}
697 % \changes{v1.0a}{2015/09/24}{Macro added}
698 %   These are only settable from Lua but for consistency are definable
699 %   here.
700 %    \begin{macrocode}
701 \ifx\e@alloc@whatsit@count\@undefined
702   \countdef\e@alloc@whatsit@count=261
704 \def\newwhatsit#1{%
705   \e@alloc\whatsit\e@alloc@chardef
706     \e@alloc@whatsit@count\m@ne\e@alloc@top#1%
708 \e@alloc@whatsit@count=\z@
709 %    \end{macrocode}
710 % \end{macro}
712 % \subsection{Lua bytecode registers}
714 % \begin{macro}{\newluabytecode}
715 % \changes{v1.0a}{2015/09/24}{Macro added}
716 %   These are only settable from Lua but for consistency are definable
717 %   here.
718 %    \begin{macrocode}
719 \ifx\e@alloc@bytecode@count\@undefined
720   \countdef\e@alloc@bytecode@count=262
722 \def\newluabytecode#1{%
723   \e@alloc\luabytecode\e@alloc@chardef
724     \e@alloc@bytecode@count\m@ne\e@alloc@top#1%
726 \e@alloc@bytecode@count=\z@
727 %    \end{macrocode}
728 % \end{macro}
730 % \subsection{Lua chunk registers}
732 % \begin{macro}{\newluachunkname}
733 % \changes{v1.0a}{2015/09/24}{Macro added}
734 % As for bytecode registers, but in addition we need to add a string
735 % to the \verb|lua.name| table to use in stack tracing. We use the
736 % name of the command passed to the allocator, with no backslash.
737 %    \begin{macrocode}
738 \ifx\e@alloc@luachunk@count\@undefined
739   \countdef\e@alloc@luachunk@count=263
741 \def\newluachunkname#1{%
742   \e@alloc\luachunk\e@alloc@chardef
743     \e@alloc@luachunk@count\m@ne\e@alloc@top#1%
744     {\escapechar\m@ne
745     \directlua{lua.name[\the\allocationnumber]="\string#1"}}%
747 \e@alloc@luachunk@count=\z@
748 %    \end{macrocode}
749 % \end{macro}
751 % \subsection{Lua loader}
753 % Load the Lua code at the start of every job.
754 % For the conversion of \TeX{} into numbers at the Lua side we need some
755 % known registers: for convenience we use a set of systematic names, which
756 % means using a group around the Lua loader.
757 %    \begin{macrocode}
758 %<2ekernel>\everyjob\expandafter{%
759 %<2ekernel>  \the\everyjob
760   \begingroup
761     \attributedef\attributezero=0 %
762     \chardef     \charzero     =0 %
763 %    \end{macrocode}
764 % Note name change required on older luatex, for hash table access.
765 %    \begin{macrocode}
766     \countdef    \CountZero    =0 % 
767     \dimendef    \dimenzero    =0 %
768     \mathchardef \mathcharzero =0 %
769     \muskipdef   \muskipzero   =0 %
770     \skipdef     \skipzero     =0 %
771     \toksdef     \tokszero     =0 %
772     \directlua{require("ltluatex")}
773   \endgroup
774 %<2ekernel>}
775 %<latexrelease>\EndIncludeInRelease
776 %    \end{macrocode}
778 %    \begin{macrocode}
779 % \changes{v1.0b}{2015/10/02}{Fix backing out of \TeX{} code}
780 % \changes{v1.0c}{2015/10/02}{Allow backing out of Lua code}
781 %<latexrelease>\IncludeInRelease{0000/00/00}
782 %<latexrelease>                 {\newluafunction}{LuaTeX}%
783 %<latexrelease>\let\e@alloc@attribute@count\@undefined
784 %<latexrelease>\let\newattribute\@undefined
785 %<latexrelease>\let\setattribute\@undefined
786 %<latexrelease>\let\unsetattribute\@undefined
787 %<latexrelease>\let\e@alloc@ccodetable@count\@undefined
788 %<latexrelease>\let\newcatcodetable\@undefined
789 %<latexrelease>\let\catcodetable@initex\@undefined
790 %<latexrelease>\let\catcodetable@string\@undefined
791 %<latexrelease>\let\catcodetable@latex\@undefined
792 %<latexrelease>\let\catcodetable@atletter\@undefined
793 %<latexrelease>\let\e@alloc@luafunction@count\@undefined
794 %<latexrelease>\let\newluafunction\@undefined
795 %<latexrelease>\let\e@alloc@luafunction@count\@undefined
796 %<latexrelease>\let\newwhatsit\@undefined
797 %<latexrelease>\let\e@alloc@whatsit@count\@undefined
798 %<latexrelease>\let\newluabytecode\@undefined
799 %<latexrelease>\let\e@alloc@bytecode@count\@undefined
800 %<latexrelease>\let\newluachunkname\@undefined
801 %<latexrelease>\let\e@alloc@luachunk@count\@undefined
802 %<latexrelease>\directlua{luatexbase.uninstall()}
803 %<latexrelease>\EndIncludeInRelease
804 %    \end{macrocode}
806 %    \begin{macrocode}
807 %<2ekernel|latexrelease>\fi
808 %</2ekernel|tex|latexrelease>
809 %    \end{macrocode}
811 % \subsection{Lua module preliminaries}
813 % \begingroup
815 %  \begingroup\lccode`~=`_
816 %  \lowercase{\endgroup\let~}_
817 %  \catcode`_=12
819 %    \begin{macrocode}
820 %<*lua>
821 %    \end{macrocode}
823 % Some set up for the Lua module which is needed for all of the Lua
824 % functionality added here.
826 % \begin{macro}{luatexbase}
827 % \changes{v1.0a}{2015/09/24}{Table added}
828 %   Set up the table for the returned functions. This is used to expose
829 %   all of the public functions.
830 %    \begin{macrocode}
831 luatexbase       = luatexbase or { }
832 local luatexbase = luatexbase
833 %    \end{macrocode}
834 % \end{macro}
836 % Some Lua best practice: use local versions of functions where possible.
837 %    \begin{macrocode}
838 local string_gsub      = string.gsub
839 local tex_count        = tex.count
840 local tex_setattribute = tex.setattribute
841 local tex_setcount     = tex.setcount
842 local texio_write_nl   = texio.write_nl
843 %    \end{macrocode}
844 % \changes{v1.0i}{2015/11/29}{Declare this as local before used in the module error definitions (PHG)}
845 %    \begin{macrocode}
846 local luatexbase_warning
847 local luatexbase_error
848 %    \end{macrocode}
850 % \subsection{Lua module utilities}
852 % \subsubsection{Module tracking}
854 % \begin{macro}{modules}
855 % \changes{v1.0a}{2015/09/24}{Function modified}
856 %   To allow tracking of module usage, a structure is provided to store
857 %   information and to return it.
858 %    \begin{macrocode}
859 local modules = modules or { }
860 %    \end{macrocode}
861 % \end{macro}
863 % \begin{macro}{provides_module}
864 % \changes{v1.0a}{2015/09/24}{Function added}
865 % \changes{v1.0f}{2015/10/03}{use luatexbase\_log}
866 % Local function to write to the log.
867 %    \begin{macrocode}
868 local function luatexbase_log(text)
869   texio_write_nl("log", text)
871 %    \end{macrocode}
873 %   Modelled on |\ProvidesPackage|, we store much the same information but
874 %   with a little more structure.
875 %    \begin{macrocode}
876 local function provides_module(info)
877   if not (info and info.name) then
878     luatexbase_error("Missing module name for provides_module")
879   end
880   local function spaced(text)
881     return text and (" " .. text) or ""
882   end
883   luatexbase_log(
884     "Lua module: " .. info.name
885       .. spaced(info.date)
886       .. spaced(info.version)
887       .. spaced(info.description)
888   )
889   modules[info.name] = info
891 luatexbase.provides_module = provides_module
892 %    \end{macrocode}
893 % \end{macro}
895 % \subsubsection{Module messages}
897 % There are various warnings and errors that need to be given. For warnings
898 % we can get exactly the same formatting as from \TeX{}. For errors we have to
899 % make some changes. Here we give the text of the error in the \LaTeX{} format
900 % then force an error from Lua to halt the run. Splitting the message text is
901 % done using |\n| which takes the place of |\MessageBreak|.
903 % First an auxiliary for the formatting: this measures up the message
904 % leader so we always get the correct indent.
905 % \changes{v1.0j}{2015/12/02}{Declaration/use of first\_head fixed (PHG)}
906 %    \begin{macrocode}
907 local function msg_format(mod, msg_type, text)
908   local leader = ""
909   local cont
910   local first_head
911   if mod == "LaTeX" then
912     cont = string_gsub(leader, ".", " ")
913     first_head = leader .. "LaTeX: "
914   else
915     first_head = leader .. "Module "  .. msg_type
916     cont = "(" .. mod .. ")"
917       .. string_gsub(first_head, ".", " ")
918     first_head =  leader .. "Module "  .. mod .. " " .. msg_type  .. ":"
919   end
920   if msg_type == "Error" then
921     first_head = "\n" .. first_head
922   end
923   if string.sub(text,-1) ~= "\n" then
924     text = text .. " "
925   end
926   return first_head .. " "
927     .. string_gsub(
928          text 
929          .. "on input line "
930          .. tex.inputlineno, "\n", "\n" .. cont .. " "
931       )
932    .. "\n"
934 %    \end{macrocode}
936 % \begin{macro}{module_info}
937 % \changes{v1.0a}{2015/09/24}{Function added}
938 % \begin{macro}{module_warning}
939 % \changes{v1.0a}{2015/09/24}{Function added}
940 % \begin{macro}{module_error}
941 % \changes{v1.0a}{2015/09/24}{Function added}
942 %   Write messages.
943 %    \begin{macrocode}
944 local function module_info(mod, text)
945   texio_write_nl("log", msg_format(mod, "Info", text))
947 luatexbase.module_info = module_info
948 local function module_warning(mod, text)
949   texio_write_nl("term and log",msg_format(mod, "Warning", text))
951 luatexbase.module_warning = module_warning
952 local function module_error(mod, text)
953   error(msg_format(mod, "Error", text))
955 luatexbase.module_error = module_error
956 %    \end{macrocode}
957 % \end{macro}
958 % \end{macro}
959 % \end{macro}
961 % Dedicated versions for the rest of the code here.
962 %    \begin{macrocode}
963 function luatexbase_warning(text)
964   module_warning("luatexbase", text)
966 function luatexbase_error(text)
967   module_error("luatexbase", text)
969 %    \end{macrocode}
972 % \subsection{Accessing register numbers from Lua}
974 % \changes{v1.0g}{2015/11/14}{Track Lua\TeX{} changes for
975 %   \texttt{(new)token.create}}
976 % Collect up the data from the \TeX{} level into a Lua table: from
977 % version~0.80, Lua\TeX{} makes that easy.
978 % \changes{v1.0j}{2015/12/02}{Adjust hashtokens to store the result of tex.hashtokens()), not the function (PHG)}
979 %    \begin{macrocode}
980 local luaregisterbasetable = { }
981 local registermap = {
982   attributezero = "assign_attr"    ,
983   charzero      = "char_given"     ,
984   CountZero     = "assign_int"     ,
985   dimenzero     = "assign_dimen"   ,
986   mathcharzero  = "math_given"     ,
987   muskipzero    = "assign_mu_skip" ,
988   skipzero      = "assign_skip"    ,
989   tokszero      = "assign_toks"    ,
991 local createtoken
992 if tex.luatexversion > 81 then
993   createtoken = token.create
994 elseif tex.luatexversion > 79 then
995   createtoken = newtoken.create 
997 local hashtokens    = tex.hashtokens()
998 local luatexversion = tex.luatexversion
999 for i,j in pairs (registermap) do
1000   if luatexversion < 80 then
1001     luaregisterbasetable[hashtokens[i][1]] =
1002       hashtokens[i][2]
1003   else
1004     luaregisterbasetable[j] = createtoken(i).mode
1005   end
1007 %    \end{macrocode}
1009 % \begin{macro}{registernumber}
1010 %   Working out the correct return value can be done in two ways. For older
1011 %   Lua\TeX{} releases it has to be extracted from the |hashtokens|. On the
1012 %   other hand, newer Lua\TeX{}'s have |newtoken|, and whilst |.mode| isn't
1013 %   currently documented, Hans Hagen pointed to this approach so we should be
1014 %   OK.
1015 %    \begin{macrocode}
1016 local registernumber
1017 if luatexversion < 80 then
1018   function registernumber(name)
1019     local nt = hashtokens[name]
1020     if(nt and luaregisterbasetable[nt[1]]) then
1021       return nt[2] - luaregisterbasetable[nt[1]]
1022     else
1023       return false
1024     end
1025   end
1026 else
1027   function registernumber(name)
1028     local nt = createtoken(name)
1029     if(luaregisterbasetable[nt.cmdname]) then
1030       return nt.mode - luaregisterbasetable[nt.cmdname]
1031     else
1032       return false
1033     end
1034   end
1036 luatexbase.registernumber = registernumber
1037 %    \end{macrocode}
1038 % \end{macro}
1040 % \subsection{Attribute allocation}
1042 % \begin{macro}{new_attribute}
1043 % \changes{v1.0a}{2015/09/24}{Function added}
1044 %   As attributes are used for Lua manipulations its useful to be able
1045 %   to assign from this end.
1046 %    \begin{macrocode}
1047 local attributes=setmetatable(
1050 __index = function(t,key)
1051 return registernumber(key) or nil
1052 end}
1054 luatexbase.attributes=attributes
1055 %    \end{macrocode}
1057 %    \begin{macrocode}
1058 local function new_attribute(name)
1059   tex_setcount("global", "e@alloc@attribute@count",
1060                           tex_count["e@alloc@attribute@count"] + 1)
1061   if tex_count["e@alloc@attribute@count"] > 65534 then
1062     luatexbase_error("No room for a new \\attribute")
1063   end
1064   attributes[name]= tex_count["e@alloc@attribute@count"]
1065   luatexbase_log("Lua-only attribute " .. name .. " = " ..
1066                  tex_count["e@alloc@attribute@count"])
1067   return tex_count["e@alloc@attribute@count"]
1069 luatexbase.new_attribute = new_attribute
1070 %    \end{macrocode}
1071 % \end{macro}
1073 % \subsection{Custom whatsit allocation}
1075 % \begin{macro}{new_whatsit}
1076 % Much the same as for attribute allocation in Lua.
1077 %    \begin{macrocode}
1078 local function new_whatsit(name)
1079   tex_setcount("global", "e@alloc@whatsit@count", 
1080                          tex_count["e@alloc@whatsit@count"] + 1)
1081   if tex_count["e@alloc@whatsit@count"] > 65534 then
1082     luatexbase_error("No room for a new custom whatsit")
1083   end
1084   luatexbase_log("Custom whatsit " .. (name or "") .. " = " ..
1085                  tex_count["e@alloc@whatsit@count"])
1086   return tex_count["e@alloc@whatsit@count"]
1088 luatexbase.new_whatsit = new_whatsit
1089 %    \end{macrocode}
1090 % \end{macro}
1092 % \subsection{Bytecode register allocation}
1094 % \begin{macro}{new_bytecode}
1095 % Much the same as for attribute allocation in Lua.
1096 % The optional \meta{name} argument is used in the log if given.
1097 %    \begin{macrocode}
1098 local function new_bytecode(name)
1099   tex_setcount("global", "e@alloc@bytecode@count", 
1100                          tex_count["e@alloc@bytecode@count"] + 1)
1101   if tex_count["e@alloc@bytecode@count"] > 65534 then
1102     luatexbase_error("No room for a new bytecode register")
1103   end
1104   luatexbase_log("Lua bytecode " .. (name or "") .. " = " ..
1105                  tex_count["e@alloc@bytecode@count"])
1106   return tex_count["e@alloc@bytecode@count"]
1108 luatexbase.new_bytecode = new_bytecode
1109 %    \end{macrocode}
1110 % \end{macro}
1112 % \subsection{Lua chunk name allocation}
1114 % \begin{macro}{new_chunkname}
1115 % As for bytecode registers but also store the name in the
1116 % |lua.name| table.
1117 %    \begin{macrocode}
1118 local function new_chunkname(name)
1119   tex_setcount("global", "e@alloc@luachunk@count", 
1120                          tex_count["e@alloc@luachunk@count"] + 1)
1121   local chunkname_count = tex_count["e@alloc@luachunk@count"]
1122   chunkname_count = chunkname_count + 1
1123   if chunkname_count > 65534 then
1124     luatexbase_error("No room for a new chunkname")
1125   end
1126   lua.name[chunkname_count]=name
1127   luatexbase_log("Lua chunkname " .. (name or "") .. " = " .. 
1128                  chunkname_count .. "\n")
1129   return chunkname_count
1131 luatexbase.new_chunkname = new_chunkname
1132 %    \end{macrocode}
1133 % \end{macro}
1135 % \subsection{Lua callback management}
1137 % The native mechanism for callbacks in Lua\TeX\ allows only one per function.
1138 % That is extremely restrictive and so a mechanism is needed to add and
1139 % remove callbacks from the appropriate hooks.
1141 % \subsubsection{Housekeeping}
1143 % The main table: keys are callback names, and values are the associated lists
1144 % of functions. More precisely, the entries in the list are tables holding the
1145 % actual function as |func| and the identifying description as |description|.
1146 % Only callbacks with a non-empty list of functions have an entry in this
1147 % list.
1148 %    \begin{macrocode}
1149 local callbacklist = callbacklist or { }
1150 %    \end{macrocode}
1152 % Numerical codes for callback types, and name-to-value association (the
1153 % table keys are strings, the values are numbers).
1154 %    \begin{macrocode}
1155 local list, data, exclusive, simple = 1, 2, 3, 4
1156 local types = {
1157   list      = list,
1158   data      = data,
1159   exclusive = exclusive,
1160   simple    = simple,
1162 %    \end{macrocode}
1164 % Now, list all predefined callbacks with their current type, based on the
1165 % Lua\TeX{} manual version~0.80. A full list of the currently-available
1166 % callbacks can be obtained using
1167 %  \begin{verbatim}
1168 %    \directlua{
1169 %      for i,_ in pairs(callback.list()) do
1170 %        texio.write_nl("- " .. i)
1171 %      end
1172 %    }
1173 %    \bye
1174 %  \end{verbatim}
1175 % in plain Lua\TeX{}. (Some undocumented callbacks are omitted as they are
1176 % to be removed.)
1177 %    \begin{macrocode}
1178 local callbacktypes = callbacktypes or {
1179 %    \end{macrocode}
1180 %   Section 4.1.1: file discovery callbacks.
1181 %    \begin{macrocode}
1182   find_read_file     = exclusive,
1183   find_write_file    = exclusive,
1184   find_font_file     = data,
1185   find_output_file   = data,
1186   find_format_file   = data,
1187   find_vf_file       = data,
1188   find_map_file      = data,
1189   find_enc_file      = data,
1190   find_sfd_file      = data,
1191   find_pk_file       = data,
1192   find_data_file     = data,
1193   find_opentype_file = data,
1194   find_truetype_file = data,
1195   find_type1_file    = data,
1196   find_image_file    = data,
1197 %    \end{macrocode}
1198 % Section 4.1.2: file reading callbacks.
1199 %    \begin{macrocode}
1200   open_read_file     = exclusive,
1201   read_font_file     = exclusive,
1202   read_vf_file       = exclusive,
1203   read_map_file      = exclusive,
1204   read_enc_file      = exclusive,
1205   read_sfd_file      = exclusive,
1206   read_pk_file       = exclusive,
1207   read_data_file     = exclusive,
1208   read_truetype_file = exclusive,
1209   read_type1_file    = exclusive,
1210   read_opentype_file = exclusive,
1211 %    \end{macrocode}
1212 % Section 4.1.3: data processing callbacks.
1213 %    \begin{macrocode}
1214   process_input_buffer  = data,
1215   process_output_buffer = data,
1216   process_jobname       = data,
1217   token_filter          = exclusive,
1218 %    \end{macrocode}
1219 % Section 4.1.4: node list processing callbacks.
1220 %    \begin{macrocode}
1221   buildpage_filter      = simple,
1222   pre_linebreak_filter  = list,
1223   linebreak_filter      = list,
1224   post_linebreak_filter = list,
1225   hpack_filter          = list,
1226   vpack_filter          = list,
1227   pre_output_filter     = list,
1228   hyphenate             = simple,
1229   ligaturing            = simple,
1230   kerning               = simple,
1231   mlist_to_hlist        = list,
1232 %    \end{macrocode}
1233 % Section 4.1.5: information reporting callbacks.
1234 %    \begin{macrocode}
1235   pre_dump            = simple,
1236   start_run           = simple,
1237   stop_run            = simple,
1238   start_page_number   = simple,
1239   stop_page_number    = simple,
1240   show_error_hook     = simple,
1241   show_error_message  = simple,
1242   show_lua_error_hook = simple,
1243   start_file          = simple,
1244   stop_file           = simple,
1245 %    \end{macrocode}
1246 % Section 4.1.6: PDF-related callbacks.
1247 %    \begin{macrocode}
1248   finish_pdffile = data,
1249   finish_pdfpage = data,
1250 %    \end{macrocode}
1251 % Section 4.1.7: font-related callbacks.
1252 %    \begin{macrocode}
1253   define_font = exclusive,
1254 %    \end{macrocode}
1255 % Undocumented callbacks which are likely to get documented.
1256 %    \begin{macrocode}
1257   find_cidmap_file           = data,
1258   pdf_stream_filter_callback = data,
1260 luatexbase.callbacktypes=callbacktypes
1261 %    \end{macrocode}
1263 % \begin{macro}{callback.register}
1264 % \changes{v1.0a}{2015/09/24}{Function modified}
1265 %   Save the original function for registering callbacks and prevent the
1266 %   original being used. The original is saved in a place that remains
1267 %   available so other more sophisticated code can override the approach
1268 %   taken by the kernel if desired.
1269 %    \begin{macrocode}
1270 local callback_register = callback_register or callback.register
1271 function callback.register()
1272   luatexbase_error("Attempt to use callback.register() directly\n")
1274 %    \end{macrocode}
1275 % \end{macro}
1277 % \subsubsection{Handlers}
1279 % The handler function is registered into the callback when the
1280 % first function is added to this callback's list. Then, when the callback
1281 % is called, the handler takes care of running all functions in the list.
1282 % When the last function is removed from the callback's list, the handler
1283 % is unregistered.
1285 % More precisely, the functions below are used to generate a specialized
1286 % function (closure) for a given callback, which is the actual handler.
1288 % Handler for |data| callbacks.
1289 %    \begin{macrocode}
1290 local function data_handler(name)
1291   return function(data, ...)
1292     for _,i in ipairs(callbacklist[name]) do
1293       data = i.func(data,...)
1294     end
1295     return data
1296   end
1298 %    \end{macrocode}
1299 % Handler for |exclusive| callbacks. We can assume |callbacklist[name]| is not
1300 % empty: otherwise, the function wouldn't be registered in the callback any
1301 % more.
1302 %    \begin{macrocode}
1303 local function exclusive_handler(name)
1304   return function(...)
1305     return callbacklist[name][1].func(...)
1306   end
1308 %    \end{macrocode}
1309 % Handler for |list| callbacks.
1310 % \changes{v1.0k}{2015/12/02}{resolve name and i.description (PHG)}
1311 %    \begin{macrocode}
1312 local function list_handler(name)
1313   return function(head, ...)
1314     local ret
1315     local alltrue = true
1316     for _,i in ipairs(callbacklist[name]) do
1317       ret = i.func(head, ...)
1318       if ret == false then
1319         luatexbase_warning(
1320           "Function `" .. i.description .. "' returned false\n"
1321             .. "in callback `" .. name .."'"
1322          )
1323          break
1324       end
1325       if ret ~= true then
1326         alltrue = false
1327         head = ret
1328       end
1329     end
1330     return alltrue and true or head
1331   end
1333 %    \end{macrocode}
1334 % Handler for |simple| callbacks.
1335 %    \begin{macrocode}
1336 local function simple_handler(name)
1337   return function(...)
1338     for _,i in ipairs(callbacklist[name]) do
1339       i.func(...)
1340     end
1341   end
1343 %    \end{macrocode}
1345 % Keep a handlers table for indexed access.
1346 %    \begin{macrocode}
1347 local handlers = {
1348   [data]      = data_handler,
1349   [exclusive] = exclusive_handler,
1350   [list]      = list_handler,
1351   [simple]    = simple_handler,
1353 %    \end{macrocode}
1355 % \subsubsection{Public functions for callback management}
1357 % Defining user callbacks perhaps should be in package code,
1358 % but impacts on |add_to_callback|.
1359 % If a default function is not required, it may be declared as |false|.
1360 % First we need a list of user callbacks.
1361 %    \begin{macrocode}
1362 local user_callbacks_defaults = { }
1363 %    \end{macrocode}
1365 % \begin{macro}{create_callback}
1366 % \changes{v1.0a}{2015/09/24}{Function added}
1367 % \changes{v1.0i}{2015/11/29}{Check name is not nil in error message (PHG)}
1368 % \changes{v1.0k}{2015/12/02}{Give more specific error messages (PHG)}
1369 %   The allocator itself.
1370 %    \begin{macrocode}
1371 local function create_callback(name, ctype, default)
1372   if not name  or name  == ""
1373   or not ctype or ctype == ""
1374   then
1375     luatexbase_error("Unable to create callback:\n" ..
1376                      "valid callback name and type required")
1377   end
1378   if callbacktypes[name] then
1379     luatexbase_error("Unable to create callback `" .. name ..
1380                      "':\ncallback type disallowed as name")
1381   end
1382   if default ~= false and type (default) ~= "function" then
1383     luatexbase_error("Unable to create callback `" .. name ..
1384                      ":\ndefault is not a function")
1385    end
1386   user_callbacks_defaults[name] = default
1387   callbacktypes[name] = types[ctype]
1389 luatexbase.create_callback = create_callback
1390 %    \end{macrocode}
1391 % \end{macro}
1393 % \begin{macro}{call_callback}
1394 % \changes{v1.0a}{2015/09/24}{Function added}
1395 % \changes{v1.0i}{2015/11/29}{Check name is not nil in error message (PHG)}
1396 % \changes{v1.0k}{2015/12/02}{Give more specific error messages (PHG)}
1397 %  Call a user defined callback. First check arguments.
1398 %    \begin{macrocode}
1399 local function call_callback(name,...)
1400   if not name or name == "" then
1401     luatexbase_error("Unable to create callback:\n" ..
1402                      "valid callback name required")
1403   end
1404   if user_callbacks_defaults[name] == nil then
1405     luatexbase_error("Unable to call callback `" .. name
1406                      .. "':\nunknown or empty")
1407    end
1408   local l = callbacklist[name]
1409   local f
1410   if not l then
1411     f = user_callbacks_defaults[name]
1412     if l == false then
1413            return nil
1414          end
1415   else
1416     f = handlers[callbacktypes[name]](name)
1417   end
1418   return f(...)
1420 luatexbase.call_callback=call_callback
1421 %    \end{macrocode}
1422 % \end{macro}
1424 % \begin{macro}{add_to_callback}
1425 % \changes{v1.0a}{2015/09/24}{Function added}
1426 %   Add a function to a callback. First check arguments.
1427 % \changes{v1.0k}{2015/12/02}{Give more specific error messages (PHG)}
1428 %    \begin{macrocode}
1429 local function add_to_callback(name, func, description)
1430   if not name or name == "" then
1431     luatexbase_error("Unable to register callback:\n" ..
1432                      "valid callback name required")
1433   end
1434   if not callbacktypes[name] or
1435     type(func) ~= "function" or
1436     not description or
1437     description == "" then
1438     luatexbase_error(
1439       "Unable to register callback.\n\n"
1440         .. "Correct usage:\n"
1441         .. "add_to_callback(<callback>, <function>, <description>)"
1442     )
1443   end
1444 %    \end{macrocode}
1445 %   Then test if this callback is already in use. If not, initialise its list
1446 %   and register the proper handler.
1447 %    \begin{macrocode}
1448   local l = callbacklist[name]
1449   if l == nil then
1450     l = { }
1451     callbacklist[name] = l
1452 %    \end{macrocode}
1453 % If it is not a user defined callback use the primitive callback register.
1454 %    \begin{macrocode}
1455     if user_callbacks_defaults[name] == nil then
1456       callback_register(name, handlers[callbacktypes[name]](name))
1457     end
1458   end
1459 %    \end{macrocode}
1460 %  Actually register the function and give an error if more than one
1461 %  |exclusive| one is registered.
1462 %    \begin{macrocode}
1463   local f = {
1464     func        = func,
1465     description = description,
1466   }
1467   local priority = #l + 1
1468   if callbacktypes[name] == exclusive then
1469     if #l == 1 then
1470       luatexbase_error(
1471         "Cannot add second callback to exclusive function\n`" ..
1472         name .. "'")
1473     end
1474   end
1475   table.insert(l, priority, f)
1476 %    \end{macrocode}
1477 %  Keep user informed.
1478 %    \begin{macrocode}
1479   luatexbase_log(
1480     "Inserting `" .. description .. "' at position "
1481       .. priority .. " in `" .. name .. "'."
1482   )
1484 luatexbase.add_to_callback = add_to_callback
1485 %    \end{macrocode}
1486 % \end{macro}
1488 % \begin{macro}{remove_from_callback}
1489 % \changes{v1.0a}{2015/09/24}{Function added}
1490 % \changes{v1.0k}{2015/12/02}{adjust initialisation of cb local (PHG)}
1491 % \changes{v1.0k}{2015/12/02}{Give more specific error messages (PHG)}
1492 %   Remove a function from a callback. First check arguments.
1493 %    \begin{macrocode}
1494 local function remove_from_callback(name, description)
1495   if not name or name == "" then
1496     luatexbase_error("Unable to remove function from callback:\n" ..
1497                      "valid callback name required")
1498   end
1499   if not callbacktypes[name] or
1500     not description or
1501     description == "" then
1502     luatexbase_error(
1503       "Unable to remove function from callback.\n\n"
1504         .. "Correct usage:\n"
1505         .. "remove_from_callback(<callback>, <description>)"
1506     )
1507   end
1508   local l = callbacklist[name]
1509   if not l then
1510     luatexbase_error(
1511       "No callback list for `" .. name .. "'\n")
1512   end
1513 %    \end{macrocode}
1514 %  Loop over the callback's function list until we find a matching entry.
1515 %  Remove it and check if the list is empty: if so, unregister the
1516 %   callback handler.
1517 %    \begin{macrocode}
1518   local index = false
1519   for i,j in ipairs(l) do
1520     if j.description == description then
1521       index = i
1522       break
1523     end
1524   end
1525   if not index then
1526     luatexbase_error(
1527       "No callback `" .. description .. "' registered for `" ..
1528       name .. "'\n")
1529   end
1530   local cb = l[index]
1531   table.remove(l, index)
1532   luatexbase_log(
1533     "Removing  `" .. description .. "' from `" .. name .. "'."
1534   )
1535   if #l == 0 then
1536     callbacklist[name] = nil
1537     callback_register(name, nil)
1538   end
1539   return cb.func,cb.description
1541 luatexbase.remove_from_callback = remove_from_callback
1542 %    \end{macrocode}
1543 % \end{macro}
1545 % \begin{macro}{in_callback}
1546 % \changes{v1.0a}{2015/09/24}{Function added}
1547 % \changes{v1.0h}{2015/11/27}{Guard against undefined list latex/4445}
1548 %   Look for a function description in a callback.
1549 %    \begin{macrocode}
1550 local function in_callback(name, description)
1551   if not name
1552     or name == ""
1553     or not callbacklist[name]
1554     or not callbacktypes[name]
1555     or not description then
1556       return false
1557   end
1558   for _, i in pairs(callbacklist[name]) do
1559     if i.description == description then
1560       return true
1561     end
1562   end
1563   return false
1565 luatexbase.in_callback = in_callback
1566 %    \end{macrocode}
1567 % \end{macro}
1569 % \begin{macro}{disable_callback}
1570 % \changes{v1.0a}{2015/09/24}{Function added}
1571 %   As we subvert the engine interface we need to provide a way to access
1572 %   this functionality.
1573 %    \begin{macrocode}
1574 local function disable_callback(name)
1575   if(callbacklist[name] == nil) then
1576     callback_register(name, false)
1577   else
1578     luatexbase_error("Callback list for " .. name .. " not empty")
1579   end
1581 luatexbase.disable_callback = disable_callback
1582 %    \end{macrocode}
1583 % \end{macro}
1585 % \begin{macro}{callback_descriptions}
1586 % \changes{v1.0a}{2015/09/24}{Function added}
1587 % \changes{v1.0h}{2015/11/27}{Match test in in-callback latex/4445}
1588 %   List the descriptions of functions registered for the given callback.
1589 %    \begin{macrocode}
1590 local function callback_descriptions (name)
1591   local d = {}
1592   if not name
1593     or name == ""
1594     or not callbacklist[name]
1595     or not callbacktypes[name]
1596     then
1597     return d
1598   else
1599   for k, i in pairs(callbacklist[name]) do
1600     d[k]= i.description
1601     end
1602   end
1603   return d
1605 luatexbase.callback_descriptions =callback_descriptions 
1606 %    \end{macrocode}
1607 % \end{macro}
1609 % \begin{macro}{uninstall}
1610 % \changes{v1.0e}{2015/10/02}{Function added}
1611 %   Unlike at the \TeX{} level, we have to provide a back-out mechanism here
1612 %   at the same time as the rest of the code. This is not meant for use by
1613 %   anything other than \textsf{latexrelease}: as such this is
1614 %   \emph{deliberately} not documented for users!
1615 %    \begin{macrocode}
1616 local function uninstall()
1617   module_info(
1618     "luatexbase",
1619     "Uninstalling kernel luatexbase code"
1620   )
1621   callback.register = callback_register
1622   luatexbase = nil
1624 luatexbase.uninstall = uninstall
1625 %    \end{macrocode}
1626 % \end{macro}
1627 % \endgroup
1629 %    \begin{macrocode}
1630 %</lua>
1631 %    \end{macrocode}
1633 % Reset the catcode of |@|.
1634 %    \begin{macrocode}
1635 %<tex>\catcode`\@=\etatcatcode\relax
1636 %    \end{macrocode}
1639 % \Finale