summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/skeyval/tex/skeyval.sty
blob: 0bd5722fca574b2466e7d3324258eae007ac349f (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
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
%++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%
% This is file 'skeyval.sty', version 1.3, 2013/05/15.                     %
%                                                                          %
%                                  NOTE                                    %
%                                                                          %
% Beginning from version 1.0, 2012/09/01, the skeyval package has changed  %
% radically. Users of pre-version 1.0 of the package can load it now by    %
% calling:                                                                 %
%                                                                          %
%    \usepackage[compatibility]{skeyval}                                   %
%    \RequirePackage[compatibility]{skeyval}                               %
%                 or                                                       %
%    \usepackage{skeyval-bc}                                               %
%    \RequirePackage{skeyval-bc}                                           %
%                                                                          %
%                                LICENSE                                   %
%                                                                          %
% This package and accompanying files may be distributed and/or            %
% modified under the conditions of the LaTeX Project Public License,       %
% either version 1.3 of this license or any later version. The latest      %
% version of this license is in http://www.latex-project.org/lppl.txt      %
% and version 1.3 or later is part of all distributions of LaTeX           %
% version 2005/12/01 or later.                                             %
%                                                                          %
% The LPPL maintenance status of this software is 'author-maintained'.     %
%                                                                          %
% This software is provided 'as it is', without warranty of any kind,      %
% either expressed or implied, including, but not limited to, the          %
% implied warranties of merchantability and fitness for a particular       %
% purpose.                                                                 %
%                                                                          %
%                              DISTRIBUTION                                %
%                                                                          %
% The following files constitute the skeyval bundle and must be            %
% distributed as a whole:                                                  %
%                                                                          %
%  README, skeyval.sty, skeyval-core.tex, skeyval-for.tex,                 %
%  skeyval-view.sty, skeyval-ltxpatch.sty, skeyval-ltxcmds.tex,            %
%  skeyval-pstkey.sty, skeyval-pstkey.tex, skeyval-testclass.cls,          %
%  skeyval-testpkg.sty, skeyval-pokayoke1, skeyval-pokayoke2,              %
%  skeyval-view-pokayoke1.                                                 %
%                                                                          %
% Copyright (c) 2010-2013 Ahmed Musa (amusa22@gmail.com).                  %
%++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%

\begingroup
\catcode035 06 % #
\catcode064 11 % @
\catcode123 01 % {
\catcode125 02 % }
\catcode044 12 % ,
\def\skv@prova{\endgroup
  \def\do##1,{%
    \ifx\do##1\else
      \catcode##1\string=\the\catcode##1\relax
      \expandafter\do
    \fi
  }%
  \edef\skv@restorecodes{\do35,64,123,125,61,59,13,\do,}%
}
\skv@prova

\edef\skv@restorecodes{%
  \unexpanded\expandafter{\skv@restorecodes}%
  \endlinechar\the\endlinechar\relax
}
\endlinechar13 %
\catcode035 06 % #
\catcode064 11 % @
\catcode123 01 % {
\catcode125 02 % }
\catcode061 12 % =
\catcode044 12 % ,
\def\do#1=#2,{%
  \ifx\do#1\else
    \edef\skv@restorecodes{%
      \unexpanded\expandafter{\skv@restorecodes}%
      \catcode#1=\the\catcode#1\relax
    }%
    \catcode#1=#2\relax
    \expandafter\do
  \fi
}
\do 032=10,033=12,036=03,038=04,040=12,041=12,042=12,043=12,%
  059=12,045=12,047=12,058=12,063=12,091=12,093=12,126=13,\do=,%

\ProvidesPackage{skeyval}[2013/05/15 v1.3 Robust key-value parser (AM)]
\NeedsTeXFormat{LaTeX2e}[2011/06/27]

\input skeyval-core

\skvrobustdef*\skvafterendpackage{%
  \skvifcsdefTF{\@currname.\@currext-skv@endpkghook}{}{%
    \@namedef{\@currname.\@currext-skv@endpkghook}{}%
  }%
  \expandafter\g@addto@macro
  \csname\@currname.\@currext-skv@endpkghook\endcsname
}
\skvrobustdef*\skvafterpackage#1{%
  \skvafterbegindocument{%
    \skvifcsdefTF{ver@#1.\@pkgextension}{}{%
      \skv@warn{Package '#1' was never loaded}%
    }%
  }
  \skvifcsdefTF{ver@#1.\@pkgextension}{%
    \@firstofone
  }{%
    \skvappendtomacro{#1.\@pkgextension-skv@endpkghook}%
  }%
}
\xdef\@popfilename{%
  \unexpanded{%
    \csname\@currname.\@currext-skv@endpkghook\endcsname
    \expandafter\let
    \csname\@currname.\@currext-skv@endpkghook\endcsname\relax
  }%
  \unexpanded\expandafter{\@popfilename}%
}
\skvundef\skv@documentclass
\skvrobustdef*\skv@getdocumentclass{%
  \ifcase0%
    \ifx\@filelist\@undefined 1\fi
    \ifx\@filelist\relax 1\fi
    \ifx\@filelist\@gobble 1\fi\relax
    \skvcommaparse*\@filelist\skv@tempa{%
      \filename@parse\skv@tempa
      \ifx\filename@ext\@clsextension
        \skvifcsdefFT{opt@\filename@area\filename@base.\filename@ext}{}{%
          \edef\skv@documentclass{%
            \filename@area\filename@base.\filename@ext
          }%
        }%
      \fi
      \ifx\skv@documentclass\@undefined\else\skvbreakloop\fi
    }%
  \fi
}

