1 /* $NetBSD: tree.c,v 1.12 2006/04/05 19:38:47 dsl Exp $ */
4 * Copyright (c) 1987, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #if HAVE_NBTOOL_CONFIG_H
33 #include "nbtool_config.h"
36 #include <sys/cdefs.h>
37 #if defined(__RCSID) && !defined(lint)
39 static char sccsid
[] = "@(#)tree.c 8.3 (Berkeley) 4/2/94";
41 __RCSID("$NetBSD: tree.c,v 1.12 2006/04/05 19:38:47 dsl Exp $");
53 static void add_node(NODE
*, NODE
*);
54 static void free_tree(NODE
*);
58 * enter a new node in the tree
61 pfnote(const char *name
, int ln
)
68 if (!(np
= (NODE
*)malloc(sizeof(NODE
)))) {
69 warnx("too many entries to sort");
73 if (!(head
= np
= (NODE
*)malloc(sizeof(NODE
))))
74 err(1, "out of space");
76 if (!xflag
&& !strcmp(name
, "main")) {
77 if (!(fp
= strrchr(curfile
, '/')))
81 (void)snprintf(nbuf
, sizeof(nbuf
), "M%s", fp
);
82 fp
= strrchr(nbuf
, '.');
87 if (!(np
->entry
= strdup(name
)))
91 np
->left
= np
->right
= 0;
92 if (!(np
->pat
= strdup(lbuf
)))
101 add_node(NODE
*node
, NODE
*cur_node
)
105 dif
= strcmp(node
->entry
, cur_node
->entry
);
107 if (node
->file
== cur_node
->file
) {
109 fprintf(stderr
, "Duplicate entry in file %s, line %d: %s\nSecond entry ignored\n", node
->file
, lineno
, node
->entry
);
112 if (!cur_node
->been_warned
)
114 fprintf(stderr
, "Duplicate entry in files %s and %s: %s (Warning only)\n", node
->file
, cur_node
->file
, node
->entry
);
115 cur_node
->been_warned
= YES
;
119 add_node(node
, cur_node
->left
);
121 cur_node
->left
= node
;
124 add_node(node
, cur_node
->right
);
126 cur_node
->right
= node
;
131 free_tree(NODE
*node
)
135 for (; node
!= NULL
; node
= nnode
) {
141 free_tree(node
->right
);