converted a bunch more functions to use a fd instead of a FILE*
[jra/samba/.git] / source3 / printing / print_svid.c
1 /*
2  * Copyright (C) 1997-1998 by Norm Jacobs, Colorado Springs, Colorado, USA
3  * Copyright (C) 1997-1998 by Sun Microsystem, Inc.
4  * All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /*
22  * This module implements support for gathering and comparing available
23  * printer information on a SVID or XPG4 compliant system.  It does this
24  * through the use of the SVID/XPG4 command "lpstat(1)".
25  *
26  * The expectations is that execution of the command "lpstat -v" will
27  * generate responses in the form of:
28  *
29  *      device for serial: /dev/term/b
30  *      system for fax: server
31  *      system for color: server (as printer chroma)
32  */
33
34
35 #include "includes.h"
36 #include "smb.h"
37
38 #ifdef SYSV
39
40 extern int DEBUGLEVEL;
41
42 typedef struct printer {
43         char *name;
44         struct printer *next;
45 } printer_t;
46 static printer_t *printers = NULL;
47
48 static void populate_printers(void)
49 {
50         char **lines;
51         int i;
52
53         lines = file_lines_pload("/usr/bin/lpstat -v", NULL);
54         if (!lines) return;
55
56         for (i=0;lines[i];i++) {
57                 printer_t *ptmp;
58                 char *name, *tmp;
59                 char *buf = lines[i];
60
61                 /* eat "system/device for " */
62                 if (((tmp = strchr(buf, ' ')) == NULL) ||
63                     ((tmp = strchr(++tmp, ' ')) == NULL))
64                         continue;
65
66                 /*
67                  * In case we're only at the "for ".
68                  */
69
70                 if(!strncmp("for ",++tmp,4)) {
71                         tmp=strchr(tmp, ' ');
72                         tmp++;
73                 }
74                 name = tmp;
75
76                 /* truncate the ": ..." */
77                 if ((tmp = strchr(name, ':')) != NULL)
78                         *tmp = '\0';
79                 
80                 /* add it to the cache */
81                 if ((ptmp = malloc(sizeof (*ptmp))) != NULL) {
82                         ZERO_STRUCTP(ptmp);
83                         if((ptmp->name = strdup(name)) == NULL)
84                                 DEBUG(0,("populate_printers: malloc fail in strdup !\n"));
85                         ptmp->next = printers;
86                         printers = ptmp;
87                 } else {
88                         DEBUG(0,("populate_printers: malloc fail for ptmp\n"));
89                 }
90         }
91
92         file_lines_free(lines);
93 }
94
95
96 /*
97  * provide the equivalent of pcap_printer_fn() for SVID/XPG4 conforming
98  * systems.  It was unclear why pcap_printer_fn() was tossing names longer
99  * than 8 characters.  I suspect that its a protocol limit, but amazingly
100  * names longer than 8 characters appear to work with my test
101  * clients (Win95/NT).
102  */
103 void sysv_printer_fn(void (*fn)(char *, char *))
104 {
105         printer_t *tmp;
106
107         if (printers == NULL)
108                 populate_printers();
109         for (tmp = printers; tmp != NULL; tmp = tmp->next)
110                 (fn)(tmp->name, "");
111 }
112
113
114 /*
115  * provide the equivalent of pcap_printername_ok() for SVID/XPG4 conforming
116  * systems.
117  */
118 int sysv_printername_ok(char *name)
119 {
120         printer_t *tmp;
121
122         if (printers == NULL)
123                 populate_printers();
124         for (tmp = printers; tmp != NULL; tmp = tmp->next)
125                 if (strcmp(tmp->name, name) == 0)
126                         return (True);
127         return (False);
128 }
129
130 #else
131 /* this keeps fussy compilers happy */
132  void print_svid_dummy(void);
133  void print_svid_dummy(void) {}
134 #endif