Standard preamble:
========================================================================
..
.... Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.
If the F register is >0, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================
Title "UI_CREATE_METHOD 3"
way too many mistakes in technical documents.
All of these functions are expected to return 0 on error, 1 on success, or -1 on out-off-band events, for example if some prompting has been cancelled (by pressing Ctrl-C, for example). Only the flusher or the reader are expected to return -1. If returned by another of the functions, it's treated as if 0 was returned.
Regarding the writer and the reader, don't assume the former should only write and don't assume the latter should only read. This depends on the needs of the method.
For example, a typical tty reader wouldn't write the prompts in the write, but would rather do so in the reader, because of the sequential nature of prompting on a tty. This is how the UI_OpenSSL() method does it.
In contrast, a method that builds up a dialog box would add all prompt text in the writer, have all input read in the flusher and store the results in some temporary buffer, and finally have the reader just fetch those results.
The central function that uses these method functions is UI_process(), and it does it in five steps:
\fBUI_create_method() creates a new \s-1UI\s0 method with a given name.
\fBUI_destroy_method() destroys the given \s-1UI\s0 method ui_method.
\fBUI_method_set_opener(), UI_method_set_writer(), \fBUI_method_set_flusher(), UI_method_set_reader() and \fBUI_method_set_closer() set the five main method function to the given function pointer.
\fBUI_method_set_data_duplicator() sets the user data duplicator and destructor. See UI_dup_user_data\|(3).
\fBUI_method_set_prompt_constructor() sets the prompt constructor. See UI_construct_prompt\|(3).
\fBUI_method_set_ex_data() sets application specific data with a given \s-1EX_DATA\s0 index. See CRYPTO_get_ex_new_index\|(3) for general information on how to get that index.
\fBUI_method_get_opener(), UI_method_get_writer(), \fBUI_method_get_flusher(), UI_method_get_reader(), \fBUI_method_get_closer(), UI_method_get_data_duplicator(), \fBUI_method_get_data_destructor() and UI_method_get_prompt_constructor() return the different method functions.
\fBUI_method_get_ex_data() returns the application data previously stored with UI_method_set_ex_data().
\fBUI_method_set_opener(), UI_method_set_writer(), \fBUI_method_set_flusher(), UI_method_set_reader(), \fBUI_method_set_closer(), UI_method_set_data_duplicator() and \fBUI_method_set_prompt_constructor() return 0 on success, -1 if the given method is \s-1NULL.\s0
\fBUI_method_set_ex_data() returns 1 on success and 0 on error (because \fBCRYPTO_set_ex_data() does so).
\fBUI_method_get_opener(), UI_method_get_writer(), \fBUI_method_get_flusher(), UI_method_get_reader(), \fBUI_method_get_closer(), UI_method_get_data_duplicator(), \fBUI_method_get_data_destructor() and UI_method_get_prompt_constructor() return the requested function pointer if it's set in the method, otherwise \s-1NULL.\s0
\fBUI_method_get_ex_data() returns a pointer to the application specific data associated with the method.
Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy in the file \s-1LICENSE\s0 in the source distribution or at <https://www.openssl.org/source/license.html>.