xref: /illumos-gate/usr/src/cmd/lp/lib/lp/printlist.c (revision 2a8bcb4e)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 1997 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28*7c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate /* EMACS_MODES: !fill, lnumb, !overwrite, !nodelete, !picture */
31*7c478bd9Sstevel@tonic-gate 
32*7c478bd9Sstevel@tonic-gate #include "stdio.h"
33*7c478bd9Sstevel@tonic-gate #include "string.h"
34*7c478bd9Sstevel@tonic-gate 
35*7c478bd9Sstevel@tonic-gate #include "lp.h"
36*7c478bd9Sstevel@tonic-gate 
37*7c478bd9Sstevel@tonic-gate #define	DFLT_PREFIX	0
38*7c478bd9Sstevel@tonic-gate #define	DFLT_SUFFIX	0
39*7c478bd9Sstevel@tonic-gate #define	DFLT_SEP	"\n"
40*7c478bd9Sstevel@tonic-gate #define	DFLT_NEWLINE	"\n"
41*7c478bd9Sstevel@tonic-gate 
42*7c478bd9Sstevel@tonic-gate int			printlist_qsep	= 0;
43*7c478bd9Sstevel@tonic-gate 
44*7c478bd9Sstevel@tonic-gate static char		*print_prefix	= DFLT_PREFIX,
45*7c478bd9Sstevel@tonic-gate 			*print_suffix	= DFLT_SUFFIX,
46*7c478bd9Sstevel@tonic-gate 			*print_sep	= DFLT_SEP,
47*7c478bd9Sstevel@tonic-gate 			*print_newline	= DFLT_NEWLINE;
48*7c478bd9Sstevel@tonic-gate 
49*7c478bd9Sstevel@tonic-gate static void		q_print( int, char * , char * );
50*7c478bd9Sstevel@tonic-gate 
51*7c478bd9Sstevel@tonic-gate /**
52*7c478bd9Sstevel@tonic-gate  ** printlist_setup() - ARRANGE FOR CUSTOM PRINTING
53*7c478bd9Sstevel@tonic-gate  ** printlist_unsetup() - RESET STANDARD PRINTING
54*7c478bd9Sstevel@tonic-gate  **/
55*7c478bd9Sstevel@tonic-gate 
56*7c478bd9Sstevel@tonic-gate void
printlist_setup(char * prefix,char * suffix,char * sep,char * newline)57*7c478bd9Sstevel@tonic-gate printlist_setup(char *prefix, char *suffix, char *sep, char *newline)
58*7c478bd9Sstevel@tonic-gate {
59*7c478bd9Sstevel@tonic-gate 	if (prefix)
60*7c478bd9Sstevel@tonic-gate 		print_prefix = prefix;
61*7c478bd9Sstevel@tonic-gate 	if (suffix)
62*7c478bd9Sstevel@tonic-gate 		print_suffix = suffix;
63*7c478bd9Sstevel@tonic-gate 	if (sep)
64*7c478bd9Sstevel@tonic-gate 		print_sep = sep;
65*7c478bd9Sstevel@tonic-gate 	if (newline)
66*7c478bd9Sstevel@tonic-gate 		print_newline = newline;
67*7c478bd9Sstevel@tonic-gate 	return;
68*7c478bd9Sstevel@tonic-gate }
69*7c478bd9Sstevel@tonic-gate 
70*7c478bd9Sstevel@tonic-gate void
printlist_unsetup()71*7c478bd9Sstevel@tonic-gate printlist_unsetup()
72*7c478bd9Sstevel@tonic-gate {
73*7c478bd9Sstevel@tonic-gate 	print_prefix = DFLT_PREFIX;
74*7c478bd9Sstevel@tonic-gate 	print_suffix = DFLT_SUFFIX;
75*7c478bd9Sstevel@tonic-gate 	print_sep = DFLT_SEP;
76*7c478bd9Sstevel@tonic-gate 	print_newline = DFLT_NEWLINE;
77*7c478bd9Sstevel@tonic-gate 	return;
78*7c478bd9Sstevel@tonic-gate }
79*7c478bd9Sstevel@tonic-gate 
80*7c478bd9Sstevel@tonic-gate /**
81*7c478bd9Sstevel@tonic-gate  ** printlist() - PRINT LIST ON OPEN CHANNEL
82*7c478bd9Sstevel@tonic-gate  **/
83*7c478bd9Sstevel@tonic-gate 
84*7c478bd9Sstevel@tonic-gate int
printlist(FILE * fp,char ** list)85*7c478bd9Sstevel@tonic-gate printlist(FILE *fp, char **list)
86*7c478bd9Sstevel@tonic-gate {
87*7c478bd9Sstevel@tonic-gate 	return (fdprintlist(fileno(fp), list));
88*7c478bd9Sstevel@tonic-gate }
89*7c478bd9Sstevel@tonic-gate 
90*7c478bd9Sstevel@tonic-gate int
fdprintlist(int fd,char ** list)91*7c478bd9Sstevel@tonic-gate fdprintlist(int fd, char **list)
92*7c478bd9Sstevel@tonic-gate {
93*7c478bd9Sstevel@tonic-gate 	register char		*sep;
94*7c478bd9Sstevel@tonic-gate 
95*7c478bd9Sstevel@tonic-gate 	if (list)
96*7c478bd9Sstevel@tonic-gate 	    for (sep = ""; *list; *list++, sep = print_sep) {
97*7c478bd9Sstevel@tonic-gate 
98*7c478bd9Sstevel@tonic-gate 		(void)fdprintf (fd, "%s%s", sep, NB(print_prefix));
99*7c478bd9Sstevel@tonic-gate 		if (printlist_qsep)
100*7c478bd9Sstevel@tonic-gate 			q_print (fd, *list, print_sep);
101*7c478bd9Sstevel@tonic-gate 		else
102*7c478bd9Sstevel@tonic-gate 			(void)fdprintf (fd, "%s", *list);
103*7c478bd9Sstevel@tonic-gate 		errno = 0;
104*7c478bd9Sstevel@tonic-gate 		(void)fdprintf (fd, "%s", NB(print_suffix));
105*7c478bd9Sstevel@tonic-gate 		if (errno != 0)
106*7c478bd9Sstevel@tonic-gate 			return (-1);
107*7c478bd9Sstevel@tonic-gate 
108*7c478bd9Sstevel@tonic-gate 	    }
109*7c478bd9Sstevel@tonic-gate 	(void)fdprintf (fd, print_newline);
110*7c478bd9Sstevel@tonic-gate 
111*7c478bd9Sstevel@tonic-gate 	return (0);
112*7c478bd9Sstevel@tonic-gate }
113*7c478bd9Sstevel@tonic-gate 
114*7c478bd9Sstevel@tonic-gate 
115*7c478bd9Sstevel@tonic-gate static void
q_print(int fd,char * str,char * sep)116*7c478bd9Sstevel@tonic-gate q_print(int fd, char *str, char *sep)
117*7c478bd9Sstevel@tonic-gate {
118*7c478bd9Sstevel@tonic-gate 	while (*str) {
119*7c478bd9Sstevel@tonic-gate 		if (strchr(sep, *str))
120*7c478bd9Sstevel@tonic-gate 			fdputc('\\', fd);
121*7c478bd9Sstevel@tonic-gate 		fdputc(*str, fd);
122*7c478bd9Sstevel@tonic-gate 		str++;
123*7c478bd9Sstevel@tonic-gate 	}
124*7c478bd9Sstevel@tonic-gate 	return;
125*7c478bd9Sstevel@tonic-gate }
126