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 /* Copyright (c) 1988 AT&T */
23*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */
24*7c478bd9Sstevel@tonic-gate
25*7c478bd9Sstevel@tonic-gate
26*7c478bd9Sstevel@tonic-gate /*
27*7c478bd9Sstevel@tonic-gate * Copyright (c) 1999 by Sun Microsystems, Inc.
28*7c478bd9Sstevel@tonic-gate * All rights reserved.
29*7c478bd9Sstevel@tonic-gate */
30*7c478bd9Sstevel@tonic-gate
31*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
32*7c478bd9Sstevel@tonic-gate
33*7c478bd9Sstevel@tonic-gate /* vpinit - initialize vpdirs or update vpdirs based on currentdir */
34*7c478bd9Sstevel@tonic-gate
35*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
36*7c478bd9Sstevel@tonic-gate #include <string.h> /* string functions */
37*7c478bd9Sstevel@tonic-gate #include <stdlib.h>
38*7c478bd9Sstevel@tonic-gate #include <stdio.h> /* stderr */
39*7c478bd9Sstevel@tonic-gate #include "vp.h"
40*7c478bd9Sstevel@tonic-gate #include "library.h"
41*7c478bd9Sstevel@tonic-gate
42*7c478bd9Sstevel@tonic-gate char **vpdirs; /* directories (including current) in view path */
43*7c478bd9Sstevel@tonic-gate int vpndirs; /* number of directories in view path */
44*7c478bd9Sstevel@tonic-gate
45*7c478bd9Sstevel@tonic-gate char *argv0 = "libvp"; /* command name default for messages */
46*7c478bd9Sstevel@tonic-gate
47*7c478bd9Sstevel@tonic-gate void
vpinit(char * currentdir)48*7c478bd9Sstevel@tonic-gate vpinit(char *currentdir)
49*7c478bd9Sstevel@tonic-gate {
50*7c478bd9Sstevel@tonic-gate char *suffix; /* path from view path node */
51*7c478bd9Sstevel@tonic-gate char *vpath; /* VPATH environment variable value */
52*7c478bd9Sstevel@tonic-gate char buf[MAXPATH + 1];
53*7c478bd9Sstevel@tonic-gate int i;
54*7c478bd9Sstevel@tonic-gate char *s;
55*7c478bd9Sstevel@tonic-gate
56*7c478bd9Sstevel@tonic-gate /* if an existing directory list is to be updated, free it */
57*7c478bd9Sstevel@tonic-gate if (currentdir != NULL && vpndirs > 0) {
58*7c478bd9Sstevel@tonic-gate for (i = 0; i < vpndirs; ++i) {
59*7c478bd9Sstevel@tonic-gate free(vpdirs[i]);
60*7c478bd9Sstevel@tonic-gate }
61*7c478bd9Sstevel@tonic-gate free(vpdirs);
62*7c478bd9Sstevel@tonic-gate vpndirs = 0;
63*7c478bd9Sstevel@tonic-gate }
64*7c478bd9Sstevel@tonic-gate /* return if the directory list has been computed */
65*7c478bd9Sstevel@tonic-gate /* or there isn't a view path environment variable */
66*7c478bd9Sstevel@tonic-gate if (vpndirs > 0 || (vpath = getenv("VPATH")) == NULL ||
67*7c478bd9Sstevel@tonic-gate *vpath == '\0') {
68*7c478bd9Sstevel@tonic-gate return;
69*7c478bd9Sstevel@tonic-gate }
70*7c478bd9Sstevel@tonic-gate /* if not given, get the current directory name */
71*7c478bd9Sstevel@tonic-gate if (currentdir == NULL && (currentdir = mygetwd(buf)) == NULL) {
72*7c478bd9Sstevel@tonic-gate (void) fprintf(stderr,
73*7c478bd9Sstevel@tonic-gate "%s: cannot get current directory name\n", argv0);
74*7c478bd9Sstevel@tonic-gate return;
75*7c478bd9Sstevel@tonic-gate }
76*7c478bd9Sstevel@tonic-gate /* see if this directory is in the first view path node */
77*7c478bd9Sstevel@tonic-gate for (i = 0; vpath[i] == currentdir[i] && vpath[i] != '\0'; ++i) {
78*7c478bd9Sstevel@tonic-gate ;
79*7c478bd9Sstevel@tonic-gate }
80*7c478bd9Sstevel@tonic-gate if (i == 0 || (vpath[i] != ':' && vpath[i] != '\0') ||
81*7c478bd9Sstevel@tonic-gate (currentdir[i] != '/' && currentdir[i] != '\0')) {
82*7c478bd9Sstevel@tonic-gate return;
83*7c478bd9Sstevel@tonic-gate }
84*7c478bd9Sstevel@tonic-gate suffix = ¤tdir[i];
85*7c478bd9Sstevel@tonic-gate
86*7c478bd9Sstevel@tonic-gate /* count the nodes in the view path */
87*7c478bd9Sstevel@tonic-gate vpndirs = 1;
88*7c478bd9Sstevel@tonic-gate for (s = vpath; *s != '\0'; ++s) {
89*7c478bd9Sstevel@tonic-gate if (*s == ':' && *(s + 1) != ':' && *(s + 1) != '\0') {
90*7c478bd9Sstevel@tonic-gate ++vpndirs;
91*7c478bd9Sstevel@tonic-gate }
92*7c478bd9Sstevel@tonic-gate }
93*7c478bd9Sstevel@tonic-gate /* create the source directory list */
94*7c478bd9Sstevel@tonic-gate vpdirs = (char **)mymalloc(vpndirs * sizeof (char *));
95*7c478bd9Sstevel@tonic-gate
96*7c478bd9Sstevel@tonic-gate /* don't change VPATH in the environment */
97*7c478bd9Sstevel@tonic-gate vpath = stralloc(vpath);
98*7c478bd9Sstevel@tonic-gate
99*7c478bd9Sstevel@tonic-gate /* split the view path into nodes */
100*7c478bd9Sstevel@tonic-gate for (i = 0, s = vpath; i < vpndirs && *s != '\0'; ++i) {
101*7c478bd9Sstevel@tonic-gate while (*s == ':') { /* ignore null nodes */
102*7c478bd9Sstevel@tonic-gate ++s;
103*7c478bd9Sstevel@tonic-gate }
104*7c478bd9Sstevel@tonic-gate vpdirs[i] = s;
105*7c478bd9Sstevel@tonic-gate while (*s != '\0' && *++s != ':') {
106*7c478bd9Sstevel@tonic-gate if (*s == '\n') {
107*7c478bd9Sstevel@tonic-gate *s = '\0';
108*7c478bd9Sstevel@tonic-gate }
109*7c478bd9Sstevel@tonic-gate }
110*7c478bd9Sstevel@tonic-gate if (*s != '\0') {
111*7c478bd9Sstevel@tonic-gate *s++ = '\0';
112*7c478bd9Sstevel@tonic-gate }
113*7c478bd9Sstevel@tonic-gate }
114*7c478bd9Sstevel@tonic-gate /* convert the view path nodes to directories */
115*7c478bd9Sstevel@tonic-gate for (i = 0; i < vpndirs; ++i) {
116*7c478bd9Sstevel@tonic-gate s = mymalloc((strlen(vpdirs[i]) + strlen(suffix) + 1));
117*7c478bd9Sstevel@tonic-gate (void) strcpy(s, vpdirs[i]);
118*7c478bd9Sstevel@tonic-gate (void) strcat(s, suffix);
119*7c478bd9Sstevel@tonic-gate vpdirs[i] = s;
120*7c478bd9Sstevel@tonic-gate }
121*7c478bd9Sstevel@tonic-gate free(vpath);
122*7c478bd9Sstevel@tonic-gate }
123