add_mounted.c revision 7c478bd95313f5f23a4c958a745db2134aa03244
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 1993 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.8 */
#include "string.h"
#include "errno.h"
#include "sys/types.h"
#include "stdlib.h"
#include "lp.h"
#include "printers.h"
#define WHO_AM_I I_AM_LPSTAT
#include "oam.h"
#include "lpstat.h"
#define nuther_mount() (MOUNTED *)Malloc(sizeof(MOUNTED))
static MOUNTED mounted_forms_head = { 0, 0, 0 },
mounted_pwheels_head = { 0, 0, 0 };
MOUNTED *mounted_forms = &mounted_forms_head,
*mounted_pwheels = &mounted_pwheels_head;
static void insert_mounted ( MOUNTED * , char * , char * , char * );
static int cs_addlist ( char *** , char * );
/**
** add_mounted() - ADD A FORM, PRINTWHEEL TO LIST
**/
void
add_mounted(char *printer, char *form, char *pwheel)
{
register PRINTER *pp;
register char **pcs;
char *ptrForm,*ptrEndForm;
/*
* Add this form to the list of mounted forms.
*/
if (form && *form)
if (ptrEndForm = strchr(form,*LP_SEP) ) {
ptrForm = form;
while (ptrEndForm) {
*ptrEndForm = 0;
insert_mounted(mounted_forms, ptrForm, printer,
(char *)0);
ptrForm = ptrEndForm+1;
ptrEndForm = strchr(ptrForm,*LP_SEP);
}
} else
insert_mounted(mounted_forms, form, printer, (char *)0);
/*
* Add this print wheel to the list of mounted print
* wheels.
*/
if (pwheel && *pwheel)
insert_mounted (
mounted_pwheels,
pwheel,
printer,
"!"
);
if (!(pp = getprinter(printer))) {
LP_ERRMSG2 (ERROR, E_LP_GETPRINTER, printer, PERROR);
done(1);
}
/*
* Add the list of administrator supplied character-set
* or print wheel aliases to the list.
*/
if (pp->char_sets)
for (pcs = pp->char_sets; *pcs; pcs++)
if (pp->daisy)
insert_mounted (
mounted_pwheels,
*pcs,
printer,
(char *)0
);
else {
register char *terminfo_name,
*alias;
if (
(terminfo_name = strtok(*pcs, "="))
&& (alias = strtok((char *)0, "="))
)
insert_mounted (
mounted_pwheels,
alias,
printer,
terminfo_name
);
}
/*
* Do the aliases built into the Terminfo database for
* this printer's type. This applies only to printers
* that have defined character sets.
*/
if ((pcs = get_charsets(pp, 1)))
for ( ; *pcs; pcs++) {
register char *terminfo_name,
*alias;
if (
(terminfo_name = strtok(*pcs, "="))
&& (alias = strtok((char *)0, "="))
)
insert_mounted (
mounted_pwheels,
alias,
printer,
terminfo_name
);
}
return;
}
/**
** insert_mounted()
**/
static void
insert_mounted(MOUNTED *ml, char *name, char *printer, char *tag)
{
register MOUNTED *pm;
register char *nm,
*pnm;
/*
* For forms: Each printer that has the form mounted is
* marked with a leading '!'.
* For print wheels and character sets: Each character
* set name is marked with a leading '!'; each printer
* that has a print wheel mounted is marked with a leading '!'.
*/
if (tag && tag[0] != '!') {
nm = Malloc(1 + strlen(name) + 1);
nm[0] = '!';
(void)strcpy (nm + 1, name);
} else
nm = name;
for (
pm = ml;
pm->name && !STREQU(pm->name, nm);
pm = pm->forward
)
;
if (tag && tag[0] == '!') {
pnm = Malloc(1 + strlen(printer) + 1);
pnm[0] = '!';
(void)strcpy (pnm + 1, printer);
} else if (tag) {
pnm = Malloc(strlen(printer) + 1 + strlen(tag) + 1);
(void)sprintf (pnm, "%s=%s", printer, tag);
} else
pnm = printer;
if (cs_addlist(&(pm->printers), pnm) == -1) {
LP_ERRMSG (ERROR, E_LP_MALLOC);
done (1);
}
if (!pm->name) {
pm->name = strdup(nm);
pm = (pm->forward = nuther_mount());
pm->name = 0;
pm->printers = 0;
pm->forward = 0;
}
return;
}
/**
** cs_addlist()
**/
static int
cs_addlist(char ***plist, char *item)
{
register char **pl;
register int n;
if (*plist) {
n = lenlist(*plist);
for (pl = *plist; *pl; pl++)
if (
(*pl)[0] == '!' && STREQU((*pl)+1, item)
|| STREQU(*pl, item)
)
break;
if (!*pl) {
n++;
*plist = (char **)Realloc(
(char *)*plist,
(n + 1) * sizeof(char *)
);
(*plist)[n - 1] = strdup(item);
(*plist)[n] = 0;
}
} else {
*plist = (char **)Malloc(2 * sizeof(char *));
(*plist)[0] = strdup(item);
(*plist)[1] = 0;
}
return (0);
}