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
|
include <imhdr.h>
include <imset.h>
# CCDLOG -- Log information about the processing with the image name.
#
# 1. If the package "verbose" parameter is set print the string preceded
# by the image name.
# 2. If the package "logfile" parameter is not null append the string,
# preceded by the image name, to the file.
procedure ccdlog (im, str)
pointer im # IMIO pointer
char str[ARB] # Log string
int fd, open()
bool clgetb()
pointer sp, fname
errchk open
begin
call smark (sp)
call salloc (fname, SZ_FNAME, TY_CHAR)
# Write to the standard error output if "verbose".
if (clgetb ("verbose")) {
call imstats (im, IM_IMAGENAME, Memc[fname], SZ_FNAME)
call eprintf ("%s: %s\n")
call pargstr (Memc[fname])
call pargstr (str)
}
# Append to the "logfile" if not null.
call clgstr ("logfile", Memc[fname], SZ_FNAME)
call xt_stripwhite (Memc[fname])
if (Memc[fname] != EOS) {
fd = open (Memc[fname], APPEND, TEXT_FILE)
call imstats (im, IM_IMAGENAME, Memc[fname], SZ_FNAME)
call fprintf (fd, "%s: %s\n")
call pargstr (Memc[fname])
call pargstr (str)
call close (fd)
}
call sfree (sp)
end
|