% The following packages need access to the original \@classoptionslist:
\skvnewdef*\skv@optionprocessorpackages{%
  xkeyval,kvoptions,catoptions,biblatex,pgfopts,ltxkeys%
}
% Filter class options to remove those with '=':
\skvrobustdef*\skv@filterclassoptions{%
  \ifcase0%
    \ifx\@classoptionslist\@undefined 1\fi
    \ifx\@classoptionslist\relax 1\fi\relax
    \global\let\skv@filterclassoptions\relax
    \skvkvnormalize\@classoptionslist
    \let\skvoriginalclassoptionslist\@classoptionslist
    \let\skv@classoptionslist\@classoptionslist
    \let\@classoptionslist\@empty
    \skvcommaloop*\skvoriginalclassoptionslist\skv@tempa{%
      \skvxifinTF{=}{\skvexpandonce\skv@tempa}{}{%
        \skvaddtolist*\@classoptionslist\skv@tempa
      }%
    }%
    \def\@fileswith@ptions##1[##2]##3{%
      \edef\skv@tempa{\unexpanded{##3}}%
      \skvcsvnormalize\skv@tempa
      \skvcommaloop*\skv@optionprocessorpackages\skv@prova{%
        \skvxifinTF{,\skv@prova,}{,\skv@tempa,}{%
          \let\@classoptionslist\skvoriginalclassoptionslist
          \skvbreakloop
        }{}%
      }%
      \skvifnextchar[{\@fileswith@pti@ns##1[##2]##3}%
        {\@fileswith@pti@ns##1[##2]##3[]}%
    }%
  \fi
}
\skvrobustdef*\skvbeforebegindocument{%
  \skvgappendtomacro\skv@beforebegindoc
}
\skvnewdef*\skv@beforebegindoc{}
\skvprependtomacro\document{%
  \endgroup
  \let\skvbeforebegindocument\@firstofone
  \skv@beforebegindoc
  \gdef\skvbeforebegindocument{\skv@notprerr\skvbeforebegindocument}%
  \global\let\skv@beforebegindoc\relax
  \begingroup
}
\skvrobustdef*\skvafterbegindocument{%
  \skvgappendtomacro\skv@afterbegindoc
}
\skvnewdef*\skv@afterbegindoc{}
\skvgappendtomacro\document{%
  \let\skvafterbegindocument\@firstofone
  \skv@afterbegindoc
  \gdef\skvafterbegindocument{\skv@notprerr\skvafterbegindocument}%
  \global\let\skv@afterbegindoc\relax
  \ignorespaces
}
\skvrobustdef*\skv@notprerr#1{%
  \@latex@error{Command \detokenize{#1} should be used only
    in preamble}\skv@ehd
}
\skvnewdef*\skv@everypagehook{}
\skvrobustdef*\skvatbegineverypage{\skvgappendtomacro\skv@everypagehook}
\skvafterbegindocument{%
  \let\skv@savedoutputpage\@outputpage
  \def\@outputpage{%
    \let\skv@savedbegindvi\@begindvi
    \def\@begindvi{%
      \skv@everypagehook
      \skv@savedbegindvi
    }%
    \skv@savedoutputpage
    \let\@begindvi\skv@savedbegindvi
  }%
}

\skvnewdef*\skv@preamblecmdhook{}
\skvrobustdef*\skvonlypreamble#1{%
  \def\skv@provb##1{%
    \skvifntypeTF{##1}{}{%
      \skv@err{More than one macro
        \MessageBreak '\detokenize{##1}'.
        \MessageBreak Maybe a comma is missing in the list}\skv@ehd
    }%
    \skvxifinTF{\detokenize{\do##1}}{\skvoxdetok\skv@preamblecmdhook}{%
      \skv@warn{Command '\noexpand##1' multiply
        \MessageBreak submitted to \string\skvonlypreamble: ignored}%
    }{%
      \xdef\skv@preamblecmdhook{%
        \skvexpandonce\skv@preamblecmdhook\unexpanded{\do##1}%
      }%
    }%
  }%
  \skvcommaparse{#1}\skv@prova{%
    \expandafter\skv@provb\expandafter{\skv@prova}%
  }%
}
\AtEndOfPackage{%
  \skvafterbegindocument{%
    \def\do#1{%
      \skvifdefTF#1{%
        \gdef#1{\@latexerr{'\string#1' is a preamble command}\skv@ehd}%
      }{%
        \ifx\relax#1\else
          \@@warning{Undefined command '\unexpanded{#1}'
            \MessageBreak appeared in \string\skvonlypreamble.
            \MessageBreak Only defined commands should be
            \MessageBreak submitted to \string\skvonlypreamble.}%
        \fi
      }%
    }%
    \skv@preamblecmdhook
    \let\skv@preamblecmdhook\relax
    \let\do\relax
  }%
}

%%+++++++++++++++++ Utilities for handling options ++++++++++++++++%%

% \skvunknownoptionhandler[<prefixes>]<<families>>{<handler>}
%
\skvrobustdef*\skvunknownoptionhandler{%
  \skv@testopt\skv@unknownoptionhandler\skvdefaultprefix
}
\skvrobustdef*\skv@unknownoptionhandler[#1]{%
  \skvifnextchar<{\skv@unkn@wnoptionhandler{#1}}%
    {\skv@unkn@wnoptionhandler{#1}<\@currname.\@currext>}%
}
\skvrobustdef*\skv@unkn@wnoptionhandler#1<#2>{%
  \skv@unknownkeyhandler[#1]{#2}%
}
\skvrobustdef*\skv@testopte#1{\skv@testopta{\skv@t@stopte{#1}}}
\skvrobustdef*\skv@t@stopte#1{\skv@testopt{\skv@t@st@pte{#1}}\skvdefaultprefix}
\skvrobustdef*\skv@t@st@pte#1[#2]{%
  % Only one prefix is allowed:
  \skvxifinTF{,}{\detokenize{#2}}{%
    \skv@err{Only one prefix is allowed, but you gave '#2'}\skv@ehd
  }{%
    \skv@makeprefix{#2}%
    \skvifnextchar<{\skv@@t@st@pte{#1}}%
      {\skv@@t@st@pte{#1}<\@currname.\@currext>}%
  }%
}
\skvrobustdef*\skv@@t@st@pte#1<#2>{%
  \edef\skv@fams{#2}%
  \skvxifinTF{,}{\detokenize{#2}}{%
    \skvcsvnormalize\skv@fams
  }{%
    \skvdespacecontent\skv@fams
  }%
  \skv@testopt{#1}{}%
}

\skvrobustdef*\skveveryunknownoption{\skvdeclareoption*}
% \skvdeclareoption[<pref>]<<fam>>{<key>}[<defa>]{<callback>}
% \skvdeclareoption*{<message>}
\skvrobustdef*\skvdeclareoption{%
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvdefkey\skvordkey
  \skvifstar\skv@dox\skv@dox@a
}
% \skvdeclarevoidoption[<pref>]<<fam>>{<key>}[<defa>]{<callback>}
\skvrobustdef*\skvdeclarevoidoption{%
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvdefkey\skvvoidkey
  \skv@dox@a
}
% \skvdeclareobsoleteoption
%   [<pref>]{<fam>}{<obsolete key>}{<new key>}[<defa>]{<callback>}
\skvrobustdef*\skvdeclareobsoleteoption{%
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvdefkey\skvobsoletekey
  \skv@dox@a
}

% \skvdeclarebooloption[<pref>]<<fam>>[<mp>]{<key>}[<defa>]{<callback>}
\skvrobustdef*\skvdeclarebooloption{%
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvdefkey\skvboolkey
  \skv@dox@a
}
% \skvdeclarecmdoption[<pref>]<<fam>>[<mp>]{<key>}[<defa>]{<callback>}
\skvrobustdef*\skvdeclarecmdoption{%
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvdefkey\skvcmdkey
  \skv@dox@a
}

% Our default action for unknown options is tied to \@currname
% and \@currext:
\skvrobustdef\skv@dox#1{%
  \skvcsedef{skv@dox@\@currname.\@currext}{%
    \unexpanded{%
      \ifx\skvcurrentvalue\skv@novaluetoks
        \def\skvcurrentvalue{no value}%
      \fi
      #1%
    }%
  }%
}
\skvrobustdef*\skv@dox@a{\skv@testopt\skv@dox@b\skvdefaultprefix}
\skvrobustdef*\skv@dox@b[#1]{%
  \skvifnextchar<{\skv@dox@c{#1}}{\skv@dox@c{#1}<\@currname.\@currext>}%
}
\skvrobustdef*\skv@dox@c#1<#2>{\skvdefkey[#1]{#2}}

% Declare options with default values that will be used when the options
% are called without user values.
%
% \skvdeclarepassedoptions[<pref>]{<fam>}{<option>=<default>,...}
%
% Example:
%
%  \skvdeclarepassedoptions[KV]{fam}{%
%    hyperref={colorlinks,breaklinks},xcolor=svgnames
%  }
%
\skvrobustdef*\skvdeclarepassedoptions{%
  \skv@testopt\skv@declarepassedoptions\skvdefaultprefix
}
\skvrobustdef*\skv@declarepassedoptions[#1]#2#3{%
  \skvparsekvlist{#3}\skv@tempa{%
    \skvexpbracenext\skv@kvsplit\skv@tempa{%
      \skvdeclareoption[#1]<#2>{##1}[##2]{%
        \skvifcsdefTF{ver@##1.sty}{%
          \skv@warn{Package '##1' has been loaded and
            \MessageBreak now you're passing options to it.
            \MessageBreak Instruction ignored}%
        }{%
          \skvpassoptionstopackage{####1}{##1}%
          \AtBeginDocument{%
            \skvifpackageloadedTF{##1}{}{%
              \skv@warn{Options were passed to package
                \MessageBreak '##1' but it was never loaded}%
            }%
          }%
        }%
      }%
    }%
  }%
}
% \skvpassoptionstopackage{<opts>}{<pkg>}
\skvrobustdef*\skvpassoptionstopackage{\skv@passoptions{sty}}
\skvrobustdef*\skvpassoptionstoclass{\skv@passoptions{cls}}
\skvrobustdef*\skv@passoptions#1#2#3{%
  \begingroup
  \edef\@elt{opt@\skvtrimspace{#3}.#1}%
  \skvcsxdef{\@elt}{%
    \skvifcsdefFT{\@elt}{}{\@nameuse{\@elt},}%
    \skvtrimspace{#2}%
  }%
  \endgroup
}

% Pass options to package and load the package after processing options.
%
% \skvdeclarepassedoptionsloadpackage
%    [<pref>]{<fam>}{<option>=<default>,...}
%
\skvrobustdef*\skvdeclarepassedoptionsloadpackage{%
  \skv@testopt\skv@declarepassedoptions@load\skvdefaultprefix
}
\skvrobustdef*\skv@declarepassedoptions@load[#1]#2#3{%
  \skvparsekvlist{#3}\skv@tempa{%
    \skvexpbracenext\skv@kvsplit\skv@tempa{%
      \skvdeclareoption[#1]<#2>{##1}[##2]{%
        \skvifcsdefTF{ver@##1.sty}{%
          \skv@warn{Package '##1' has been loaded and
            \MessageBreak now you've asked for it to be
            \MessageBreak loaded again. Instruction ignored}%
        }{%
          \skvafterprocessoptions{%
            \RequirePackage[####1]{##1}%
          }%
        }%
      }%
    }%
  }%
}

% \skvexecuteoptions[<pref>]<fams>[<na>]{<kvlist>}
% \skvexecuteoptions+[<pref>]<fams>[<na>]{<kvlist>}
%
% This has no star (*) variant; any star suffix is quietly ignored.
%
\skvrobustdef*\skvexecuteoptions{%
  \skv@testopte{\skv@stfalse\skv@setkeys@a}%
}

% \skvprocessoptions*+[<pref>]{<fams>}[<na>]
%
% 1. If not using LaTeX, then no processing of options.
% 2. The plus (+) variant of \skvprocessoptions will process the options
%    in all the listed families. The star (*) form of \skvprocessoptions
%    -- like in LaTeX2e -- will also copy and use class options.
% 3. Class options are always processed first, but class options that ocurr
%    also as local/package options are dropped from the list of options
%    to be processed. That is, package options always take priority over
%    class options.
% 4. The \ProcessOptionsX of xkeyval package doesn't expect any plus (+)
%    suffix: it processes options only in a single family.
%
% 5. \skvpackagelist contains the list of loaded packages with their
%    options that are found on the current paths. See
%    <https://groups.google.com/forum/#!topic/comp.text.tex/XErNCMcT_jc>
%    for the rationale. Example:
%
%       \usepackage[option1,option2]{foobar}
%       \show\skvpackagelist
%       \expandafter\show\csname foobar.sty.poxkeys\endcsname
%
\skvnewlet\skvpackagelist\@empty
\skvrobustdef*\skvprocessoptions{%
  \skv@getdocumentclass
  \ifdefined\skv@documentclass
    \global\let\skv@getdocumentclass\relax
    \skv@filterclassoptions
  \fi
  \skv@testopte\skv@pox
}
\skvnewlet\skv@savprocessoptions\skvprocessoptions
\skvrobustdef*\skv@badprocessoptions{%
  \skv@testopte{%
    \skv@err{\noexpand\skvprocessoptions can't be nested}\skv@ehd
  }%
}
\skvrobustdef*\skv@pox[#1]{%
  \skv@inpoxtrue
  \let\@fileswith@pti@ns\@badrequireerror
  \let\skvprocessoptions\skv@badprocessoptions
  \begingroup
  \edef\skv@userclassorpackage{\@currname.\@currext}%
  \let\skv@classoptionsfound\@empty
  \let\skv@classorpackageoptions\@empty
  % The list of pox keys for each family, simply for taking
  % pox keys outside the current scope:
  \let\skv@exitpoxkeys\@empty
  % The list of pox keys in all familes:
  \let\skvcurrentpoxkeys\@empty
  \ifx\skv@userclassorpackage\skv@documentclass
    \skv@inclasstrue
    \let\@unusedoptionlist\skv@classoptionslist
  \else
    \skv@inclassfalse
    \ifcase0%
      \ifx\skv@classoptionslist\@undefined 1\fi
      \ifx\skv@classoptionslist\@empty 1\fi
      \ifx\skv@classoptionslist\relax 1\fi\relax
      \ifskv@st
        \def\ifkeyundef##1##2##3{\skvexpanded{\skvifkeydefFT[##1]{##2}{##3}}}%
        \skvcommaloop*\skv@classoptionslist\CurrentOption{%
          \expandafter\expandafter\expandafter
            \skv@g@tkeyname\CurrentOption=\skv@getname@nil\skvcurrentkey
          % Test if key is defined in one of the families. The search will
          % stop as soon as the key is found in any of the families.
          \ifkeyundef\skvcurrentprefix\skv@fams\skvcurrentkey{}{%
            \edef\skv@classoptionsfound{%
              \skvaddlist,\skv@classoptionsfound\skvexpandonce\CurrentOption
            }%
            \expandafter\skv@removeoption\expandafter{\CurrentOption}%
          }%
        }%
        \ifx\skv@classoptionsfound\@empty\else
          \skvexpbracenext\skv@getnamesofkeys\skv@classoptionsfound\skv@tempd
          \skvexpbracenext\skv@getpoxkeys\skv@tempd
        \fi
      \fi
    \fi
  \fi
  \skvletcs\skv@classorpackageoptions{opt@\@currname.\@currext}%
  \ifx\skv@classorpackageoptions\relax
    \def\skv@classorpackageoptions{}%
  \fi
  \skvifemptyTF\skv@classorpackageoptions{}{%
    \skvexpbracenext\skv@getnamesofkeys\skv@classorpackageoptions\skv@tempd
    \skvexpbracenext\skv@getpoxkeys\skv@tempd
    % Package options have higher priority than class options. Hence
    % filter class options \skv@classoptionsfound that are also present
    % as package options \skv@classorpackageoptions:
    \skvifxTF\skv@userclassorpackage\skv@documentclass{}{%
      \skvifemptyTF\skv@classoptionsfound{}{%
        \skvcommaloop*\skv@classoptionsfound\CurrentOption{%
          \expandafter\skv@g@tkeyname\CurrentOption=\skv@getname@nil\skv@tempa
          \skvxifinTF{,\skvoxdetok\skv@tempa,}{,\skvoxdetok\skv@tempd,}{}{%
            \edef\skv@classorpackageoptions{%
              \skvaddlist,\skv@classorpackageoptions
              \skvexpandonce\CurrentOption
            }%
          }%
        }%
      }%
    }%
  }%
  % Get document class options that are on the current paths:
  \ifx\skv@userclassorpackage\skv@documentclass
    \def\skvclassoptionsfound{}%
    \skvcommaloop*\skv@classorpackageoptions\skv@prova{%
      \expandafter\skv@g@tkeyname\skv@prova=\skv@getname@nil\skvcurrentkey
      \edef\skv@prova{[\skvcurrentprefix]{\skv@fams}{\skvcurrentkey}}%
      \expandafter\skvifkeydefTF\skv@prova{%
        \edef\skvclassoptionsfound{%
          \skvaddlist,\skvclassoptionsfound\skvcurrentkey
        }%
      }{}%
    }%
  \else
    \let\skvclassoptionsfound\skv@classoptionsfound
  \fi
  % \skvpackagelist is populated by all calls to \skvprocessoptions.
  \skvletcs\skv@prova{\@currname.\@currext.poxkeys}%
  \edef\skvpackagelist{%
    \skvaddlist,\skvpackagelist
    \skvifdefFT\skv@prova{}{\@currname.\@currext{\skv@prova}}%
  }%
  \let\do\skvcmdexit
  \skvexpanded{\endgroup
    \do\skvclassoptionsfound\do\skvcurrentpoxkeys
    \do\skvpackagelist\do\@unusedoptionlist
    \skvboolexit\ifskv@inclass\skv@exitpoxkeys
    % There may be preset keys even when \skv@classorpackageoptions is empty:
    \skvsetkeys\ifskv@pl+\fi[\skvcurrentprefix]{\skv@fams}[#1]%
      {\skvexpandonce\skv@classorpackageoptions}%
  }%
  \skvcslet{skv@dox@\@currname.\@currext}\relax
  \skv@inpoxfalse
  \let\@fileswith@pti@ns\@@fileswith@pti@ns
  \let\skvprocessoptions\skv@savprocessoptions
  \AtEndOfPackage{\let\@unprocessedoptions\relax}%
  \csname skv@\@currname.\@currext @afterprocess@hook\endcsname
  \skvcslet{skv@\@currname.\@currext @afterprocess@hook}\relax
}

% \skvprocessoptionswithclassoptions*+[<pref>]{<fams>}[<na>]
%
% 1. The star (*) suffix is always assumed present, even when the
%    user hasn't put it.
%
\skvrobustdef*\skvprocessoptionswithclassoptions{%
  \skv@testopte\skv@processoptionswithclassoptions
}
\skvrobustdef*\skv@processoptionswithclassoptions[#1]{%
  \skv@sttrue\skv@pox[#1]%
}

% \skvprocessoptionswithoutclassoptions*+[<pref>]{<fams>}[<na>]
%
% 1. The star (*) suffix is always assumed absent, even when the
%    user has put it.
%
\skvrobustdef*\skvprocessoptionswithoutclassoptions{%
  \skv@testopte\skv@processoptionswithoutclassoptions
}
\skvrobustdef*\skv@processoptionswithoutclassoptions[#1]{%
  \skv@stfalse\skv@pox[#1]%
}

% \skv@getpoxkeys{<keys>}
%
% 1. Get pox keys (ie, keys processed as options) from package or
%    class options.
% 2. This isn't a user command! See \skvgetdefinedkeys in file
%    skeyval-core.tex.
\skvrobustdef*\skv@getpoxkeys#1{%
  \begingroup
  \skvcommaloop*\skv@fams\skvcurrentfamily{%
    \skv@makeheader\skvcurrentfamily
    % Prepare to take poxkeys outside the group:
    \skvxifinTF{\skvoxdetok\skv@header}{\skvoxdetok\skv@exitpoxkeys}{}{%
      \edef\skv@exitpoxkeys{%
        \skvexpandonce\skv@exitpoxkeys
        \noexpand\skvcsexit{\skvcurrentpath.@poxkeys}%
      }%
    }%
    \edef\skv@prova{\@currname.\@currext.poxkeys}%
    \skvxifinTF{\skvoxdetok\skv@prova}{\skvoxdetok\skv@exitpoxkeys}{}{%
      \edef\skv@exitpoxkeys{%
        \skvexpandonce\skv@exitpoxkeys\noexpand\skvcsexit{\skv@prova}%
      }%
    }%
    \skvcommaloop{#1}\skvcurrentkey{%
      \skvifcsdefFT{\skv@header\skvcurrentkey.@cbk}{}{%
        \skvletcs\skv@prova{\skvcurrentpath.@poxkeys}%
        \skvifdefTF\skv@prova{%
          \skvxifinTF{,\skvcurrentkey,}{,\skv@prova,}{}{%
            \skvcsedef{\skvcurrentpath.@poxkeys}{%
              \skvaddlist,\skv@prova\skvcurrentkey
            }%
          }%
        }{%
          \skvcsedef{\skvcurrentpath.@poxkeys}{\skvcurrentkey}%
        }%
        \skvletcs\skv@prova{\@currname.\@currext.poxkeys}%
        \skvifdefTF\skv@prova{%
          \skvxifinTF{,\skvcurrentkey,}{,\skv@prova,}{}{%
            \skvcsedef{\@currname.\@currext.poxkeys}{%
              \skvaddlist,\skv@prova\skvcurrentkey
            }%
          }%
        }{%
          \skvcsedef{\@currname.\@currext.poxkeys}{\skvcurrentkey}%
        }%
        \skvxifinTF{,\skvcurrentkey,}{,\skvcurrentpoxkeys,}{}{%
          \edef\skvcurrentpoxkeys{%
            \skvaddlist,\skvcurrentpoxkeys\skvcurrentkey
          }%
        }%
      }%
    }%
  }%
  \let\do\skvcmdexit
  \skvexpanded{\endgroup
    \do\skvcurrentpoxkeys
    % We need the list in \skv@exitpoxkeys outside the current scope.
    % It will be used to take poxkeys (on each path) outside the scope
    % in \skv@pox:
    \do\skv@exitpoxkeys
    % We need the poxkeys on each path outside the current scope:
    \skv@exitpoxkeys
  }%
}

% +++++++++ Utilities for handling options via \directkeys +++++++++%

% \dirkeys@declareoptions{<star>}{<list>}
%
% <star>, if present, means new options.
%
\skvrobustdef*\dirkeys@declareoptions#1#2{%
  \let\@fileswith@pti@ns\@badrequireerror
  \begingroup
  % The boolean skv@inopt differs from skv@inpox. skv@inopt is only
  % meant to set the default family in \dirkeys@setdefaultpath
  % when dealing with options.
  \skv@inopttrue
  \def\skv@tempa{}%
  \edef\skv@tempb{\unexpanded{#2}}%
  \def\skv@pathdo##1##2{%
    \edef\skv@tempa{%
      \skvexpandonce\skv@tempa
      \skvdefinekeys#1[##1]{##2}%
      [\dirkeys@holderprefixtoks]{\skvexpandonce\skv@tempb}%
    }%
  }%
  \dirkeys@pathlist
  \expandafter\endgroup\skv@tempa
}
% \dirkeys@executeoptions{<plus sign or empty>}{<kvlist>}
%
% 1. <no-plus> = Execute options on ONLY the first path found. If an
%    option isn't found on the given paths, report error (ie,
%    don't save the option to the list of 'remaining keys'). Unknown
%    options should be flagged by an error immediately. Hence no
%    star (*) form of \dirkeys@executeoptions.
% 2. <plus> = Execute options on all the prevailing paths. If an
%    option isn't found on the given paths, flag error.
%
\skvrobustdef*\dirkeys@executeoptions#1#2{%
  \begingroup
  \skv@inopttrue
  % If the number of families is greater than one, gnored keys
  % from different families will mixed. This is the case even in
  % \skvsetkeys.
  \skvemptify{\skv@igkeys,\skv@fams}%
  \@tempcnta\skvz@
  \def\skv@pathdo##1##2{%
    \advance\@tempcnta\@ne
    \def\skv@pref{##1}%
    \ifnum\@tempcnta=\@ne
      \def\skv@firstpref{##1}%
    \else
      \ifx\skv@pref\skv@firstpref\else
        \skv@err{You can't use multiple prefixes when
          \MessageBreak calling the handler '.execute options'.
          \MessageBreak Check your values of '.prefix' and '.paths'}\skv@ehd
      \fi
    \fi
    \skvxifinTF{,##2,}{,\skv@fams,}{}{%
      \edef\skv@fams{\skvaddlist,\skv@fams##2}%
    }%
    \skvletcs\skv@prova{##1/##2/.@ignoredkeys}%
    \ifdefined\skv@prova
      \edef\skv@igkeys{\skvaddlist,\skv@igkeys\skv@prova}%
    \fi
  }%
  \dirkeys@pathlist
  \ifx\skv@fams\@empty
    \skv@err{No family before calling '.execute options'}\skv@ehd
  \fi
  \skvexpanded{\endgroup
    \skvsetkeys#1[\skv@pref]{\skv@fams}[\skv@igkeys]%
  }{#2}%
}
\skvrobustdef*\dirkeys@processoptions#1#2{%
  \begingroup
  \skv@inopttrue
  % If the number of families is greater than one, gnored keys
  % from different families will mixed. This is the case even in
  % \skvprocessoptions.
  \skvemptify{\skv@igkeys,\skv@fams}%
  \@tempcnta\skvz@
  \def\skv@pathdo##1##2{%
    \advance\@tempcnta\@ne
    \def\skv@pref{##1}%
    \ifnum\@tempcnta=\@ne
      \def\skv@firstpref{##1}%
    \else
      \ifx\skv@pref\skv@firstpref\else
        \skv@err{You can't use multiple prefixes when
          \MessageBreak calling the handler '.process options'.
          \MessageBreak Check your values of '.prefix' and '.paths'}\skv@ehd
      \fi
    \fi
    \skvxifinTF{,##2,}{,\skv@fams,}{}{%
      \edef\skv@fams{\skvaddlist,\skv@fams##2}%
    }%
    \skvletcs\skv@prova{##1/##2/.@ignoredkeys}%
    \ifdefined\skv@prova
      \edef\skv@igkeys{\skvaddlist,\skv@igkeys\skv@prova}%
    \fi
  }%
  \dirkeys@pathlist
  \ifx\skv@fams\@empty
    \skv@err{No family before calling '.process options'}\skv@ehd
  \fi
  \skvexpanded{\endgroup
    \skvprocessoptions#1#2[\skv@pref]<\skv@fams>[\skv@igkeys]%
  }%
}

% ++++++++ Keys for the handler <.mega process options> +++++++++ %

\directkeys*{%
  .path={SKV/megapox},
  .holder prefix=dirkeys@pox@,
  .initialize keys after define=true,
  .new keys={
    .ord/.ignore options//
      \def\dirkeys@pox@igkeys{#1}
      \skvstripouterbraces{2}\dirkeys@pox@igkeys
    ,
    .ord/{.prefix,.options prefix}/\skvdefaultprefix/
      \skv@ifoneprefix{#1}{%
        \edef\dirkeys@pox@pref{#1}
        \skvstripouterbraces{2}\dirkeys@pox@pref
      }{%
        \skv@err{Only one prefix is allowed in
          \MessageBreak processing options}\skv@ehd
      }
    ,
    .ord/{.family,.families,.options families,.options family}/
      \@currname.\@currext/
      \edef\dirkeys@pox@fams{#1}
      \skvstripouterbraces{2}\dirkeys@pox@fams
      \skv@makepaths\dirkeys@pox@pref\dirkeys@pox@fams
        \dirkeys@megapox@pathlist\skv@pathdo
    ,
    .ord/{path,.paths,.option path,.option paths}/
      {KV/\@currname.\@currext}/
      \skv@formatpaths{#1}\dirkeys@megapox@pathlist
    ,
    .ord/{.copy class options,.include class options}/true/
      \edef\dirkeys@pox@copyclass{0\skvifstrcmpTF{#1}{true}{0}{1}}
    ,
  },
}

\skvnewnumbers[skv@]{megapoxdepth}
\skvrobustdef*\dirkeys@megaprocessoptions#1{%
  \skvpushfunctions\dirkeys@megapox{%
    \do\dirkeys@pathlist\do\skv@pathdo\do\dirkeys@megapox@pathlist
    \do\dirkeys@pox@igkeys\do\dirkeys@pox@copyclass
  }\skv@megapoxdepth
  \skvemptify{\dirkeys@megapox@pathlist,\dirkeys@pox@igkeys}%
  \let\dirkeys@pox@pref\skvdefaultprefix
  \def\dirkeys@pox@copyclass{01}%
  \skvsetkeys[SKV]{megapox}{#1}%
  \ifx\dirkeys@pox@igkeys\@empty
    % So that all '...@ignoredkeys' will be undefined:
    \let\dirkeys@pox@igkeys\undefined
  \fi
  \let\dirkeys@pathlist\dirkeys@megapox@pathlist
  \def\skv@pathdo##1##2{%
    \skvcslet{##1/##2/.@ignoredkeys}\dirkeys@pox@igkeys
  }%
  \dirkeys@pathlist
  \skvexpanded{%
    \dirkeys@processoptions\if\dirkeys@pox@copyclass*\fi{+}%
  }%
  \skvpopfunctions\dirkeys@megapox\skv@megapoxdepth
}

% +++++++++++++ Handlers for executing and processing options ++++++++++++ %

\directkeys*{%
  .new handlers={
    {.action for unknown options,.action for unknown options}={
      \let\@fileswith@pti@ns\@badrequireerror
      \skv@dox{#1}
    },
    {.declare option,.declare options,.define option,.define options}={
      \dirkeys@declareoptions{}{#1}
    },
    {.new option,.new options}={
      \dirkeys@declareoptions{*}{#1}
    },
    {.execute options,.executeoptions,.execute options in one family}={
      \dirkeys@executeoptions{}{#1}
    },
    {.execute options*,.executeoptions*}={
      \skv@err
        {Handler '.execute options*' is undefined}
        {Handler '.execute options' has no star (*) variant,
        \MessageBreak since we don't want to ignore unknown
        \MessageBreak options from within package or class file.}%
    },
    {.execute options+,.executeoptions+,.execute options in all families}={
      \dirkeys@executeoptions{+}{#1}
    },
    % 1. All <.process options> handlers will filter out ignored keys.
    % 2. <.process options*> will copy class options.
    {.process options,.processoptions,.process options in one family}={
      \dirkeys@processoptions{}{}
    },
    {.process options*,.processoptions*,
      .copy class options and process options,
      .copy class options and process options in one family}={
      \dirkeys@processoptions{*}{}
    },
    {.process options+,.processoptions+,.process options in all families}={
      \dirkeys@processoptions{}{+}
    },
    {.process options*+,.processoptions*+,
      .copy class options and process options in all families}={
      \dirkeys@processoptions{*}{+}
    },
    % The handler <.mega process options> will:
    % 1. Search all families in its key <paths>.
    % 2. Not filter ignored paths and keys; in fact, it will not
    %    use active paths and keys.
    % 3. The handler '.mega process options' has the keys <ignore options>,
    %    <options prefix>, <options families>, and <copy class options>.
    %    These keys have aliases.
    %    See an example later in this file.
    {.mega process options,.megaprocessoptions}={
      \dirkeys@megaprocessoptions{#1}
    },
    {.mega process options*,.megaprocessoptions*}={
      \dirkeys@megaprocessoptions{#1,copy class options}
    },
  },
  .handler let={
    {.action for unknown option,.every unknown option}=
      .action for unknown options,
  },
}

% Loading a package while in options section is illegal. The command
% \skvafterprocessoptions can be used to defer the loading of packages
% till after the options section:
\skvrobustdef*\skvafterprocessoptions{%
  \expandafter\skvgappendtomacro
  \csname skv@\@currname.\@currext @afterprocess@hook\endcsname
}
\skvnewlet\skvifpackageloadedTF\@ifpackageloaded

\skvnewdef*\skv@visiteduseoptions{01}
\skvrobustdef*\skv@removeoption#1{%
  \ifx\@unusedoptionlist\@empty\else
    \if\skv@visiteduseoptions\else
      \skvcsvnormalize\@unusedoptionlist
      \def\skv@visiteduseoptions{00}%
    \fi
    \begingroup
    \skv@g@tkeyname#1=\skv@getname@nil\skv@tempb
    \@onelevel@sanitize\skv@tempb
    \def\skv@tempa{}%
    \skvcommaloop*\@unusedoptionlist\skv@prova{%
      \expandafter\skv@g@tkeyname\skv@prova=\skv@getname@nil\skv@provb
      \@onelevel@sanitize\skv@provb
      \ifx\skv@provb\skv@tempb\else
        \edef\skv@tempa{\skvaddlist,\skv@tempa\skvexpandonce\skv@prova}%
      \fi
    }%
    \let\@unusedoptionlist\skv@tempa
    \skvaftergroupdef\@unusedoptionlist\endgroup
  \fi
}
\skvonlypreamble{%
  \skvdeclareoption,\skvexecuteoptions,\skvprocessoptions,\skv@removeoption,
  \skveveryunknownoption,\dirkeys@declareoptions,
  \dirkeys@megaprocessoptions,\dirkeys@processoptions,\dirkeys@executeoptions,
  \skvprocessoptionswithclassoptions,\skvprocessoptionswithoutclassoptions
}

%+++++++++++++++++ This package's options section ++++++++++++++++++%

\skvrobustdef*\setupskeyval{\skvsetkeys[SKV]{skeyval}}
\skv@inoptionsectrue
\directkeys*{%
  .every unknown option={
    \@onelevel@sanitize\CurrentOption
    \PackageWarning{skeyval}{Unknown option '\CurrentOption' ignored}%
  },
  .path=SKV/skeyval,
  .holder prefix=skv@,
  .new options={
    .bool/{verbose,tracingkeys}/true,
    .ord/{keyparser,key parser}/{,}/
      \def\skv@keyparser{#1}%
      \skvstripouterbraces{2}\skv@keyparser,
    .bool/compatibility/true/
      \ifskv@compatibility
        \skvafterprocessoptions{%
          \skvifpackageloadedTF{skeyval-bc}{}{%
            \RequirePackage{skeyval-bc}%
          }
        }%
      \fi
    ,
  },
  .execute options={
    tracingkeys=false,keyparser,verbose=false
  },
  .mega process options={
    .options prefix=SKV,
    .options families={skeyval,definekeys},
    .ignore options={},
    .copy class options,
  },
}
\skv@inoptionsecfalse

\skv@restorecodes
\endinput