012a304e36ac46cf58dfcb66fc5533cbb8b81af3
[pspp] / src / output / driver-provider.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2012 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #ifndef OUTPUT_DRIVER_PROVIDER_H
18 #define OUTPUT_DRIVER_PROVIDER_H 1
19
20 #include <stdbool.h>
21
22 #include "data/settings.h"
23 #include "libpspp/compiler.h"
24 #include "output/driver.h"
25
26 struct output_item;
27 struct string_map;
28
29 /* A configured output driver. */
30 struct output_driver
31   {
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_*. */
35   };
36
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 *);
41
42 const char *output_driver_get_name (const struct output_driver *);
43
44 /* One kind of output driver.
45
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
51   {
52     /* Name of this driver class. */
53     const char *name;
54
55     /* Closes and frees DRIVER. */
56     void (*destroy) (struct output_driver *driver);
57
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);
63
64     /* Ensures that any output items passed to the 'submit' function for DRIVER
65        have actually been displayed.
66
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);
72   };
73
74 /* Useful for output driver implementation. */
75 void output_driver_track_current_command (const struct output_item *, char **);
76 \f
77 /* An abstract way for the output subsystem to create an output driver. */
78 struct output_driver_factory
79   {
80     /* The file extension, without the leading dot, e.g. "pdf". */
81     const char *extension;
82
83     /* The default file name, including extension.
84
85        If this is "-", that implies that by default output will be directed to
86        stdout. */
87     const char *default_file_name;
88
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.
92
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.
97
98        The returned driver should not have been registered (with
99        output_driver_register).  The caller will register the driver (if this
100        is desirable). */
101     struct output_driver *(*create) (const char *name,
102                                      enum settings_output_devices type,
103                                      struct string_map *options);
104   };
105
106
107 #endif /* output/driver-provider.h */