summaryrefslogtreecommitdiff
path: root/ipl/progs/ddfdump.icn
blob: 38989c8a04404fa793638a2d3d0d4873d57bd580 (plain)
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
############################################################################
#
#	File:     ddfdump.icn
#
#	Subject:  Program to print the contents of an ISO 8211 DDF file
#
#	Author:   Gregg M. Townsend
#
#	Date:     August 2, 2001
#
############################################################################
#
#	This file is in the public domain.
#
############################################################################
#
#	Usage:  ddfdump [file...]
#
#	Ddfdump prints the contents of Data Descriptive Files (DDF).
#	DDF is an incredibly complex file format enshrined by the
#	ISO 8211 standard and used by the United States Geological
#	Survey (USGS) for digital data.
#
############################################################################
#
#  Links:  ddfread
#
############################################################################

link ddfread


$define RecSep "\x1E"		# ASCII Record Separator
$define UnitSep "\x1F"		# ASCII Unit Separator
$define ShowRecSep "\xB6"	# show record separator as paragraph mark
$define ShowUnitSep "\xA7"	# show unit separator as section mark



procedure main(args)
   local f, nbytes

   if *args > 0 then
      every dofile(!args)
   else
      dofile()

end

procedure dofile(fname)
   local f, dda, d, e, s

   write("\n", \fname, ":")
   if /fname then
      f := ddfopen(&input) | stop("standard input is not a DDF file")
   else
      f := ddfopen(fname) | stop("can't open ", fname, " as DDF file")
   write()

   dda := ddfdda(f)
   every e := !dda do {
      write(e.tag, ": ", img(e.control), " ", img(e.name), " ", img(e.format))
      every write("   ", img(!e.labels))
      }

   while d := ddfread(f) do {
      write()
      every e := !d do {
         writes(get(e), ":")
         while s := get(e) do
            if type(s) == "string" then
               writes(" ", img(s))
            else
               writes(" ", image(s))
         write()
         }
      }

   ddfclose(f)
end

procedure img(s, n)
   static s1, s2
   initial {
      s1 := s2 := string(&cset)
      every !s2[1+:32] := "."		# show unprintables as "."
      every !s2[128+:33] := "."
      s2[1+ord(RecSep)] := ShowRecSep	# show record sep (1E) as section mark
      s2[1+ord(UnitSep)] := ShowUnitSep	# show unit sep (1F) as paragraph mark
   }
   if *s > \n then
      s := s[1+:n]
   return "<" || map(s, s1, s2) || ">"
end