summaryrefslogtreecommitdiff
path: root/ipl/packs/skeem/skio.icn
blob: 068a4b66a36597e111fc129fc9d0dc36b0bcfdbc (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
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
############################################################################
#
#	Name:	skio.icn
#
#	Title:	Scheme in Icon
#
#	Author: Bob Alexander
#
#	Date:	March 23, 1995
#
#	Description: see skeem.icn
#
############################################################################

#
# skeem -- Scheme in Icon
#
# Output procedures
#

#
# Initialize
#
# List entries are described in skfun.icn.
#
procedure InitIO()
   DefFunction([
      CALL_WITH_INPUT_FILE,2,
      CALL_WITH_OUTPUT_FILE,2,
      CLOSE_INPUT_PORT,
      CLOSE_OUTPUT_PORT,
      CURRENT_INPUT_PORT,0,
      CURRENT_OUTPUT_PORT,0,
      DISPLAY,1,2,
      EOF_OBJECT_P,
      INPUT_PORT_P,
      NEWLINE,0,1,
      OPEN_INPUT_FILE,
      OPEN_OUTPUT_FILE,
      OUTPUT_PORT_P,
      PEEK_CHAR,0,1,
      READ,0,1,
      READ_CHAR,0,1,
      WITH_INPUT_FROM_FILE,2,
      WITH_OUTPUT_FROM_FILE,2,
      WRITE,1,2,
      WRITE_CHAR,1,2])
   return
end


#
# Input and Output
#
# Ports
#

procedure CALL_WITH_INPUT_FILE(file,func)
   return CallWithFile(file,func,"r",CALL_WITH_INPUT_FILE)
end

procedure CALL_WITH_OUTPUT_FILE(file,func)
   return CallWithFile(file,func,"w",CALL_WITH_OUTPUT_FILE)
end

procedure CallWithFile(file,func,option,funName)
   local f,result
   f := OpenFile(file,option,funName) | fail
   result := Apply(func,LLPair(Port(f,option))) | fail
   close(f)
   return result
end

procedure INPUT_PORT_P(x)
   return (type(x) == "Port",find("w",x.option),F) | T
end

procedure OUTPUT_PORT_P(x)
   return (type(x) == "Port",find("w",x.option),T) | F
end

procedure CURRENT_INPUT_PORT()
   return InputPortStack[1]
end

procedure CURRENT_OUTPUT_PORT()
   return OutputPortStack[1]
end

procedure WITH_INPUT_FROM_FILE(file,func)
   return WithFile(file,func,"r",WITH_INPUT_FROM_FILE,InputPortStack)
end

procedure WITH_OUTPUT_FROM_FILE(file,func)
   return WithFile(file,func,"w",WITH_OUTPUT_FROM_FILE,OutputPortStack)
end

procedure WithFile(file,func,option,funName,portStack)
   local f,result
   f := OpenFile(file,option,funName) | fail
   push(portStack,Port(f,option))
   result := Apply(func,LLNull) | fail
   close(f)
   pop(portStack)
   return result
end

procedure OpenFile(file,option,funName)
   local fn
   fn := file.value | fail
   return open(fn,option) |
      Error(funName,"Can't open file ",file)
end

procedure OPEN_INPUT_FILE(file)
   return Port(OpenFile(file,"r",OPEN_INPUT_FILE),"r")
end

procedure OPEN_OUTPUT_FILE(file)
   return Port(OpenFile(file,"w",OPEN_OUTPUT_FILE),"w")
end

procedure CLOSE_INPUT_PORT(port)
   return ClosePort(port)
end

procedure CLOSE_OUTPUT_PORT(port)
   return ClosePort(port)
end

procedure ClosePort(port)
   close(port.file)
   return port
end

#
# Input
#

procedure READ(port)
   local f
   f := (\port | InputPortStack[1]).file
   return ReadOneExpr(f) | EOFObject
end

procedure READ_CHAR(port)
   local f
   f := (\port | InputPortStack[1]).file
   return Char(reads(f)) | EOFObject
end

procedure PEEK_CHAR(port)
   local f
   f := (\port | InputPortStack[1]).file
   return Char(1(reads(f),seek(f,where(f) - 1))) | EOFObject
end

procedure EOF_OBJECT_P(x)
   return (x === EOFObject,T) | F
end

#
# Output.
#

procedure WRITE(value,port)
   /port := OutputPortStack[1]
   writes(port.file,Print(value))
   return port
end

procedure DISPLAY(value,port)
   /port := OutputPortStack[1]
   writes(port.file,Print(value,"display"))
   return port
end

procedure NEWLINE(port)
   /port := OutputPortStack[1]
   write(port.file)
   return port
end

procedure WRITE_CHAR(char,port)
   /port := OutputPortStack[1]
   writes(port.file,char.value)
   return port
end