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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
% \iffalse meta-comment
%
% Copyright (C) 2021-2022
% The LaTeX Project and any individual authors listed elsewhere
% in this file.
%
% This file is part of the LaTeX base system.
% -------------------------------------------
%
% It may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% https://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2008 or later.
%
% This file has the LPPL maintenance status "maintained".
%
% The list of all files belonging to the LaTeX base distribution is
% given in the file `manifest.txt'. See also `legal.txt' for additional
% information.
%
% The list of derived (unpacked) files belonging to the distribution
% and covered by LPPL is defined by the unpacking scripts (with
% extension .ins) which are part of the distribution.
%
% \fi
%
% \iffalse
%%% From File: ltkeys.dtx
%
%<*driver>
% \fi
\ProvidesFile{ltkeys.dtx}
[2022/10/22 v1.0l LaTeX Kernel (Keyval options)]
% \iffalse
\documentclass{l3doc}
\GetFileInfo{ltkeys.dtx}
\title{\filename}
\date{\filedate}
\author{%
\LaTeX{} Team}
\begin{document}
\maketitle
\DocInput{ltkeys.dtx}
\end{document}
%</driver>
% \fi
%
% \section{Creating and using keyval options}
%
% As with any key--value input, using key--value pairs as package or
% class options has two parts: creating the key options and setting (using)
% them. Options created in this way \emph{may} be used after package loading
% as general key--value settings: this will depend on the nature of the
% underlying code.
%
% \begin{function}{\DeclareKeys}
% \begin{syntax}
% \cs{DeclareKeys} \oarg{family} \marg{declarations}
% \end{syntax}
% Creates a series of options from a comma-separated \meta{declarations} list.
% Each entry in this list is a key--value pair, with the \meta{key} having one
% or more \meta{properties}. A small number of \enquote{basic}
% \meta{properties} are described below. The full range of properties,
% provided by \pkg{l3keys}, can also be used for more powerful processing.
% See \texttt{interface3} for the full details.
%
% The basic properties provided here are
% \begin{itemize}
% \item \texttt{.code} --- execute arbitrary code
% \item \texttt{.if} --- sets a \TeX{} \cs{if...} switch
% \item \texttt{.ifnot} --- sets an inverted \TeX{} \cs{if...} switch
% \item \texttt{.store} --- stores a value in a macro
% \item \texttt{.usage} -- defines whether the option can be given only
% when loading (\texttt{load}), in the preamble (\texttt{preamble}) or
% has no limitation on scope (\texttt{general})
% \end{itemize}
% The part of the \meta{key} before the \meta{property} is the \meta{name},
% with the \meta{value} working with the \meta{property} to define the
% behaviour of the option.
%
% For example, with
% \begin{verbatim}
% \DeclareKeys[mypkg]
% {
% draft.if = @mypkg@draft ,
% draft.usage = preamble ,
% name.store = \@mypkg@name ,
% name.usage = load ,
% second-name.store = \@mypkg@other@name
% }
% \end{verbatim}
% three options would be create. The option \texttt{draft} can be given
% anywhere in the preamble, and will set a switch called \cs{if@mypkg@draft}.
% The option \texttt{name} can only be given during package loading, and will
% save whatever value it is given in \cs{@mypkg@name}. Finally, the option
% \texttt{second-name} can be given anywhere, and will save its value in
% \cs{@mypkg@other@name}.
%
% Keys created \emph{before} the use of \cs{ProcessKeyOptions}act as
% package options.
% \end{function}
%
% \begin{function}{\DeclareUnknownKeyHandler}
% \begin{syntax}
% \cs{DeclareUnknownKeyHandler} \oarg{family} \marg{code}
% \end{syntax}
% The function \cs{DeclareUnknownKeyHandler} may be used to define
% the behavior when an undefined key is encountered. The \meta{code}
% will receive the unknown key name as |#1| and the value as |#2|.
% These can then be processed as appropriate, e.g.~by forwarding
% to another package.
% \end{function}
%
% \begin{function}{\ProcessKeyOptions}
% \begin{syntax}
% \cs{ProcessKeyOptions} \oarg{family}
% \end{syntax}
% The \cs{ProcessKeyOptions} function is used to check the current
% option list against the keys defined for \meta{family}. Global (class)
% options and local (package) options are checked when this function
% is called in a package.
% \end{function}
%
% \begin{function}{\SetKeys}
% \begin{syntax}
% \cs{SetKeys} \oarg{family} \Arg{keyvals}
% \end{syntax}
% Sets (applies) the explicit list of \meta{keyvals} for the \meta{family}:
% it the latter is not given, the value of \cs{@currname} used. This command
% may be used within a package to set options before or after using
% \cs{ProcessKeyOptions}.
% \end{function}
%
% \StopEventually{}
%
% \subsection{Implementation of \pkg{ltkeys}}
%
% \begin{macrocode}
%<@@=keys>
% \end{macrocode}
%
% \begin{macrocode}
%<*2ekernel>
% \end{macrocode}
%
% \begin{macrocode}
\ExplSyntaxOn
% \end{macrocode}
%
% \subsection{Key properties}
%
% \begin{macro}{.code, .if, .ifnot, .store, .usage}
% \changes{v1.0b}{2022/02/05}
% {Create properties in \texttt{ltlkeys}}
% \changes{v1.0c}{2022/02/07}
% {Correct \texttt.{.code} property}
% \changes{v1.0i}{2022/06/22}
% {Add \texttt.{.notif} property}
% \begin{macrocode}
\group_begin:
\cs_set_protected:Npn \@@_tmp:nn #1#2
{
\quark_if_recursion_tail_stop:n {#1}
\cs_new_eq:cc
{ \c_@@_props_root_str . #2 }
{ \c_@@_props_root_str . #1 }
\@@_tmp:nn
}
\@@_tmp:nn
{ code:n } { code }
{ legacy_if_set:n } { if }
{ legacy_if_set_inverse:n } { ifnot }
{ tl_set:N } { store }
{ usage:n } { usage }
{ \q_recursion_tail } { }
\q_recursion_stop
\group_end:
% \end{macrocode}
% \end{macro}
%
% \subsection{Main mechanism}
%
% \begin{macrocode}
\cs_generate_variant:Nn \clist_put_right:Nn { Nv }
% \end{macrocode}
%
% \begin{macro}{\l_@@_options_clist}
% A single list is used for all options, into which they are collected
% before processing.
% \begin{macrocode}
\clist_new:N \l_@@_options_clist
% \end{macrocode}
% \end{macro}
%
% \begin{variable}{\l_@@_options_loading_bool}
% Used to indicate we are in the loading phase: controls the outcome
% of warnings.
% \begin{macrocode}
\bool_new:N \l_@@_options_loading_bool
% \end{macrocode}
% \end{variable}
%
% \begin{macro}{\@@_options:n}
% \changes{v1.0f}{2022/03/18}{Simplify to always cover global options}
% \begin{macro}{\@@_options_aux:n}
% \changes{v1.0b}{2022/01/15}
% {Clear option list in end-of-package hook}
% \changes{v1.0l}{2022/10/20}
% {Define key option handler in \pkg{ltkeys}}
% \changes{v1.0i}{2022/07/05}{Support \cs{CurrentOption}}
% \begin{macro}{\@@_options_end:}
% The main function calls functions to collect up the global and local
% options into \cs{l_@@_options_clist} before calling the
% underlying functions to actually do the processing. So that a suitable
% message is produced if the option is unknown, the special
% \texttt{unknown} key is set if it does not already exist for the
% current family, and is cleaned up afterwards if required. To allow
% the \LaTeXe{} layer to know this mechanism is active, and to deal
% with the key family not matching the file name, we store the family
% in all cases.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options:n #1
{ \@@_options_expand_module:Nn \@@_options_aux:n {#1} }
\cs_new_protected:Npn \@@_options_aux:n #1
{
\cs_gset_protected:cpn { opt@handler@\@currname.\@currext }
{ \ProcessKeyOptions [ #1 ] }
\cs_set_protected:Npn \@@_option_end: { }
\clist_clear:N \l_@@_options_clist
\@@_options_global:n {#1}
\@@_options_local:
\keys_if_exist:nnF {#1} { unknown }
{
\keys_define:nn {#1}
{
unknown .code:n =
{
\msg_error:nnxx { keys } { option-unknown }
{ \l_keys_key_str } { \@currname }
}
}
\cs_set_protected:Npn \@@_option_end:
{ \keys_define:nn {#1} { unknown .undefine: } }
}
\bool_set_true:N \l_@@_options_loading_bool
\clist_map_variable:NNn \l_@@_options_clist \CurrentOption
{ \keys_set:nV {#1} \CurrentOption }
\bool_set_false:N \l_@@_options_loading_bool
\AtEndOfPackage { \cs_set_eq:NN \@unprocessedoptions \scan_stop: }
\@@_option_end:
\@@_options_loaded:n {#1}
}
% \end{macrocode}
% \changes{v1.0j}{2022/07/23}
% {Output `public' package name in messages}
% \begin{macrocode}
\msg_new:nnnn { keys } { option-unknown }
{ Unknown~option~'#1'~for~package~#2. }
{
LaTeX~has~been~asked~to~set~an~option~called~'#1'~
but~the~package~"\msg_module_name:n {#2}"~has~not~created~an~option~with~this~name.
}
% \end{macrocode}
% \end{macro}
% \end{macro}
% \end{macro}
%
% \begin{macro}{\@@_options_global:n}
% \changes{v1.0f}{2022/03/18}{Simplify to always cover global options}
% \changes{v1.0h}{2022/06/20}{Use raw options data}
% Global (class) options are handled differently for \LaTeXe{} packages
% and classes. Hence this function is essentially a check on the current
% file type. The initial test is needed as \LaTeXe{} allows variables to
% be equal to \cs{scan_stop:}, which is usually forbidden in \pkg{expl3}
% code.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_global:n #1
{
\cs_if_eq:NNF \@raw@classoptionslist \scan_stop:
{
\cs_if_eq:NNTF \@currext \@clsextension
{ \@@_options_class:n {#1} }
{ \@@_options_package:n {#1} }
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\@@_options_class:n}
% \changes{v1.0g}{2022/06/16}{Better handling of option removal}
% \changes{v1.0h}{2022/06/19}{Further work on handling of option removal}
% \changes{v1.0h}{2022/06/20}{Use raw options data}
% \begin{macro}{\@@_options_class:nnn}
% \changes{v1.0h}{2022/06/20}{New function}
% \changes{v1.0i}{2022/07/05}{Correct naming of raw class options storage}
% \changes{v1.0l}{2022/10/22}{Correct handling of unused option list}
% For classes, each option (stripped of any content after |=|)
% is checked for existence as a key. If found, the option is added to
% the combined list for processing. On the other hand, unused options
% are stored up in \cs{@unusedoptionlist}. Before any of that, though,
% there is a simple check to see if there is an |unknown| key. If there
% is, then \emph{everything} will match and the mapping can be skipped.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_class:n #1
{
\cs_if_free:cF { @raw@opt@ \@currname . \@currext }
{
\keys_if_exist:nnTF {#1} { unknown }
{
\clist_put_right:Nv \l_@@_options_clist
{ @raw@opt@ \@currname . \@currext }
}
{
\clist_map_inline:cn { @raw@opt@ \@currname . \@currext }
{
\exp_args:Ne \@@_options_class:nnn
{ \@@_remove_equals:n {##1} }
{##1} {#1}
}
}
}
}
\cs_new_protected:Npn \@@_options_class:nnn #1#2#3
{
\keys_if_exist:nnTF {#3} {#1}
{
\clist_put_right:Nn \l_@@_options_clist {#2}
\clist_remove_all:Nn \@unusedoptionlist {#1}
}
{
\clist_if_in:NnF \@unusedoptionlist {#1}
{ \clist_put_right:Nn \@unusedoptionlist {#1} }
}
}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \begin{macro}{\@@_options_package:n}
% \changes{v1.0g}{2022/06/16}{Better handling of option removal}
% \changes{v1.0h}{2022/06/19}{Further work on handling of option removal}
% \changes{v1.0h}{2022/06/20}{Use raw options data}
% \begin{macro}{\@@_options_package:nnn}
% \changes{v1.0h}{2022/06/19}{New function}
% For global options when processing a package, the tasks are slightly
% different from those for a class. The check is the same, but here
% there is nothing to do if the option is not applicable. Each valid
% option also needs to be removed from \cs{@unusedoptionlist}.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_package:n #1
{
\clist_map_inline:Nn \@raw@classoptionslist
{
\exp_args:Ne \@@_options_package:nnn
{ \@@_remove_equals:n {##1} }
{##1} {#1}
}
}
\cs_new_protected:Npn \@@_options_package:nnn #1#2#3
{
\keys_if_exist:nnT {#3} {#1}
{
\clist_put_right:Nn \l_@@_options_clist {#2}
\clist_remove_all:Nn \@unusedoptionlist {#1}
}
}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \begin{macro}{\@@_options_local:}
% \changes{v1.0h}{2022/06/20}{Use raw options data}
% If local options are found, they are added to the processing list.
% \LaTeXe{} stores options for each file in a macro which may or may not
% exist, hence the need to use \cs{cs_if_exist:c}.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_local:
{
\cs_if_eq:NNF \@currext \@clsextension
{
\cs_if_exist:cT { @raw@opt@ \@currname . \@currext }
{
\clist_put_right:Nv \l_@@_options_clist
{ @raw@opt@ \@currname . \@currext }
}
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}[EXP]{\@@_remove_equals:n}
% \begin{macro}[EXP]{\@@_remove_equals:w}
% As the name suggests, this is a simple function to remove an equals
% sign from the input. This is all wrapped up in an \texttt{n} function
% so that there will always be a sign available.
% \begin{macrocode}
\cs_new:Npn \@@_remove_equals:n #1
{ \@@_remove_equals:w #1 = \s_@@_stop }
\cs_new:Npn \@@_remove_equals:w #1 = #2 \s_@@_stop { \exp_not:n {#1} }
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \subsection{The document interfaces}
%
% \begin{macrocode}
\cs_generate_variant:Nn \keys_define:nn { nx }
% \end{macrocode}
%
% \begin{macro}{\@@_options_expand_module:Nn}
% \changes{v1.0e}{2022/02/21}
% {Faster approach to module expansion}
% \begin{macro}{\@@_options_expand_module:nN}
% To deal with active characters inside the module argument whilst also
% expanding that argument, we use a combination of \texttt{c}- and
% \texttt{f}-type expansion. This works as the definitions for active
% UTF-8 bytes contain an \cs{ifincsname} test.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_expand_module:Nn #1#2
{
\cs:w @@_options_expand_module:nN \use:e { \cs_end: {#2} } #1
}
\cs_new_protected:Npn \@@_options_expand_module:nN #1#2
{ #2 {#1} }
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \begin{macro}{\DeclareKeys}
% \changes{v1.0c}{2022/02/15}{Expand module argument}
% \changes{v1.0d}{2022/02/16}{Allow for active characters in module argument}
% Defining key options is quite straight-forward: we have an intermediate
% function to allow for potential set-up steps.
% \begin{macrocode}
\NewDocumentCommand \DeclareKeys { O { \@currname } +m }
{ \@@_options_expand_module:Nn \keys_define:nn {#1} {#2} }
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\DeclareUnknownKeyHandler}
% \changes{v1.0c}{2022/02/15}{Added \cs{DeclareUnknownKeysHandler}}
% \changes{v1.0d}{2022/02/16}{Allow for active characters in module argument}
% \changes{v1.0d}{2022/02/16}
% {Rename \cs{DeclareUnknownKeysHandler} to \cs{DeclareUnknownKeyHandler}}
% \begin{macrocode}
\NewDocumentCommand \DeclareUnknownKeyHandler { O { \@currname } +m }
{
\cs_set_protected:cpn { @@_unknown_handler_ #1 :nn } ##1##2 {#2}
\@@_options_expand_module:Nn \keys_define:nx {#1}
{
unknown .code:n =
\exp_not:N \exp_args:NV
\exp_not:c { @@_unknown_handler_ #1 :nn }
\exp_not:N \l_keys_key_str {####1}
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\ProcessKeyOptions}
% \changes{v1.0c}{2022/02/15}{Expand module argument}
% \changes{v1.0d}{2022/02/16}{Allow for active characters in module argument}
% \changes{v1.0f}{2022/03/18}{Remove \cs{ProcessKeyPackageOptions}}
% We need to deal with the older interface from \pkg{l3keys2e} here: it had
% a mandatory argument. We can mop that up using a look-ahead, and then
% exploit that information to determine whether the package option handling
% is set up for the new approach for clash handling.
% \begin{macrocode}
\NewDocumentCommand \ProcessKeyOptions { O { \@currname } }
{ \@@_options:n {#1} }
\@onlypreamble \ProcessKeyOptions
% \end{macrocode}
% \end{macro}
%
% \subsection{Option usage scope}
%
% \begin{macro}{\@@_options_loaded:n}
% \begin{macro}{\@@_options_loaded:nn}
% \changes{v1.0l}{2022/10/20}{Correct an argument for a message}
% Indicates that the load-time options for a package have been processed:
% once this has happened, make them unavailable either with a warning or
% an error.
% \begin{macrocode}
\cs_new_protected:Npn \@@_options_loaded:n #1
{
\prop_get:NnNT \l_keys_usage_load_prop {#1} \l_@@_tmpa_tl
{
\clist_map_inline:Nn \l_@@_tmpa_tl
{
\keys_define:nn {#1}
{
##1 .code:n =
\@@_options_loaded:nn {#1} {##1}
}
}
}
}
\cs_new_protected:Npn \@@_options_loaded:nn #1#2
{
\bool_if:NTF \l_@@_options_loading_bool
{ \msg_warning:nnnn { keys } { load-option-ignored } }
{ \msg_error:nnnn { keys } { load-only } }
{#1} {#2}
}
% \end{macrocode}
% \changes{v1.0j}{2022/07/23}
% {Output `public' package name in messages}
% \begin{macrocode}
\msg_new:nnn { keys } { load-option-ignored }
{
Package~"\msg_module_name:n {#1}"~has~already~been~loaded:~
ignoring~load-time~option~"#2".
}
% \end{macrocode}
% \changes{v1.0j}{2022/07/23}
% {Output `public' package name in messages}
% \changes{v1.0k}{2022/08/21}
% {Correct error message}
% \begin{macrocode}
\msg_new:nnnn { keys } { load-only }
{
Key~"#2"~may~only~be~used~during~loading~of~package~
"\msg_module_name:n {#1}".
}
{
LaTeX~was~asked~to~set~a~key~called~"#2",~but~this~is~only~allowed~
in~the~optional~argument~when~loading~package~"\msg_module_name:n{#1}".
}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% Disable all preamble options in one shot.
% \begin{macrocode}
\tl_gput_left:Nn \@kernel@after@begindocument
{
\prop_map_inline:Nn \l_keys_usage_preamble_prop
{
\clist_map_inline:nn {#2}
{
\keys_define:nn {#1}
{
##1 .code:n =
\msg_error:nnn { keys } { preamble-only } {##1}
}
}
}
}
\msg_new:nnnn { keys } { preamble-only }
{ Key~"#1"~may~only~be~used~in~the~preamble. }
{
LaTeX~was~asked~to~set~a~key~called~"#1",~but~this~is~only~allowed~
before~\begin{document}.~You~will~need~to~set~the~key~earlier.
}
% \end{macrocode}
%
% \subsection{General key setting}
%
% \begin{macro}{\SetKeys}
% \changes{v1.0c}{2022/02/15}{Expand module argument}
% \changes{v1.0d}{2022/02/16}{Allow for active characters in module argument}
% A simple wrapper.
% \begin{macrocode}
\NewDocumentCommand \SetKeys { O { \@currname } +m }
{ \@@_options_expand_module:Nn \keys_set:nn {#1} {#2} }
% \end{macrocode}
% \end{macro}
%
% \begin{macrocode}
\ExplSyntaxOff
% \end{macrocode}
%
% \begin{macrocode}
%</2ekernel>
% \end{macrocode}
|