aboutsummaryrefslogtreecommitdiff
path: root/sys/imio/imt/imx.x
blob: ba3f7bc8d39c4e6325d2d2c6c746f265296380bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include <error.h>
include <syserr.h>
include <ctype.h>
include "imx.h"

define	DEBUG		FALSE


# IMXOPEN -- Open an image template using the enhanced expansion
# capabilities.  This procedure is simply the entry point to the imtopen()
# method in the standard IMT interface.

pointer	procedure imxopen (template)

char	template[ARB]		# image template

int	i, sort, level, ip, ch, expand, nchars, nimages, index, type
int	max_fnt, fnt_len, len, flen
pointer	listp, intmp, fnt, op, exp
char    lfile[SZ_LINE], lexpr[SZ_LINE], likparams[SZ_LINE], lsec[SZ_LINE]
char    lindex[SZ_LINE], lextname[SZ_LINE], lextver[SZ_LINE], elem[SZ_LINE]

pointer	imx_preproc (), imx_imexpand (), imx_fexpand ()
pointer	imx_texpand (), imx_dexpand ()
int	imx_filetype (), imx_parse (), imx_get_element ()
int	fntopnb (), strlen (), strsearch()
int	sum, fntlenb()
bool	envgetb()

define	output 	{Memc[op]=$1;op=op+1}
define	escape 	{output('\\');output($1)}

