3 %%% Miscellaneous functionality
5 %%% (c) 2015 Straylight/Edgeware
8 %%%----- Licensing notice ---------------------------------------------------
10 %%% This file is part of the Sensible Object Design, an object system for C.
12 %%% SOD is free software; you can redistribute it and/or modify
13 %%% it under the terms of the GNU General Public License as published by
14 %%% the Free Software Foundation; either version 2 of the License, or
15 %%% (at your option) any later version.
17 %%% SOD is distributed in the hope that it will be useful,
18 %%% but WITHOUT ANY WARRANTY; without even the implied warranty of
19 %%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 %%% GNU General Public License for more details.
22 %%% You should have received a copy of the GNU General Public License
23 %%% along with SOD; if not, write to the Free Software Foundation,
24 %%% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 \chapter{Miscellaneous functionality} \label{ch:misc}
28 %%%--------------------------------------------------------------------------
29 \section{Utilities} \label{sec:misc.utilities}
31 These symbols are defined in the @|sod-utilities| package.
34 \subsection{Macro utilities}
37 {with-gensyms (@{ @<var> @! (@<var> @[@<name>@]) @}^*) \\ \ind
43 {once-only (@[[ :environment @<env> @]]
44 @{ @<var> @! (@<var> @[@<value-form>@]) @}^*) \\ \ind
50 {parse-body @<body> \&key :docp :declp
51 @> @<doc-string> @<declarations> @<body-forms>}
54 \begin{describe}{cls}{loc}
57 \begin{describe}{fun}{symbolicate \&rest @<symbols> @> @<symbol>}
61 \subsection{Locatives}
63 \begin{describe}{fun}{locp @<object> @> @<generalized-boolean>}
66 \begin{describe}{mac}{locf @<place> @> @<locative>}
70 {\dhead{fun}{ref @<locative> @> @<value>}
71 \dhead{fun}{setf (ref @<locative>) @<value>}}
76 @{ @<var> @! (@{ @<var> @!
77 (@<var> @[@<locative>@]) @}^*) @} \\ \ind
83 \subsection{Anaphorics}
85 \begin{describe}{sym}{it}
88 \begin{describe}{mac}{aif @<condition> @<consequent> @[@<alt>@]}
91 \begin{describe}{mac}{aand @<form>^*}
94 \begin{describe}{mac}{awhen @<condition> @<form>^*}
97 \begin{describe}{mac}{acond @{ (@<condition> @<form>^*) @}^*}
102 {acase @<scrutinee> @{ (@{ @<case> @! (@<case>^*) @} @<form>^*) @}^*}
104 {aecase @<scrutinee> @{ (@{ @<case> @! (@<case>^*) @} @<form>^*) @}^*}
105 \dhead{mac}{atypecase @<scrutinee> @{ (@<type> @<form>^*) @}^*}
106 \dhead{mac}{aetypecase @<scrutinee> @{ (@<type> @<form>^*) @}^*}}
109 \begin{describe}{mac}{asetf @{ @<place> @<value> @}^*}
113 \subsection{Metaobject protocol utilities}
115 \begin{describe}{gf}{instance-initargs @<instance>}
119 {\dhead{fun}{copy-instance @<instance> \&rest @<initargs>}
120 \dhead{gf}{copy-instance-using-class @<class> @<instance>
125 {\dhead{gf}{generic-function-methods @<generic-function> @> @<list>}
126 \dhead{gf}{method-specializers @<method> @> @<list>}
127 \dhead{cls}{eql-specializer}
128 \dhead{gf}{eql-specializer-object @<specializer> @> @<value>}}
132 \subsection{Other CLOS utilities}
134 \begin{describe}{mac}
135 {default-slot (@<instance> @<slot> @[@<slot-names>@]) \\ \ind
139 \begin{describe}{mac}
140 {define-on-demand-slot @<class> @<slot> (@<instance>) \\ \ind
141 @[[ @<declaration>^* @! @<doc-string> @]] \\
146 \subsection{Building lists}
148 \begin{describe}{fun}{make-list-builder \&optional @<initial> @> @<builder>}
151 \begin{describe}{fun}{lbuild-add @<builder> @<item> @> @<builder>}
154 \begin{describe}{fun}{lbuild-add-list @<builder> @<list> @> @<builder>}
157 \begin{describe}{fun}{lbuild-list @<builder> @> @<list>}
161 \subsection{Merging lists}
163 \begin{describe}{cls}
164 {inconsistent-merge-error (error) \&key :candidates :present}
167 \begin{describe}{gf}{merge-error-candidates @<error> @> @<list>}
170 \begin{describe}{gf}{merge-error-present-function @<error> @> @<function>}
173 \begin{describe}{fun}
174 {merge-lists @<lists> \&key :pick (:test \#'eql) :present @> @<list>}
178 \subsection{Other list utilities}
180 \begin{describe}{fun}
181 {mappend @<function> @<list> \&rest @<more-lists> @> @<result-list>}
184 \begin{describe}{fun}
185 {distinguished-point-shortest-paths @<root> @<neighbours-func>
189 \begin{describe}{mac}
190 {categorize (\=@<item-var> @<items>
191 @[[ :bind (@{ @<var> @!
192 (@<var> @[@<value>@]) @}^*) @]])
194 (@{ (@<cat-var> @<cat-predicate>) @}^*) \-\\
200 \begin{describe}{fun}{partial-order-minima @<items> @<order> @> @<list>}
203 \begin{describe}{fun}
204 {find-duplicates @<report> @<sequence> \&key :identity :test}
208 \subsection{Position tracking}
210 \begin{describe}{fun}
211 {whitespace-char-p @<character> @> @<generalized-boolean>}
214 \begin{describe}{fun}
215 {update-position @<character> @<line> @<column>
216 @> @<new-line> @<new-column>}
219 \begin{describe}{fun}
220 {backtrack-position @<character> @<line> @<column>
221 @> @<old-line> @<old-column>}
225 \subsection{Object printing}
227 \begin{describe}{mac}
228 {maybe-print-unreadable-object
231 :identity @<identity> @]]) \\ \ind
236 \begin{describe}{fun}{print-ugly-stuff @<stream> @<func> @> @<value>^*}
240 \subsection{Condition utilities}
242 \begin{describe}{cls}
243 {simple-control-error (control-error simple-error)
244 \&key :format-control :format-arguments}
247 \begin{describe}{fun}
248 {designated-condition
249 \=@<default-type> @<datum> @<arguments> \\
250 \>\&key :allow-pointless-arguments
254 \begin{describe}{fun}
255 {invoke-associated-restart @<restart> @<condition> \&rest @<arguments>}
259 \subsection{Very miscellaneous utilities}
261 \begin{describe}{fun}
262 {frob-identifier @<string> \&key :swap-case :swap-hyphen
263 @> @<frobbed-string>}
266 \begin{describe}{fun}
267 {compose @<function> \&rest @<more-functions> @> @<function>}
270 \begin{describe}{mac}{defvar-unbound @<name> @<documentation> @> @<name>}
273 \begin{describe}{mac}
274 {dosequence (@<var> @<sequence>
275 @[[ :start @<start> @! :end @<end> @!
276 :indexvar @<var> @]]) \\ \ind
278 @{ @<tag> @! @<statement> @}^*}
281 \begin{describe}{mac}
282 {define-access-wrapper @<from> @<to>
283 @[[ :read-only @<read-only-flag> @]]}
286 %%%--------------------------------------------------------------------------
287 \section{Condition utilities} \label{sec:misc.condition}
289 These symbols are defined in the @|sod-parser| package.
291 \begin{describe}{cls}{enclosing-condition (condition) \&key :condition}
295 {enclosed-condition @<enclosing-condition> @> @<condition>}
298 \begin{describe}{cls}{information (condition) \&key}
301 \begin{describe}{cls}
302 {simple-information (simple-condition information) \\ \ind
303 \&key :format-control :format-arguments}
306 \begin{describe}{fun}{info @<datum> \&rest @<arguments> @> @<flag>}
311 \dhead{fun}{noted \&optional @<condition>}}
314 \begin{describe}{fun}{cerror* @<datum> \&rest @<arguments>}
317 %%%--------------------------------------------------------------------------
318 \section{Option parser} \label{sec:misc.optparse}
320 These symbols are defined in the @|optparse| package.
322 \begin{describe}{fun}{exit \&optional (@<code> 0) \&key :abrupt}
325 \begin{describe}{var}{*program-name*}
328 \begin{describe}{var}{*command-line*}
331 \begin{describe}{fun}{set-command-line-arguments}
334 \begin{describe}{fun}{moan @<format-string> \&rest @<format-args>}
337 \begin{describe}{fun}{die @<format-string> \&rest @<format-args>}
340 \begin{describe}{var}{*options*}
343 \begin{describe}{cls}{option}
346 \begin{describe}{fun}{optionp @<object> @> @<generalized-boolean>}
349 \begin{describe}{fun}
350 {make-option \=@<long-name> @<short-name> \+\\
351 \&optional @<arg-name> \\
352 \&key :tag :negated-tag
353 :arg-optional-p :documentation \-
358 {\dhead{fun}{opt-short-name @<option> @> @<character-or-null>}
359 \dhead{fun}{setf (opt-short-name @<option>) @<character-or-null>}
360 \dhead{fun}{opt-long-name @<option> @> @<string-or-null>}
361 \dhead{fun}{setf (opt-long-name @<option>) @<string-or-null>}
362 \dhead{fun}{opt-tag @<option> @> @<tag>}
363 \dhead{fun}{setf (opt-tag @<option>) @<tag>}
364 \dhead{fun}{opt-negated-tag @<option> @> @<tag>}
365 \dhead{fun}{setf (opt-negated-tag @<option>) @<tag>}
366 \dhead{fun}{opt-arg-name @<option> @> @<string-or-null>}
367 \dhead{fun}{setf (opt-arg-name @<option>) @<string-or-null>}
368 \dhead{fun}{opt-optional-p @<option> @> @<generalized-boolean>}
369 \dhead{fun}{setf (opt-optional-p @<option>) @<generalized-boolean>}
370 \dhead{fun}{opt-documentation @<option> @> @<string-or-null>}
371 \dhead{fun}{setf (opt-documentation @<option>) @<string-or-null>}}
374 \begin{describe}{cls}{option-parser}
377 \begin{describe}{fun}{option-parser-p @<object> @> @<generalized-boolean>}
380 \begin{describe}{fun}
381 {make-option-parser \&key \=:args :options :non-option :numericp \+ \\
382 :negated-numeric-p long-only-p \-
383 \nlret @<option-parser>}
387 {\dhead{fun}{op-options @<option-parser> @> @<list>}
388 \dhead{fun}{setf (op-options @<option-parser>) @<list>}
389 \dhead{fun}{op-non-option @<option-parser> @> @<action>}
390 \dhead{fun}{setf (op-non-option @<option-parser>) @<action>}
391 \dhead{fun}{op-long-only-p @<option-parser> @> @<generalized-boolean>}
392 \dhead{fun}{setf (op-long-only-p @<option-parser>) @<generalized-boolean>}
393 \dhead{fun}{op-numeric-p @<option-parser> @> @<generalized-boolean>}
394 \dhead{fun}{setf (op-numeric-p @<option-parser>) @<generalized-boolean>}
395 \dhead{fun}{op-negated-numeric-p @<option-parser> @<generalized-boolean>}
396 \dhead{fun}{setf (op-negated-numeric-p @<option-parser>) @<generalized-boolean>}
397 \dhead{fun}{op-negated-p @<option-parser> @> @<generalized-boolean>}
398 \dhead{fun}{setf (op-negated-p @<option-parser>) @<generalized-boolean>}}
401 \begin{describe}{cls}
402 {option-parse-error (error simple-condition)
403 \&key :format-control :format-arguments}
406 \begin{describe}{fun}{option-parse-remainder @<option-parser>}
409 \begin{describe}{fun}{option-parse-return @<tag> \&optional @<argument>}
412 \begin{describe}{fun}{option-parse-next @<option-parser>}
415 \begin{describe}{mac}{option-parse-try @<form>^*}
418 \begin{describe}{mac}{with-unix-error-reporting () @<form>^*}
421 \begin{describe}{mac}
422 {defopthandler @<name> (@<var> @[@<arg>@]) @<lambda-list> \\ \ind
423 @[[ @<declaration>^* @! @<doc-string> @]] \\
427 \begin{describe}{fun}
428 {invoke-option-handler @<handler> @<locative> @<arg> @<arguments>}
431 \begin{describe}{opt}{set \&optional @<value>}
434 \begin{describe}{opt}{clear \&optional @<value>}
437 \begin{describe}{opt}{inc \&optional @<maximum> @<step>}
440 \begin{describe}{opt}{dec \&optional <minimum> <step>}
443 \begin{describe}{opt}{read}
446 \begin{describe}{opt}{int \&key :radix :min :max}
449 \begin{describe}{opt}{string}
452 \begin{describe}{opt}{keyword \&optional @<valid>}
455 \begin{describe}{opt}{list \&optional @<handler> \&rest @<handler-args>}
458 \begin{describe}{mac}
459 {defoptmacro @<name> @<lambda-list> \\ \ind
460 @[[ @<declaration>^* @! @<doc-string> @]] \\
464 \begin{describe}{fun}{parse-option-form @<form>}
467 \begin{describe}{mac}
468 {options @{ \=@<string> @! \+ \\
469 @<option-macro> @! (@<option-macro> @<macro-arg>^*) @! \\
470 (@[[ \=@<character> @! (:short-name @<character>) @! \+ \\
471 @<string>^* @! @<symbol> @! @<rational> @!
472 (:long-name @<string>) @! \\
473 (@<string> @<format-arg>^+) @!
474 (:doc @<string> @<format-arg>^*) @! \\
475 (:arg @<arg-name>) @! (:opt-arg @<arg-name>) @! \\
476 @<keyword> @! (:tag @<tag>) @!
477 (:negated-tag @<tag>) @! \\
478 @{ (@<handler> @<var> @<handler-arg>^*) @}^*
482 \begin{describe}{fun}
483 {simple-usage @<option-list> \&optional @<mandatory-args> @> @<list>}
486 \begin{describe}{fun}{show-usage @<prog> @<usage> \&optional @<stream>}
489 \begin{describe}{fun}
490 {show-help @<prog> @<usage> @<option-list> \&optional @<stream>}
493 \begin{describe}{fun}{sanity-check-option-list @<option-list>}
498 \dhead{var}{*version*}
499 \dhead{var}{*usage*}}
502 \begin{describe}{fun}{do-usage \&optional @<stream>}
505 \begin{describe}{fun}{die-usage}
508 \begin{describe}{optmac}
509 {help-options \&key :short-help :short-version :short-usage}
512 \begin{describe}{fun}
513 {define-program \&key \=:program-name \+ \\
514 :help :version :usage :full-usage \\
518 \begin{describe}{mac}
519 {do-options (@[[ :parser @<option-parser> @]]) \\ \ind
520 @{ (@{ @<case> @! (@<case>^*)@} (@[@[@<opt-var>@] @<arg-var>@])
524 %%%--------------------------------------------------------------------------
525 \section{Property sets} \label{sec:misc.pset}
527 \begin{describe}{fun}{property-key @<name> @> @<keyword>}
530 \begin{describe}{gf}{decode-property @<raw-value> @> @<type> @<value>}
533 \begin{describe}{cls}{property}
536 \begin{describe}{fun}{propertyp @<object> @> @<generalized-boolean>}
539 \begin{describe}{fun}
540 {make-property @<name> @<raw-value> \&key :type :location :seenp}
544 {\dhead{fun}{p-name @<property> @> @<name>}
545 \dhead{fun}{p-value @<property> @> @<value>}
546 \dhead{fun}{p-type @<property> @> @<type>}
547 \dhead{fun}{p-key @<property> @> @<symbol>}
548 \dhead{fun}{p-seenp @<property> @> @<boolean>}
549 \dhead{fun}{setf (p-seenp @<property>) @<boolean>}}
553 {coerce-property-value @<value> @<type> @<wanted> @> @<coerced-value>}
556 \begin{describe}{cls}{pset}
559 \begin{describe}{fun}{psetp @<object> @> @<generalized-boolean>}
562 \begin{describe}{fun}{make-pset @> @<pset>}
565 \begin{describe}{fun}{pset-get @<pset> @<key> @> @<property-or-nil>}
568 \begin{describe}{fun}{pset-store @<pset> @<property> @> @<property>}
571 \begin{describe}{fun}{pset-map @<func> @<pset>}
574 \begin{describe}{mac}
575 {with-pset-iterator (@<iter> @<pset>) @<declaration>^* @<form>^*}
578 \begin{describe}{fun}
579 {store-property @<pset> @<name> @<value> \&key :type :location
583 \begin{describe}{fun}
584 {get-property @<pset> @<name> @<type> \&optional @<default>
585 @> @<value> @<floc-or-nil>}
588 \begin{describe}{fun}
589 {add-property @<pset> @<name> @<value> \&key :type :location
593 \begin{describe}{fun}{make-property-set \&rest @<plist> @> @<pset>}
596 \begin{describe}{gf}{property-set @<thing> @> @<pset>}
599 \begin{describe}{fun}{check-unused-properties @<pset>}
602 \begin{describe}{mac}
603 {default-slot-from-property
604 (@<instance> @<slot> @[@<slot-names>@]) \\ \ind\ind
605 (@<pset> @<property> @<type> @[@<prop-var> @<convert-form>^*@]) \- \\
610 \begin{describe}{fun}
611 {parse-property @<scanner> @<pset>
612 @> @<result> @<success-flag> @<consumed-flag>}
615 \begin{describe}{fun}
616 {parse-property-set @<scanner>
617 @> @<result> @<success-flag> @<consumed-flag>}
620 %%%--------------------------------------------------------------------------
621 \section{Miscellaneous translator features} \label{sec:misc.misc}
623 \begin{describe}{var}{*sod-version*}
626 \begin{describe}{var}{*debugout-pathname*}
629 \begin{describe}{fun}
630 {test-module @<path> \&key :reason :clear :backtrace @> @<status>}
633 \begin{describe}{fun}
634 {test-parse-c-type @<string>
635 @> t @<c-type> @<kernel> @<string> @! nil @<indicator>}
638 \begin{describe}{fun}
639 {test-parse-pset @<string>
640 @> t @<pset> @! nil @<indicator>}
643 \begin{describe}{mac}
644 {test-parser (@<scanner> \&key :backtrace) @<parser> @<input>
645 @> @<result> @<status> @<remainder>}
648 \begin{describe}{fun}{exercise}
651 \begin{describe}{fun}{sod-frontend:main}
654 %%%----- That's all, folks --------------------------------------------------
658 %%% TeX-master: "sod.tex"