1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 #ifndef OUTPUT_DRIVER_PROVIDER_H
18 #define OUTPUT_DRIVER_PROVIDER_H 1
22 #include "data/settings.h"
23 #include "libpspp/compiler.h"
24 #include "output/driver.h"
29 /* A configured output driver. */
32 const struct output_driver_class *class; /* Driver class. */
33 char *name; /* Name of this driver. */
34 enum settings_output_devices device_type; /* One of SETTINGS_DEVICE_*. */
37 void output_driver_init (struct output_driver *,
38 const struct output_driver_class *,
39 const char *name, enum settings_output_devices);
40 void output_driver_destroy (struct output_driver *);
42 const char *output_driver_get_name (const struct output_driver *);
44 /* One kind of output driver.
46 Output driver implementations must not call msg() to report errors. This
47 can lead to reentrance in the output driver, because msg() may report error
48 messages using the output drivers. Instead, this code should report errors
49 with error(), which will never call into the output drivers. */
50 struct output_driver_class
52 /* Name of this driver class. */
55 /* Closes and frees DRIVER. */
56 void (*destroy) (struct output_driver *driver);
58 /* Passes ITEM to DRIVER to be written as output. The caller retains
59 ownership of ITEM (but DRIVER may keep a copy of it by incrementing the
60 reference count by calling output_item_ref). */
61 void (*submit) (struct output_driver *driver,
62 const struct output_item *item);
64 /* Ensures that any output items passed to the 'submit' function for DRIVER
65 have actually been displayed.
67 This is called from the text-based UI before showing the command prompt,
68 to ensure that the user has actually been shown any preceding output If
69 it doesn't make sense for DRIVER to be used this way, then this function
70 need not do anything. */
71 void (*flush) (struct output_driver *driver);
74 /* Useful for output driver implementation. */
75 void output_driver_track_current_command (const struct output_item *, char **);
77 /* An abstract way for the output subsystem to create an output driver. */
78 struct output_driver_factory
80 /* The file extension, without the leading dot, e.g. "pdf". */
81 const char *extension;
83 /* The default file name, including extension.
85 If this is "-", that implies that by default output will be directed to
87 const char *default_file_name;
89 /* Creates a new output driver of this class. NAME and TYPE should be
90 passed directly to output_driver_init. Returns the new output driver if
91 successful, otherwise a null pointer.
93 It is up to the driver class to decide how to interpret OPTIONS. The
94 create function should delete pairs that it understands from OPTIONS,
95 because the caller may issue errors about unknown options for any pairs
96 that remain. The functions in output/options.h can be useful.
98 The returned driver should not have been registered (with
99 output_driver_register). The caller will register the driver (if this
101 struct output_driver *(*create) (const char *name,
102 enum settings_output_devices type,
103 struct string_map *options);
107 #endif /* output/driver-provider.h */