Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is trapped.
[python.git] / Doc / lib / libformatter.tex
blobd7c5a6b83bf3750cabaa3a09b044f7e797fa57c3
1 \section{\module{formatter} ---
2 Generic output formatting}
4 \declaremodule{standard}{formatter}
5 \modulesynopsis{Generic output formatter and device interface.}
9 This module supports two interface definitions, each with multiple
10 implementations. The \emph{formatter} interface is used by the
11 \class{HTMLParser} class of the \refmodule{htmllib} module, and the
12 \emph{writer} interface is required by the formatter interface.
13 \withsubitem{(class in htmllib)}{\ttindex{HTMLParser}}
15 Formatter objects transform an abstract flow of formatting events into
16 specific output events on writer objects. Formatters manage several
17 stack structures to allow various properties of a writer object to be
18 changed and restored; writers need not be able to handle relative
19 changes nor any sort of ``change back'' operation. Specific writer
20 properties which may be controlled via formatter objects are
21 horizontal alignment, font, and left margin indentations. A mechanism
22 is provided which supports providing arbitrary, non-exclusive style
23 settings to a writer as well. Additional interfaces facilitate
24 formatting events which are not reversible, such as paragraph
25 separation.
27 Writer objects encapsulate device interfaces. Abstract devices, such
28 as file formats, are supported as well as physical devices. The
29 provided implementations all work with abstract devices. The
30 interface makes available mechanisms for setting the properties which
31 formatter objects manage and inserting data into the output.
34 \subsection{The Formatter Interface \label{formatter-interface}}
36 Interfaces to create formatters are dependent on the specific
37 formatter class being instantiated. The interfaces described below
38 are the required interfaces which all formatters must support once
39 initialized.
41 One data element is defined at the module level:
44 \begin{datadesc}{AS_IS}
45 Value which can be used in the font specification passed to the
46 \code{push_font()} method described below, or as the new value to any
47 other \code{push_\var{property}()} method. Pushing the \code{AS_IS}
48 value allows the corresponding \code{pop_\var{property}()} method to
49 be called without having to track whether the property was changed.
50 \end{datadesc}
52 The following attributes are defined for formatter instance objects:
55 \begin{memberdesc}[formatter]{writer}
56 The writer instance with which the formatter interacts.
57 \end{memberdesc}
60 \begin{methoddesc}[formatter]{end_paragraph}{blanklines}
61 Close any open paragraphs and insert at least \var{blanklines}
62 before the next paragraph.
63 \end{methoddesc}
65 \begin{methoddesc}[formatter]{add_line_break}{}
66 Add a hard line break if one does not already exist. This does not
67 break the logical paragraph.
68 \end{methoddesc}
70 \begin{methoddesc}[formatter]{add_hor_rule}{*args, **kw}
71 Insert a horizontal rule in the output. A hard break is inserted if
72 there is data in the current paragraph, but the logical paragraph is
73 not broken. The arguments and keywords are passed on to the writer's
74 \method{send_line_break()} method.
75 \end{methoddesc}
77 \begin{methoddesc}[formatter]{add_flowing_data}{data}
78 Provide data which should be formatted with collapsed whitespace.
79 Whitespace from preceding and successive calls to
80 \method{add_flowing_data()} is considered as well when the whitespace
81 collapse is performed. The data which is passed to this method is
82 expected to be word-wrapped by the output device. Note that any
83 word-wrapping still must be performed by the writer object due to the
84 need to rely on device and font information.
85 \end{methoddesc}
87 \begin{methoddesc}[formatter]{add_literal_data}{data}
88 Provide data which should be passed to the writer unchanged.
89 Whitespace, including newline and tab characters, are considered legal
90 in the value of \var{data}.
91 \end{methoddesc}
93 \begin{methoddesc}[formatter]{add_label_data}{format, counter}
94 Insert a label which should be placed to the left of the current left
95 margin. This should be used for constructing bulleted or numbered
96 lists. If the \var{format} value is a string, it is interpreted as a
97 format specification for \var{counter}, which should be an integer.
98 The result of this formatting becomes the value of the label; if
99 \var{format} is not a string it is used as the label value directly.
100 The label value is passed as the only argument to the writer's
101 \method{send_label_data()} method. Interpretation of non-string label
102 values is dependent on the associated writer.
104 Format specifications are strings which, in combination with a counter
105 value, are used to compute label values. Each character in the format
106 string is copied to the label value, with some characters recognized
107 to indicate a transform on the counter value. Specifically, the
108 character \character{1} represents the counter value formatter as an
109 Arabic number, the characters \character{A} and \character{a}
110 represent alphabetic representations of the counter value in upper and
111 lower case, respectively, and \character{I} and \character{i}
112 represent the counter value in Roman numerals, in upper and lower
113 case. Note that the alphabetic and roman transforms require that the
114 counter value be greater than zero.
115 \end{methoddesc}
117 \begin{methoddesc}[formatter]{flush_softspace}{}
118 Send any pending whitespace buffered from a previous call to
119 \method{add_flowing_data()} to the associated writer object. This
120 should be called before any direct manipulation of the writer object.
121 \end{methoddesc}
123 \begin{methoddesc}[formatter]{push_alignment}{align}
124 Push a new alignment setting onto the alignment stack. This may be
125 \constant{AS_IS} if no change is desired. If the alignment value is
126 changed from the previous setting, the writer's \method{new_alignment()}
127 method is called with the \var{align} value.
128 \end{methoddesc}
130 \begin{methoddesc}[formatter]{pop_alignment}{}
131 Restore the previous alignment.
132 \end{methoddesc}
134 \begin{methoddesc}[formatter]{push_font}{\code{(}size, italic, bold, teletype\code{)}}
135 Change some or all font properties of the writer object. Properties
136 which are not set to \constant{AS_IS} are set to the values passed in
137 while others are maintained at their current settings. The writer's
138 \method{new_font()} method is called with the fully resolved font
139 specification.
140 \end{methoddesc}
142 \begin{methoddesc}[formatter]{pop_font}{}
143 Restore the previous font.
144 \end{methoddesc}
146 \begin{methoddesc}[formatter]{push_margin}{margin}
147 Increase the number of left margin indentations by one, associating
148 the logical tag \var{margin} with the new indentation. The initial
149 margin level is \code{0}. Changed values of the logical tag must be
150 true values; false values other than \constant{AS_IS} are not
151 sufficient to change the margin.
152 \end{methoddesc}
154 \begin{methoddesc}[formatter]{pop_margin}{}
155 Restore the previous margin.
156 \end{methoddesc}
158 \begin{methoddesc}[formatter]{push_style}{*styles}
159 Push any number of arbitrary style specifications. All styles are
160 pushed onto the styles stack in order. A tuple representing the
161 entire stack, including \constant{AS_IS} values, is passed to the
162 writer's \method{new_styles()} method.
163 \end{methoddesc}
165 \begin{methoddesc}[formatter]{pop_style}{\optional{n\code{ = 1}}}
166 Pop the last \var{n} style specifications passed to
167 \method{push_style()}. A tuple representing the revised stack,
168 including \constant{AS_IS} values, is passed to the writer's
169 \method{new_styles()} method.
170 \end{methoddesc}
172 \begin{methoddesc}[formatter]{set_spacing}{spacing}
173 Set the spacing style for the writer.
174 \end{methoddesc}
176 \begin{methoddesc}[formatter]{assert_line_data}{\optional{flag\code{ = 1}}}
177 Inform the formatter that data has been added to the current paragraph
178 out-of-band. This should be used when the writer has been manipulated
179 directly. The optional \var{flag} argument can be set to false if
180 the writer manipulations produced a hard line break at the end of the
181 output.
182 \end{methoddesc}
185 \subsection{Formatter Implementations \label{formatter-impls}}
187 Two implementations of formatter objects are provided by this module.
188 Most applications may use one of these classes without modification or
189 subclassing.
191 \begin{classdesc}{NullFormatter}{\optional{writer}}
192 A formatter which does nothing. If \var{writer} is omitted, a
193 \class{NullWriter} instance is created. No methods of the writer are
194 called by \class{NullFormatter} instances. Implementations should
195 inherit from this class if implementing a writer interface but don't
196 need to inherit any implementation.
197 \end{classdesc}
199 \begin{classdesc}{AbstractFormatter}{writer}
200 The standard formatter. This implementation has demonstrated wide
201 applicability to many writers, and may be used directly in most
202 circumstances. It has been used to implement a full-featured
203 World Wide Web browser.
204 \end{classdesc}
208 \subsection{The Writer Interface \label{writer-interface}}
210 Interfaces to create writers are dependent on the specific writer
211 class being instantiated. The interfaces described below are the
212 required interfaces which all writers must support once initialized.
213 Note that while most applications can use the
214 \class{AbstractFormatter} class as a formatter, the writer must
215 typically be provided by the application.
218 \begin{methoddesc}[writer]{flush}{}
219 Flush any buffered output or device control events.
220 \end{methoddesc}
222 \begin{methoddesc}[writer]{new_alignment}{align}
223 Set the alignment style. The \var{align} value can be any object,
224 but by convention is a string or \code{None}, where \code{None}
225 indicates that the writer's ``preferred'' alignment should be used.
226 Conventional \var{align} values are \code{'left'}, \code{'center'},
227 \code{'right'}, and \code{'justify'}.
228 \end{methoddesc}
230 \begin{methoddesc}[writer]{new_font}{font}
231 Set the font style. The value of \var{font} will be \code{None},
232 indicating that the device's default font should be used, or a tuple
233 of the form \code{(}\var{size}, \var{italic}, \var{bold},
234 \var{teletype}\code{)}. Size will be a string indicating the size of
235 font that should be used; specific strings and their interpretation
236 must be defined by the application. The \var{italic}, \var{bold}, and
237 \var{teletype} values are Boolean values specifying which of those
238 font attributes should be used.
239 \end{methoddesc}
241 \begin{methoddesc}[writer]{new_margin}{margin, level}
242 Set the margin level to the integer \var{level} and the logical tag
243 to \var{margin}. Interpretation of the logical tag is at the
244 writer's discretion; the only restriction on the value of the logical
245 tag is that it not be a false value for non-zero values of
246 \var{level}.
247 \end{methoddesc}
249 \begin{methoddesc}[writer]{new_spacing}{spacing}
250 Set the spacing style to \var{spacing}.
251 \end{methoddesc}
253 \begin{methoddesc}[writer]{new_styles}{styles}
254 Set additional styles. The \var{styles} value is a tuple of
255 arbitrary values; the value \constant{AS_IS} should be ignored. The
256 \var{styles} tuple may be interpreted either as a set or as a stack
257 depending on the requirements of the application and writer
258 implementation.
259 \end{methoddesc}
261 \begin{methoddesc}[writer]{send_line_break}{}
262 Break the current line.
263 \end{methoddesc}
265 \begin{methoddesc}[writer]{send_paragraph}{blankline}
266 Produce a paragraph separation of at least \var{blankline} blank
267 lines, or the equivalent. The \var{blankline} value will be an
268 integer. Note that the implementation will receive a call to
269 \method{send_line_break()} before this call if a line break is needed;
270 this method should not include ending the last line of the paragraph.
271 It is only responsible for vertical spacing between paragraphs.
272 \end{methoddesc}
274 \begin{methoddesc}[writer]{send_hor_rule}{*args, **kw}
275 Display a horizontal rule on the output device. The arguments to this
276 method are entirely application- and writer-specific, and should be
277 interpreted with care. The method implementation may assume that a
278 line break has already been issued via \method{send_line_break()}.
279 \end{methoddesc}
281 \begin{methoddesc}[writer]{send_flowing_data}{data}
282 Output character data which may be word-wrapped and re-flowed as
283 needed. Within any sequence of calls to this method, the writer may
284 assume that spans of multiple whitespace characters have been
285 collapsed to single space characters.
286 \end{methoddesc}
288 \begin{methoddesc}[writer]{send_literal_data}{data}
289 Output character data which has already been formatted
290 for display. Generally, this should be interpreted to mean that line
291 breaks indicated by newline characters should be preserved and no new
292 line breaks should be introduced. The data may contain embedded
293 newline and tab characters, unlike data provided to the
294 \method{send_formatted_data()} interface.
295 \end{methoddesc}
297 \begin{methoddesc}[writer]{send_label_data}{data}
298 Set \var{data} to the left of the current left margin, if possible.
299 The value of \var{data} is not restricted; treatment of non-string
300 values is entirely application- and writer-dependent. This method
301 will only be called at the beginning of a line.
302 \end{methoddesc}
305 \subsection{Writer Implementations \label{writer-impls}}
307 Three implementations of the writer object interface are provided as
308 examples by this module. Most applications will need to derive new
309 writer classes from the \class{NullWriter} class.
311 \begin{classdesc}{NullWriter}{}
312 A writer which only provides the interface definition; no actions are
313 taken on any methods. This should be the base class for all writers
314 which do not need to inherit any implementation methods.
315 \end{classdesc}
317 \begin{classdesc}{AbstractWriter}{}
318 A writer which can be used in debugging formatters, but not much
319 else. Each method simply announces itself by printing its name and
320 arguments on standard output.
321 \end{classdesc}
323 \begin{classdesc}{DumbWriter}{\optional{file\optional{, maxcol\code{ = 72}}}}
324 Simple writer class which writes output on the file object passed in
325 as \var{file} or, if \var{file} is omitted, on standard output. The
326 output is simply word-wrapped to the number of columns specified by
327 \var{maxcol}. This class is suitable for reflowing a sequence of
328 paragraphs.
329 \end{classdesc}