aboutsummaryrefslogtreecommitdiff
path: root/pkg/utilities/nttools/tunits/unstr.x
blob: 80bd65ba99d5b3d7b27f06f3e18ad1890049393e (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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
include "tunits.h"

#* HISTORY *
#* B.Simon	07-Jan-99	Original

# ABREV_UNSTR -- Replace units string with its abbreviation

procedure abrev_unstr (ab, instr, outstr, maxch)

pointer	ab		# i: abbreviation hash descriptor
char	instr[ARB]	# i: string to be abbreviated
char	outstr[ARB]	# o: abbreviated string
int	maxch		# i: max length of abbreviated string
#--
int	nc
pointer	sp, temp

int	gstrcpy(), find_abrev ()

begin
	if (find_abrev (ab, instr, outstr, maxch) == YES)
	    return

	call smark (sp)
	call salloc (temp, LEN_UNIT, TY_CHAR)

	nc = gstrcpy (instr, Memc[temp], LEN_UNIT)
	if (nc == 1 || instr[nc] != 's') {
	    call strcpy (instr, outstr, maxch)

	} else {
	    Memc[temp+nc-1] = EOS
	    if (find_abrev (ab, Memc[temp], outstr, maxch) == NO)
		call strcpy (Memc[temp], outstr, maxch)
	}

	call sfree (sp)
end

# COPY_UNSTR -- Copy a units descriptor

pointer procedure copy_unstr (punit1)

pointer	punit1		# i: units descriptor to be copied
#--
int	idx
pointer	punit2

begin
	# Allocate structure to hold units

	call calloc (punit2, LEN_TUNSTRUCT, TY_INT)

	# Copy numeric factor

	TUN_FACTOR(punit2) = TUN_FACTOR(punit1)

	# Copy units and their powers

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit1,idx) == NULL)
		break

	    call malloc (TUN_UNPTR(punit2,idx), LEN_UNIT, TY_CHAR)
	    call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit2,idx), 
			 LEN_UNIT)

	    TUN_POWER(punit2,idx) = TUN_POWER(punit1,idx)
	}

	return (punit2)
end
# DIV_UNSTR -- Divide one set of units by another

pointer procedure div_unstr (punit1, punit2)

pointer	punit1		# i: descriptor for first set of units
pointer	punit2		# i: descriptor for second set of units
#--
int	idx, jdx, kdx, power
pointer	punit3

int	find_unstr()

begin
	# Allocate structure to hold units

	call calloc (punit3, LEN_TUNSTRUCT, TY_INT)

	# Compute the new factor

	TUN_FACTOR(punit3) = TUN_FACTOR(punit1) / TUN_FACTOR(punit2)

	# Find units in both descriptors and subtract their powers

	jdx = 1
	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit1,idx) == NULL)
		break

	    kdx = find_unstr (punit2, TUN_UNITS(punit1, idx))
	    if (kdx == 0)
		next

	    power = TUN_POWER(punit1,idx) - TUN_POWER(punit2,kdx)
	    if (power == 0)
		next

	    call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
	    call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit3,jdx), 
			 LEN_UNIT)

	    TUN_POWER(punit3,jdx) = power
	    jdx = jdx + 1
	    
	}

	# Find units only in a single descriptor and add them to the
	# new descriptor

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit1,idx) == NULL)
		break

	    if (find_unstr (punit2, TUN_UNITS(punit1, idx)) == 0) {
		call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
		call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit3,jdx), 
			     LEN_UNIT)

		TUN_POWER(punit3,jdx) = TUN_POWER(punit1,idx)
		jdx = jdx + 1
	    }
	}

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit2,idx) == NULL)
		break

	    if (find_unstr (punit1, TUN_UNITS(punit2, idx)) == 0) {
		call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
		call strcpy (TUN_UNITS(punit2,idx), TUN_UNITS(punit3,jdx), 
			     LEN_UNIT)

		TUN_POWER(punit3,jdx) = - TUN_POWER(punit2,idx)
		jdx = jdx + 1
	    }
	}

	return (punit3)
end

# FIND_UNSTR -- Find location of units string in descriptor

int procedure find_unstr (punit, units)

pointer	punit		# i: units descriptor
char	units[ARB]	# i: units string to search for
#--
int	idx
bool	streq()

begin
	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit,idx) == NULL)
		break

	    if (streq (TUN_UNITS(punit,idx), units))
		return (idx)
	}

	return (0)
end

# FREE_UNSTR -- Release memory used by a units descriptor

procedure free_unstr (punit)

pointer	punit		# i: units descriptor
#--
int	idx

begin
	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit,idx) == NULL)
		break

	    call mfree (TUN_UNPTR(punit,idx), TY_CHAR)
	}

	call mfree (punit, TY_INT)
end

# MUL_UNSTR -- Multiply two sets of units together

pointer procedure mul_unstr (punit1, punit2)

