/usr/share/gnu-smalltalk/kernel/StreamOps.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 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 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 | "======================================================================
|
| Adds collection-like operations to GNU Smalltalk streams
|
|
======================================================================"
"======================================================================
|
| Copyright 2001, 2002, 2007, 2008, 2009 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.
|
======================================================================"
Namespace current: Kernel [
Stream subclass: ConcatenatedStream [
| streams startPos curPos last lastStart |
<category: 'Examples-Useful tools'>
<comment: nil>
ConcatenatedStream class >> new [
<category: 'all'>
^#() readStream
]
ConcatenatedStream class >> with: stream1 [
<category: 'all'>
^(self basicNew)
streams: {stream1};
yourself
]
ConcatenatedStream class >> with: stream1 with: stream2 [
<category: 'all'>
^(self basicNew)
streams: {stream1. stream2};
yourself
]
ConcatenatedStream class >> withAll: array [
<category: 'all'>
^(self basicNew)
streams: array;
yourself
]
, aStream [
<category: 'all'>
^(self copy)
addStream: aStream;
yourself
]
postCopy [
<category: 'all'>
streams := streams copy
]
stream [
<category: 'all'>
| s |
[(s := streams first) atEnd] whileTrue:
[streams size = 1 ifTrue: [^nil].
lastStart := startPos.
startPos := startPos + curPos.
curPos := 0.
last := streams removeFirst].
^s
]
atEnd [
<category: 'all'>
^self stream isNil
]
file [
<category: 'all'>
self atEnd ifTrue: [^nil].
^streams first file
]
name [
<category: 'all'>
self atEnd ifTrue: [^nil].
^streams first name
]
next [
<category: 'all'>
| s |
^(s := self stream) isNil
ifTrue: [self pastEnd]
ifFalse: [curPos := curPos + 1. s next]
]
pastEnd [
<category: 'all'>
^streams last pastEnd
]
peekFor: aCharacter [
<category: 'all'>
| s result |
(s := self stream) isNil
ifTrue:
[self pastEnd.
^false].
result := s peekFor: aCharacter.
result ifTrue: [curPos := curPos + 1].
^result
]
peek [
<category: 'all'>
| s |
(s := self stream) isNil ifTrue: [^self pastEnd].
^s peek
]
position [
<category: 'all'>
self stream.
^startPos + curPos
]
position: anInteger [
<category: 'all'>
| s |
(s := self stream) isNil
ifTrue:
[self pastEnd.
^self].
s position: anInteger - startPos.
curPos := anInteger - startPos
]
copyFrom: start to: end [
"needed to do the documentation"
<category: 'all'>
| adjust stream |
stream := self stream.
end + 1 = start ifTrue: [^''].
adjust := end <= startPos
ifTrue: [stream := last. lastStart]
ifFalse: [startPos].
^stream copyFrom: (start - adjust max: 0) to: end - adjust
]
addStream: stream [
<category: 'initializing'>
streams addLast: stream
]
streams: arrayOfStreams [
<category: 'initializing'>
streams := arrayOfStreams asOrderedCollection.
startPos := curPos := 0
]
]
]
Namespace current: Kernel [
Stream subclass: FilteringStream [
| stream block result next atEnd |
<category: 'Examples-Useful tools'>
<comment: nil>
FilteringStream class >> on: aStream select: selectBlock [
<category: 'all'>
^self new
initStream: aStream
block: selectBlock
result: true
]
FilteringStream class >> on: aStream reject: selectBlock [
<category: 'all'>
^self new
initStream: aStream
block: selectBlock
result: false
]
initStream: aStream block: selectBlock result: aBoolean [
<category: 'initializing'>
stream := aStream.
block := selectBlock.
result := aBoolean.
atEnd := false.
self lookahead
]
atEnd [
<category: 'streaming'>
^atEnd
]
next [
<category: 'streaming'>
| result |
atEnd
ifTrue:
[self pastEnd.
^nil].
result := next.
self lookahead.
^result
]
pastEnd [
<category: 'streaming'>
^stream pastEnd
]
peek [
<category: 'streaming'>
atEnd ifTrue: [^nil].
^next
]
peekFor: aCharacter [
<category: 'streaming'>
atEnd
ifTrue:
[self pastEnd.
^false].
next == aCharacter
ifTrue:
[self lookahead.
^true].
^false
]
species [
<category: 'basic'>
^stream species
]
lookahead [
<category: 'private'>
[stream atEnd
ifTrue:
[atEnd := true.
^self].
next := stream next.
(block value: next) == result]
whileFalse
]
]
]
Namespace current: Kernel [
Stream subclass: CollectingStream [
| stream block |
<category: 'Examples-Useful tools'>
<comment: nil>
CollectingStream class >> on: aStream collect: collectBlock [
<category: 'instance creation'>
^self new initStream: aStream block: collectBlock
]
initStream: aStream block: collectBlock [
<category: 'initializing'>
stream := aStream.
block := collectBlock
]
atEnd [
<category: 'positioning'>
^stream atEnd
]
next [
<category: 'positioning'>
stream atEnd ifTrue: [^stream pastEnd].
^block value: stream next
]
pastEnd [
<category: 'positioning'>
^stream pastEnd
]
peek [
<category: 'positioning'>
stream atEnd ifTrue: [^nil].
^block value: stream peek
]
peekFor: anObject [
<category: 'positioning'>
| result |
stream atEnd
ifTrue:
[stream pastEnd.
^false].
result := (block value: stream peek) = anObject result
ifTrue: [stream next].
^result
]
position [
<category: 'positioning'>
^stream position
]
position: anInteger [
<category: 'positioning'>
stream position: anInteger
]
species [
<category: 'basic'>
^stream species
]
]
]
Namespace current: Kernel [
Stream subclass: PeekableStream [
| stream haveLookahead lookahead |
<category: 'Examples-Useful tools'>
<comment: nil>
PeekableStream class >> on: aStream [
<category: 'instance creation'>
^self new initStream: aStream
]
species [
<category: 'basic'>
^stream species
]
file [
<category: 'basic'>
^stream file
]
name [
<category: 'basic'>
^stream name
]
next [
<category: 'basic'>
| char |
^haveLookahead
ifTrue:
[haveLookahead := false.
char := lookahead.
lookahead := nil.
char]
ifFalse: [stream next]
]
atEnd [
"Answer whether the input stream has no more tokens."
<category: 'basic'>
^haveLookahead not and: [stream atEnd]
]
pastEnd [
<category: 'basic'>
^stream pastEnd
]
peek [
"Returns the next element of the stream without moving the pointer.
Returns nil when at end of stream."
<category: 'basic'>
haveLookahead
ifFalse:
[stream atEnd ifTrue: [^nil].
haveLookahead := true.
lookahead := stream next].
^lookahead
]
peekFor: anObject [
"Answer a new whitespace-separated token from the input stream"
<category: 'basic'>
| result |
haveLookahead
ifFalse:
[stream atEnd
ifTrue:
[self pastEnd.
^false].
lookahead := stream next].
result := lookahead = anObject.
result ifTrue: [lookahead := nil].
haveLookahead := result not.
^result
]
initStream: aStream [
<category: 'private'>
stream := aStream.
haveLookahead := false
]
]
]
Namespace current: Kernel [
Stream subclass: LineStream [
| charStream |
<category: 'Examples-Useful tools'>
<comment: nil>
LineStream class >> on: aStream [
"Answer a LineStream working on aStream"
<category: 'instance creation'>
^self new initStream: aStream
]
file [
<category: 'basic'>
^charStream file
]
name [
<category: 'basic'>
^charStream name
]
next [
<category: 'basic'>
^charStream nextLine
]
atEnd [
<category: 'basic'>
^charStream atEnd
]
pastEnd [
<category: 'basic'>
^charStream pastEnd
]
initStream: aStream [
<category: 'private'>
charStream := aStream
]
]
]
Namespace current: Kernel [
Stream subclass: OneOfEachStream [
| streams delta |
<category: 'Examples-Useful tools'>
<comment: nil>
OneOfEachStream class >> new [
<category: 'all'>
^#() readStream
]
OneOfEachStream class >> with: stream1 [
<category: 'all'>
^(self basicNew)
streams: {stream1}
]
OneOfEachStream class >> with: stream1 with: stream2 [
<category: 'all'>
^(self basicNew)
streams:
{stream1.
stream2}
]
OneOfEachStream class >> with: stream1 with: stream2 with: stream3 [
<category: 'all'>
^(self basicNew)
streams:
{stream1.
stream2.
stream3}
]
OneOfEachStream class >> with: stream1 with: stream2 with: stream3 with: stream4 [
<category: 'all'>
^(self basicNew)
streams:
{stream1.
stream2.
stream3.
stream4}
]
OneOfEachStream class >> withAll: array [
<category: 'all'>
^(self basicNew)
streams: array
]
atEnd [
<category: 'all'>
^streams anySatisfy: [ :each | each atEnd]
]
do: aBlock [
<category: 'all'>
[
aBlock value:
(streams collect: [:each |
each atEnd ifTrue: [ ^self ].
each next ])
] repeat
]
next [
<category: 'all'>
^streams collect: [:each |
each atEnd ifTrue: [ ^self pastEnd ] ifFalse: [ each next ]]
]
pastEnd [
<category: 'all'>
^streams first pastEnd
]
peekFor: anObject [
<category: 'all'>
^self peek = anObject
ifTrue: [ streams do: [ :each | streams next ] ];
yourself
]
peek [
<category: 'all'>
^streams collect: [:each |
each atEnd ifTrue: [ ^self pastEnd ] ifFalse: [ each peek ]]
]
position [
<category: 'all'>
^streams first position - delta
]
position: anInteger [
<category: 'all'>
^self skip: anInteger - self position
]
reset [
<category: 'all'>
self position: 0
]
skip: anInteger [
<category: 'all'>
streams do: [ :each | each skip: anInteger ]
]
streams: arrayOfStreams [
<category: 'initializing'>
streams := arrayOfStreams.
delta := arrayOfStreams first position.
]
]
]
Stream extend [
, anIterable [
"Answer a new stream that concatenates the data in the receiver with the
data in aStream. Both the receiver and aStream should be readable."
<category: 'filtering'>
^Kernel.ConcatenatedStream with: self with: anIterable readStream
]
lines [
"Answer a new stream that answers lines from the receiver."
<category: 'filtering'>
^Kernel.LineStream on: self
]
peek [
"Returns the next element of the stream without moving the pointer.
Returns nil when at end of stream. Lookahead is implemented automatically
for streams that are not positionable but can be copied."
<category: 'filtering'>
| copy |
copy := self copy.
copy == self ifTrue: [^self shouldNotImplement].
self become: (Kernel.PeekableStream on: copy).
^self peek
]
skipSeparators [
"Advance the receiver until we find a character that is not a
separator. Answer false if we reach the end of the stream,
else answer true; in this case, sending #next will return the
first non-separator character (possibly the same to which the
stream pointed before #skipSeparators was sent)."
<category: 'positioning'>
| ch |
[(ch := self peek) isNil ifTrue: [^false].
ch isSeparator]
whileTrue: [self next].
^true
]
peekFor: aCharacter [
"Returns true and gobbles the next element from the stream of it is
equal to anObject, returns false and doesn't gobble the next element
if the next element is not equal to anObject. Lookahead is implemented
automatically for streams that are not positionable but can be copied."
<category: 'filtering'>
| copy |
copy := self copy.
copy == self ifTrue: [^self shouldNotImplement].
self become: (Kernel.PeekableStream on: copy).
^self peekFor: aCharacter
]
select: aBlock [
"Answer a new stream that only returns those objects for which aBlock
returns true. Note that the returned stream will not be positionable."
"Example: Sieve of Erathostenes.
GNU Smalltalk does not detect that i escapes, so we need to avoid
optimizations of #to:do:.
s := (2 to: 100) readStream.
(2 to: 10) do: [ :i |
s := s reject: [ :n | n > i and: [ n \\ i = 0 ] ] ].
s contents printNl"
<category: 'filtering'>
^Kernel.FilteringStream on: self select: aBlock
]
reject: aBlock [
"Answer a new stream that only returns those objects for which aBlock
returns false. Note that the returned stream will not be positionable."
<category: 'filtering'>
^Kernel.FilteringStream on: self reject: aBlock
]
collect: aBlock [
"Answer a new stream that will pass the returned objects through aBlock,
and return whatever object is returned by aBlock instead. Note that when
peeking in the returned stream, the block will be invoked multiple times,
with possibly surprising results."
<category: 'filtering'>
^Kernel.CollectingStream on: self collect: aBlock
]
with: aStream [
"Return a new Stream whose elements are 2-element
Arrays, including one element from the receiver and one from
aStream."
<category: 'concatenating'>
^Kernel.OneOfEachStream with: self with: aStream
]
with: stream1 with: stream2 [
"Return a new Stream whose elements are 3-element
Arrays, including one element from the receiver and one from
each argument."
<category: 'concatenating'>
^Kernel.OneOfEachStream with: self with: stream1 with: stream2
]
with: stream1 with: stream2 with: stream3 [
"Return a new Stream whose elements are 3-element
Arrays, including one element from the receiver and one from
each argument."
<category: 'concatenating'>
^Kernel.OneOfEachStream
with: self with: stream1 with: stream2 with: stream3
]
]
|