begin
	# Pre-process the input template.
	intmp = imx_preproc (template)
	    
	if (DEBUG) {
	    call eprintf ("template: '%s'\npreproc: '%s'\n\n")
		call pargstr (template)
		call pargstr (Memc[intmp])
	}


	fnt_len = 0 						# initialize    
	max_fnt = SZ_FNT
	call calloc (fnt, max_fnt, TY_CHAR)

	# Sorting is disabled as input and output templates, derived from the
	# same database but with string editing used to modify the output list,
	# may be sorted differently as sorting is performed upon the edited
	# output list.

	sort = NO

	op = fnt
	ip = intmp

	for (ip=intmp;  Memc[ip] != EOS;  ip=ip+1) {
	    ch = Memc[ip]

	    if (ch == '[') {
		if (ip > 1 && Memc[ip-1] == '!') {
		    # ![ -- Pass a [ to FNT (character class notation).
		    Memc[op-1] = '['

		} else if (ip > 1 && Memc[ip-1] == '\\') {
		    # \[ -- The [ is part of the filename.  Pass it on as an
		    # escape sequence to get by the FNT.

		    output ('[')

		} else {
		    # [ -- Unescaped [.  This marks the beginning of an image
		    # section sequence.  Output `%%[...]%' and escape all
		    # pattern matching metacharacters until a comma template
		    # delimiter is encountered.  Note that a comma within []
		    # is not a template delimiter.

		    output ('%')
		    output ('%')
		    output (CH_DELIM)

		    level = 0
		    for (;  Memc[ip] != EOS;  ip=ip+1) {
			ch = Memc[ip]
			if (ch == ',') {		# ,
			    if (level <= 0)
				break			# exit loop
			    else {
			        escape (ch)
			    }
			} else if (ch == '[') {		# [
			    escape (ch)
			    level = level + 1
			} else if (ch == ']') {		# ]
			    output (ch)
			    level = level - 1
			} else if (ch == '*') {		# *
			    escape (ch)
			} else				# normal chars
			    output (ch)
		    }
		    output ('%')
		    ip = ip - 1
		}

	    } else if (ch == '@') {
		# List file reference.  Output the CH_DELIM code before the @
		# to prevent further translations on the image section names
		# returned from the list file, e.g., "CH_DELIM // @listfile".

		# See if we're asking to expand the contents of the file,
		# e.g. as in "@@listfile" where 'listfile' contains MEFs
		# or tables we later expand.
		expand = NO
	        if (Memc[ip+1] == '@')
		    expand = YES

		# Break out the listfile from the filtering expression.
        
		index = 1
	        nchars = imx_get_element (Memc[ip], index, elem, SZ_LINE)
		ip = ip + strlen(elem) - 1

		nchars = imx_parse (elem, lfile, lindex, lextname, 
				lextver, lexpr, lsec, likparams, SZ_LINE)

		if (DEBUG) {
		    call eprintf ("imtopen:  lfile='%s'  lexpr='%s' ip='%s'\n")
			call pargstr (lfile)
			call pargstr (lexpr)
			call pargstr (Memc[ip])
		}
		    
	    
		exp = NULL
		type = imx_filetype (lfile)
		switch (type) {
		case IMT_IMAGE:
		    exp = imx_imexpand (lfile, lexpr, lindex, lextname, lextver,
				likparams, lsec, nimages)

		case IMT_TABLE:
		case IMT_VOTABLE:
		    exp = imx_texpand (lfile, type, lexpr, lindex, "", nimages)

		case IMT_FILE:
		    if (strsearch (lfile, "//") > 0) {
		        call calloc (exp, SZ_FNAME, TY_CHAR)
		        call strcpy (lfile, Memc[exp], SZ_FNAME)
			nimages = 1

		    } else if (lfile[1] == '@' && strsearch(lfile, "//") == 0) {
		        exp = imx_fexpand (lfile[2], lexpr, lindex, lextname,
				lextver, likparams, lsec, nimages)
#			if (nimages > 0) {
#		            output (CH_DELIM); output ('/'); output ('/')
#			}

		    } else {
		        call calloc (exp, SZ_FNAME, TY_CHAR)
		        call strcpy (lfile, Memc[exp], SZ_FNAME)
			nimages = 1
		    }

		case IMT_DIR:
		    exp = imx_dexpand (lfile, lexpr, lindex, lextname, lextver,
				likparams, lsec, nimages)
		}

		if (DEBUG) {
		    call eprintf ("expand:   exp='%s' len=%d  nim=%d\n")
		        call pargstr (Memc[exp])
			call pargi (strlen(Memc[exp]))
			call pargi (nimages)
		}
		    
		    
		# Copy to the output template string.
		len = strlen (Memc[exp])
		if (nimages > 0) {
		    if ((fnt_len + len) >= max_fnt) {
			max_fnt = max_fnt + len + 1
			if (fnt != NULL)
			    call realloc (fnt, max_fnt, TY_CHAR)
			else
			    call calloc (fnt, max_fnt, TY_CHAR)
			op = fnt
			if (fnt_len > 0)
			    op = fnt + strlen (Memc[fnt])
		    }
		    for (i=0; i < len; i=i+1)
		        output (Memc[exp+i])
		    Memc[op+1] = EOS
		    fnt_len = fnt_len + strlen (Memc[exp])
		}

		if (exp != NULL)
		    call mfree (exp, TY_CHAR)
		nimages = 0

	    } else
		output (ch)
	}
	output ('\0')
	Memc[op] = EOS


	# Clean up the expanded template string in case there were selection
	# filters that rejected images and we have extra commas in the string.
	len = strlen (Memc[fnt])
	if (Memc[fnt+len-1] == ',') {		# kill trailing commas
	    for (ip=fnt+len-1; Memc[ip] == ',' && ip >= fnt; ip=ip-1)
		Memc[ip] = '\0'
	}
	if (Memc[fnt] == ',') {
	    for (ip=fnt; Memc[ip] == ','; )	# skip leading commas
		ip = ip + 1
	    for (op=fnt; Memc[ip] != EOS; ip=ip+1) {
		Memc[op] = Memc[ip]
		op = op + 1
	    }
	    Memc[op] = '\0'
	}

	if (DEBUG) {
	    call eprintf ("imxopen:  fnt='%s'\n")
		call pargstr (Memc[fnt])
	}

	    
	# Open the template string using the filename list.
	listp = fntopnb (Memc[fnt], sort)

	# Clean up.
	call mfree (fnt, TY_CHAR)
	call mfree (intmp, TY_CHAR)

	return (listp)
end