pointer	punit1		# i: descriptor for first set of units
pointer	punit2		# i: descriptor for second set of units
#--
int	idx, jdx, kdx, power
pointer	punit3

int	find_unstr()

begin
	# Allocate structure to hold units

	call calloc (punit3, LEN_TUNSTRUCT, TY_INT)

	# Compute the new factor

	TUN_FACTOR(punit3) = TUN_FACTOR(punit1) * TUN_FACTOR(punit2)

	# Find units in both descriptors and add their powers

	jdx = 1
	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit1,idx) == NULL)
		break

	    kdx = find_unstr (punit2, TUN_UNITS(punit1, idx))
	    if (kdx == 0)
		next

	    power = TUN_POWER(punit1,idx) + TUN_POWER(punit2,kdx)
	    if (power == 0)
		next

	    call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
	    call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit3,jdx), 
			 LEN_UNIT)

	    TUN_POWER(punit3,jdx) = power
	    jdx = jdx + 1
	    
	}

	# Find units only in a single descriptor and add them to the
	# new descriptor

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit1,idx) == NULL)
		break

	    if (find_unstr (punit2, TUN_UNITS(punit1, idx)) == 0) {
		call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
		call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit3,jdx), 
			     LEN_UNIT)

		TUN_POWER(punit3,jdx) = TUN_POWER(punit1,idx)
		jdx = jdx + 1
	    }
	}

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit2,idx) == NULL)
		break

	    if (find_unstr (punit1, TUN_UNITS(punit2, idx)) == 0) {
		call malloc (TUN_UNPTR(punit3,jdx), LEN_UNIT, TY_CHAR)
		call strcpy (TUN_UNITS(punit2,idx), TUN_UNITS(punit3,jdx), 
			     LEN_UNIT)

		TUN_POWER(punit3,jdx) = TUN_POWER(punit2,idx)
		jdx = jdx + 1
	    }
	}

	return (punit3)
end

# NUM_UNSTR -- Convert a token to an integer

int procedure num_unstr (value)

char	value[ARB]	# i: string containing token value
#--
int	ic, nc, num

int	ctoi()

begin
	ic = 1
	nc = ctoi (value, ic, num)
	return (num)
end

# POW_UNSTR -- Raise a set of units to an integer power

pointer procedure pow_unstr (punit1, power)

pointer	punit1		# i: units descriptor to be raised to power
int	power
#--
int	idx
pointer	punit2

begin
	# Allocate structure to hold units

	call calloc (punit2, LEN_TUNSTRUCT, TY_INT)

	# Compute the new factor

	TUN_FACTOR(punit2) = TUN_FACTOR(punit1) ** power

	# Find units in both descriptors and add their powers

	if (power != 0) {
	    for (idx = 1; idx <= MAXUNIT; idx = idx + 1) {
		if (TUN_UNPTR(punit1,idx) == NULL)
		    break

		call malloc (TUN_UNPTR(punit2,idx), LEN_UNIT, TY_CHAR)
		call strcpy (TUN_UNITS(punit1,idx), TUN_UNITS(punit2,idx), 
			     LEN_UNIT)

		TUN_POWER(punit2,idx) = TUN_POWER(punit1,idx) * power
	    }
	}

	return (punit2)
end

# SET_UNSTR -- Make a new units description from a units string and its power

pointer procedure set_unstr (ab, units, power)

pointer	ab		# i: hash of units abbreviations
char	units[ARB]	# i: units string
int	power		# i: power of the units 
#--
pointer	punit

begin
	# Allocate structure to hold units

	call calloc (punit, LEN_TUNSTRUCT, TY_INT)
	call malloc (TUN_UNPTR(punit,1), LEN_UNIT, TY_CHAR)	

	# Set the first slot in the structure  to hold the string
	# and power passed to this procedure

	TUN_FACTOR(punit) = 1.0
	TUN_POWER(punit,1) = power
	call abrev_unstr (ab, units, TUN_UNITS(punit,1), LEN_UNIT)

	return (punit)
end

# STR_UNSTR -- Convert units structure into a string

procedure str_unstr (punit, str, maxch)

pointer	punit		# i: units descriptor
char	str[ARB]	# o: string representation of units
int	maxch		# i: max length of string
#--
int	ic, idx

int	strlen(), gstrcpy(), itoc()

begin
	call sprintf (str, maxch, "%g")
	call pargd (TUN_FACTOR(punit))

	ic = strlen (str) + 1

	do idx = 1, MAXUNIT {
	    if (TUN_UNPTR(punit,idx) == NULL)
		break

	    ic = ic + gstrcpy ("*", str[ic], maxch-ic+1)
	    ic = ic + gstrcpy (TUN_UNITS(punit,idx), str[ic], maxch+ic-1)

	    if (TUN_POWER(punit,idx) != 1) {
		ic = ic + gstrcpy ("^", str[ic], maxch-ic+1)
		ic = ic + itoc (TUN_POWER(punit,idx), str[ic], maxch-ic+1)
	    }
	}
end