-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstreams.erl
337 lines (260 loc) · 7.47 KB
/
streams.erl
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
%% ===============================================================
%% Lazy streams
%%
%% Copyright (C) 2000 Richard Carlsson
%%
%% This library is free software; you can redistribute it and/or
%% modify it under the terms of the GNU Lesser General Public
%% License as published by the Free Software Foundation; either
%% version 2 of the License, or (at your option) any later
%% version.
%%
%% This library is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%% GNU Lesser General Public License for more details.
%%
%% You should have received a copy of the GNU Lesser General
%% Public License along with this library; if not, write to the
%% Free Software Foundation, Inc., 59 Temple Place, Suite 330,
%% Boston, MA 02111-1307 USA
%%
%% wget http://erlang.mirror.su.se/ml-archive/erlang-questions/200010/msg00165.html
%%
%% Author contact: [email protected]
%% ===============================================================
-module(streams).
-vsn('$Id: streams.erl,v 1.2 2000/10/18 13:58:07 richardc Exp $').
-author('[email protected]').
-copyright('Copyright (C) 2000 Richard Carlsson').
-export([append/2, constant/1, drop/2, duplicate/2, empty/0,
filter/2, first/2, foldl/3, foldr/3, foreach/2,
integers/1, map/2, member/2, merge/3, nth/2, nthtail/2,
push/2, random/0, random_integers/1, seq/2, seq/3,
stream/1, subsequence/3, to_list/1]).
%% The type of the streams defined below is:
%%
%% Stream :: () -> {} | {term(), Stream}
%%
%% A stream is thus always a fun. One advantage is that if a
%% producer has side effects (e.g., if it reads elements from a
%% file), we need never trigger the next effect unless we really
%% want to see the next element. Also, programming becomes very
%% straightforward. Let's hope for better compilers to make this
%% sort of programming more efficient.
%% ===============================================================
%% The following functions compute new streams without forcing
%% evaluation of their input.
%% The empty stream
empty() -> fun () -> {} end.
%% The stream consisting of H followed by all elements of T.
push(H, T) -> fun () -> {H, T} end.
%% Converts a stream into a list. Make sure never to pass an
%% infinite stream to this function!
to_list(S) ->
case S() of
{H, T} ->
[H | to_list(T)];
{} ->
[]
end.
%% Turns a proper normal list into a stream.
stream(L) ->
fun () ->
case L of
[H | T] ->
{H, stream(T)};
[] ->
{}
end
end.
%% The stream of all elements of S1 followed by all elements of
%% S2.
append(S1, S2) ->
fun () ->
case S1() of
{} ->
S2();
{H, T} ->
{H, append(T, S2)}
end
end.
%% The stream of integers in the interval [From, To], in ascending
%% order.
seq(From, To) ->
seq(From, To, 1).
%% The stream of integers [From, From + D, From + 2*D, ..., From +
%% D*((To - From) mod D)]. The interval is empty if D does not
%% have the same sign as the difference To - From.
seq(From, To, D) when is_integer(From), is_integer(To),
From < To, D > 0 ->
fun () -> {From, seq(From + D, To, D)} end;
seq(From, To, D) when is_integer(From), is_integer(To),
To < From, D < 0 ->
fun () -> {From, seq(From + D, To, D)} end;
seq(From, To, _D) when is_integer(From), is_integer(To), To == From ->
fun () -> {From, empty()} end;
seq(_From, _To, _D) ->
empty().
%% The stream of integers starting at N.
integers(N) ->
fun () -> {N, integers(N + 1)} end.
%% The infinite stream of elements X.
constant(X) ->
fun () -> {X, constant(X)} end.
%% The stream of length N, where each element is X.
duplicate(N, X) when is_integer(N) ->
fun () ->
if N > 0 ->
{X, duplicate(N - 1, X)};
N == 0 ->
{}
end
end.
%% An infinite stream of random floating-point numbers in the
%% interval [0.0, 1.0]. `random:seed' must be used (by the same
%% process) to set the seed for the random number generator before
%% this function is called.
random() ->
fun () -> {random:uniform(), random()} end.
%% An infinite stream of random integers in the interval [0, Max].
%% See `random' above for details.
random_integers(Max) when Max >= 1 ->
fun () -> {random:uniform(Max), random_integers(Max)} end.
%% The stream consisting of the first N elements of S, or the
%% stream S if the length of S is not greater than N.
first(0, _S) -> empty();
first(N, S) when is_integer(N), N > 0 ->
fun () ->
case S() of
{H, T} ->
{H, first(N - 1, T)};
{} ->
{}
end
end.
%% The stream [EN+1, EN+2, ...], if S is [E1, ..., EN, EN+1, ...].
drop(0, S) -> S;
drop(N, S) when is_integer(N), N > 0 ->
fun () ->
case S() of
{_H, T} ->
(drop(N - 1, T))();
{} ->
{}
end
end.
%% The stream [EN, EN+1, ..., EN+D], if S is [E1, E2, ...].
subsequence(N, D, S) when N > 0, D >= 0 ->
first(D, drop(N, S)).
%% The stream [F(E1), F(E2), F(E3), ...] if S is [E1, E2, E3,
%% ...].
map(F, S) ->
fun () ->
case S() of
{H, T} ->
{F(H), map(F, T)};
{} ->
{}
end
end.
%% The stream of all elements E in S (in the same order) for which
%% P(E) returns `true'. P must return either `true' or `false' for
%% all elements in S.
filter(P, S) ->
fun () ->
case S() of
{H, T} ->
case P(H) of
true ->
{H, filter(P, T)};
false ->
(filter(P, T))()
end;
{} ->
{}
end
end.
%% Returns the stream of elements in S1 and S2 where the
%% respective relative order of elements is preserved, and each
%% element Y of S2 is ordered before the first possible X of S1
%% such that P(X, Y) yields `false'. P(X, Y) must yield either
%% `true' or `false' for all X in S1 and Y in S2. (P can be read
%% as "less than".)
merge(P, S1, S2) ->
fun () ->
case S1() of
{H1, T1} ->
case S2() of
{H2, T2} ->
case P(H1, H2) of
true ->
{H1, merge(P, T1,
push(H2, T2))};
false ->
{H2, merge(P, push(H1, T1),
T2)}
end;
{} ->
{H1, T1}
end;
{} ->
S2()
end
end.
%% ===============================================================
%% All functions below may evaluate all or part of their input.
%% Returns `true' if X is in the stream S, and `false' otherwise.
member(X, S) ->
case S() of
{H, T} ->
if H == X -> true;
true -> member(X, T)
end;
{} -> false
end.
%% Returns the Nth element of stream S.
nth(N, S) ->
S1 = S(),
if N > 1 ->
nth(N - 1, tl(S1));
true ->
hd(S1)
end.
%% Returns the stream [AN+1, AN+2, ...] if S is [A1, A2, ..., AN,
%% AN+1, AN+2, ...].
nthtail(N, S) when N > 1 ->
nthtail(N - 1, tl(S()));
nthtail(0, S) ->
S.
%% Computes (...((A F E1) F E2)... F EN), if S is [E1, E2, ...,
%% EN] and F is a binary function (here written as an infix
%% operator).
foldl(A, F, S) ->
case S() of
{H, T} ->
foldl(F(A, H), F, T);
{} ->
A
end.
%% Computes (E1 F ...(EN-1 F (EN F A))...), if S is [E1, E2, ...,
%% EN] and F is a binary function (here written as an infix
%% operator).
foldr(S, F, A) ->
case S() of
{H, T} ->
F(H, foldr(T, F, A));
{} ->
A
end.
%% Evaluates F(E1), F(E2), ..., if S is [E1, E2, ...]. Always
%% returns `ok'.
foreach(F, S) ->
case S() of
{H, T} ->
F(H),
foreach(F, T);
{} ->
ok
end.
%% ===============================================================