fortran.c revision 92920
1251875Speter/*
2251875Speter * Copyright (c) 1987, 1993, 1994
3251875Speter *	The Regents of the University of California.  All rights reserved.
4251875Speter *
5251875Speter * Redistribution and use in source and binary forms, with or without
6251875Speter * modification, are permitted provided that the following conditions
7251875Speter * are met:
8251875Speter * 1. Redistributions of source code must retain the above copyright
9251875Speter *    notice, this list of conditions and the following disclaimer.
10251875Speter * 2. Redistributions in binary form must reproduce the above copyright
11251875Speter *    notice, this list of conditions and the following disclaimer in the
12251875Speter *    documentation and/or other materials provided with the distribution.
13251875Speter * 3. All advertising materials mentioning features or use of this software
14251875Speter *    must display the following acknowledgement:
15251875Speter *	This product includes software developed by the University of
16251875Speter *	California, Berkeley and its contributors.
17251875Speter * 4. Neither the name of the University nor the names of its contributors
18251875Speter *    may be used to endorse or promote products derived from this software
19251875Speter *    without specific prior written permission.
20251875Speter *
21251875Speter * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22251875Speter * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23251875Speter * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24251875Speter * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25251875Speter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26251875Speter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27251875Speter * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28251875Speter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29251875Speter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30251875Speter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31251875Speter * SUCH DAMAGE.
32251875Speter */
33251875Speter
34251875Speter#if 0
35251875Speter#ifndef lint
36251875Speterstatic char sccsid[] = "@(#)fortran.c	8.3 (Berkeley) 4/2/94";
37251875Speter#endif
38251875Speter#endif
39251875Speter
40251875Speter#include <sys/cdefs.h>
41251875Speter__FBSDID("$FreeBSD: head/usr.bin/ctags/fortran.c 92920 2002-03-22 01:22:50Z imp $");
42251875Speter
43251875Speter#include <ctype.h>
44251875Speter#include <limits.h>
45251875Speter#include <stdio.h>
46251875Speter#include <string.h>
47251875Speter
48251875Speter#include "ctags.h"
49251875Speter
50251875Speterstatic void takeprec(void);
51251875Speter
52251875Speterchar *lbp;				/* line buffer pointer */
53251875Speter
54251875Speterint
55251875SpeterPF_funcs()
56251875Speter{
57251875Speter	bool	pfcnt;			/* pascal/fortran functions found */
58	char	*cp;
59	char	tok[MAXTOKEN];
60
61	for (pfcnt = NO;;) {
62		lineftell = ftell(inf);
63		if (!fgets(lbuf, sizeof(lbuf), inf))
64			return (pfcnt);
65		++lineno;
66		lbp = lbuf;
67		if (*lbp == '%')	/* Ratfor escape to fortran */
68			++lbp;
69		for (; isspace(*lbp); ++lbp)
70			continue;
71		if (!*lbp)
72			continue;
73		switch (*lbp | ' ') {	/* convert to lower-case */
74		case 'c':
75			if (cicmp("complex") || cicmp("character"))
76				takeprec();
77			break;
78		case 'd':
79			if (cicmp("double")) {
80				for (; isspace(*lbp); ++lbp)
81					continue;
82				if (!*lbp)
83					continue;
84				if (cicmp("precision"))
85					break;
86				continue;
87			}
88			break;
89		case 'i':
90			if (cicmp("integer"))
91				takeprec();
92			break;
93		case 'l':
94			if (cicmp("logical"))
95				takeprec();
96			break;
97		case 'r':
98			if (cicmp("real"))
99				takeprec();
100			break;
101		}
102		for (; isspace(*lbp); ++lbp)
103			continue;
104		if (!*lbp)
105			continue;
106		switch (*lbp | ' ') {
107		case 'f':
108			if (cicmp("function"))
109				break;
110			continue;
111		case 'p':
112			if (cicmp("program") || cicmp("procedure"))
113				break;
114			continue;
115		case 's':
116			if (cicmp("subroutine"))
117				break;
118		default:
119			continue;
120		}
121		for (; isspace(*lbp); ++lbp)
122			continue;
123		if (!*lbp)
124			continue;
125		for (cp = lbp + 1; *cp && intoken(*cp); ++cp)
126			continue;
127		if ((cp = lbp + 1))
128			continue;
129		*cp = EOS;
130		(void)strcpy(tok, lbp);
131		getline();			/* process line for ex(1) */
132		pfnote(tok, lineno);
133		pfcnt = YES;
134	}
135	/*NOTREACHED*/
136}
137
138/*
139 * cicmp --
140 *	do case-independent strcmp
141 */
142int
143cicmp(cp)
144	const char	*cp;
145{
146	int	len;
147	char	*bp;
148
149	for (len = 0, bp = lbp; *cp && (*cp &~ ' ') == (*bp++ &~ ' ');
150	    ++cp, ++len)
151		continue;
152	if (!*cp) {
153		lbp += len;
154		return (YES);
155	}
156	return (NO);
157}
158
159static void
160takeprec()
161{
162	for (; isspace(*lbp); ++lbp)
163		continue;
164	if (*lbp == '*') {
165		for (++lbp; isspace(*lbp); ++lbp)
166			continue;
167		if (!isdigit(*lbp))
168			--lbp;			/* force failure */
169		else
170			while (isdigit(*++lbp))
171				continue;
172	}
173}
174