/usr/share/gnu-smalltalk/examples/Gen3.st is in gnu-smalltalk-common 3.2.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | "======================================================================
|
| Python-like Generators
|
|
======================================================================"
"======================================================================
|
| Copyright 2003 Free Software Foundation, Inc.
| Written by Paolo Bonzini.
|
| This file is part of GNU Smalltalk.
|
| GNU Smalltalk is free software; you can redistribute it and/or modify it
| under the terms of the GNU General Public License as published by the Free
| Software Foundation; either version 2, or (at your option) any later version.
|
| GNU Smalltalk 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 General Public License for more
| details.
|
| You should have received a copy of the GNU General Public License along with
| GNU Smalltalk; see the file COPYING. If not, write to the Free Software
| Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
======================================================================"
Stream subclass: #Generator
instanceVariableNames: 'next producer consumer process atEnd'
classVariableNames: ''
poolDictionaries: ''
category: 'Streams-Generators'
!
Generator comment:
'A Generator object provides a way to use blocks to define a Stream
of many return values. The return values are computed one at a time,
as needed, and hence need not even be finite.
A generator block is converted to a Generator with "Generator
on: [...]". The Generator itself is passed to the block,
and as soon as a message like #next, #peek, #atEnd or #peekFor: is
sent to the generator, execution of the block starts/resumes and
goes on until the generator''s #yield: method is called: then the
argument of #yield: will be the Generator''s next element. If the
block goes on to the end without calling #yield:, the Generator
will produce no more elements and #atEnd will return true.
You could achieve the effect of generators manually by writing your
own class and storing all the local variables of the generator as
instance variables. For example, returning a list of integers could
be done by setting a variable to 0, and having the #next method
increment it and return it. However, for a moderately complicated
generator, writing a corresponding class would be much messier (and
might lead to code duplication or inefficiency if you want to support
#peek, #peekFor: and/or #atEnd): in general, providing a #do:-like
interface is easy, but not providing a Stream-like one (think binary
trees).
The idea of generators comes from other programming languages, in
particular this interface looks much like Scheme streams and Python
generators. But Python in turn mutuated the idea for example from
Icon, where the idea of generators is central. In Icon, every
expression and function call behaves like a generator, and if a
statement manages scalars, it automatically uses up all the results
that the corresponding generator provides; on the other hand, Icon
does not represent generators as first-class objects like Python and
Smalltalk do.'!
!Generator class methodsFor: 'instance creation'!
on: aBlock
"Return a generator, and also suspend the execution of the
sender by returning the new generator to the method that
invoked the sender. More easily seen by looking at an
example:
Integer>>evenNumbersUpTo: n
^Generator on: [ :gen |
self to: n do: [ :each |
each even ifTrue: [ gen yield: each ]
]
]
Although there is no return statement in the method, evaluating
it returns a Generator for the even numbers between the receiver
and the argument."
^self new
forkOn: aBlock;
yourself
! !
!Generator methodsFor: 'stream protocol'!
atEnd
"Answer whether more data can be generated."
atEnd isNil ifTrue: [ self generateNext ].
^atEnd
!
next
"Evaluate the generator until it generates the next value or
decides that nothing else can be generated."
| result |
self atEnd ifTrue: [ ^self pastEnd ].
atEnd := nil.
result := next.
next := nil.
^result
!
peek
"Evaluate the generator until it generates the next value or
decides that nothing else can be generated, and save the value
so that #peek or #next will return it again."
self atEnd ifTrue: [ ^nil ].
^next
!
peekFor: anObject
"Evaluate the generator until it generates the next value or
decides that nothing else can be generated, and if it is not equal
to anObject, save the value so that #peek or #next will return it
again."
self atEnd ifTrue: [ self pastEnd. ^false ].
^next = anObject
ifTrue: [ next := nil. atEnd := nil. true ]
ifFalse: [ false ]
! !
!Generator methodsFor: 'private - continuations'!
forkOn: aBlock
producer := Semaphore new.
consumer := Semaphore new.
process := [
producer wait.
aBlock value: self.
consumer signal
] fork!
yield: anObject
"Save the object returned by the block in the next
instance variable, then restart the consumer thread
and put our own to wait."
next := anObject.
atEnd := false.
consumer signal.
producer wait!
generateNext
"Restart the producer thread and put our own to wait."
atEnd := true.
process priority = Processor activePriority
ifFalse: [ process priority: Processor activePriority ].
producer signal.
consumer wait! !
!Integer methodsFor: 'examples of generators'!
generatorForGeneratorExample
^Generator on: [ :gen |
'Entering gen' displayNl.
1 to: self do: [ :each |
('Yielding ', each printString, '... ') display.
gen yield: each.
'Resuming gen' displayNl
] ]!
generatorExample: gen
| n |
('Running on ', gen printString) displayNl.
[
'Calling next... ' display.
n := gen next.
n notNil
] whileTrue: [
('Got ', n printString) displayNl
]! !
Eval [
Smalltalk byteCodeCounter printNl.
10 generatorExample: 10 generatorForGeneratorExample.
Smalltalk byteCodeCounter printNl
]
|