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 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
|
(*
Title: Standard Basis Library: StreamIO functor
Copyright David C.J. Matthews 2000, 2005
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.1 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
functor BasicStreamIO(
structure PrimIO : PRIM_IO
structure Vector : MONO_VECTOR
structure Array : MONO_ARRAY
structure VectorSlice: MONO_VECTOR_SLICE
structure ArraySlice: MONO_ARRAY_SLICE
sharing type PrimIO.elem = Vector.elem = Array.elem = VectorSlice.elem = ArraySlice.elem
sharing type PrimIO.vector = Vector.vector = Array.vector = VectorSlice.vector = ArraySlice.vector
sharing type PrimIO.array = Array.array = ArraySlice.array
sharing type PrimIO.vector_slice = VectorSlice.slice = ArraySlice.vector_slice
sharing type PrimIO.array_slice = ArraySlice.slice
val someElem : PrimIO.elem
):
sig
include STREAM_IO
(* Note: This is non-standard but enables us to define
the derived BinIO and TextIO structures more efficiently. *)
val outputVec: outstream * PrimIO.vector_slice -> unit
end =
struct
open IO
type vector = Vector.vector
type elem = PrimIO.elem
datatype reader = datatype PrimIO.reader
datatype writer = datatype PrimIO.writer
type array = Array.array
type pos = PrimIO.pos
local
structure Interrupt =
RunCall.Run_exception0( val ex_iden = RuntimeCalls.EXC_interrupt )
in
exception Interrupt = Interrupt.ex
end
(* Called after any exception in the lower level reader or
writer to map any exception other than Io into Io. *)
fun mapToIo (io as Io _, _, _) = io
| mapToIo (Interrupt, _, _) = Interrupt
| mapToIo (nonIo, name, caller) =
Io { name = name, function = caller, cause = nonIo }
val emptyVec = Vector.fromList [] (* Represents end-of-stream. *)
datatype instream =
(* The usual state of a stream: We may have to read from the reader
before we have any real data or we may have already read. *)
Uncommitted of { state: streamState ref,
locker: Thread.Mutex.mutex }
(* If we know we have unread input we can return this as the
stream. That allows part of the stream to be read without
locking. This is an optimisation. *)
| Committed of
{ vec: vector, offset: int, rest: instream, startPos: pos option }
and streamState =
Truncated (* The stream has been closed or truncated. *)
| HaveRead of (* A vector has been read from the stream. If the
vector has size zero this is treated as EOF.
startPos is the position when the vector was
read. *)
{vec: vector, rest: streamState ref, startPos: pos option }
| ToRead of reader (* We have not yet closed or truncated the stream. *)
and outstream =
OutStream of {
wrtr: writer,
buffType : IO.buffer_mode ref,
buf: array,
bufp: int ref,
isTerm: bool ref,
locker: Thread.Mutex.mutex
}
datatype out_pos = OutPos of outstream * pos
(* Create a new stream from the vector and the reader. *)
fun mkInstream (r, v: vector): instream =
let
val readRest =
Uncommitted { state = ref (ToRead r), locker = Thread.Mutex.mutex() }
(* If the vector is non-empty the first entry is as though the
vector had been read otherwise it's just the reader. *)
in
if Vector.length v = 0
then readRest
else Committed { vec = v, offset = 0, rest = readRest, startPos = NONE }
end
local
fun input' (ref (HaveRead {vec, rest, ...}), locker) =
let
(* TODO: If we have already read further on we could convert
these entries to Committed. *)
in
(vec, Uncommitted{ state = rest, locker = locker })
end
| input' (s as ref Truncated, locker) = (* Truncated: return end-of-stream *)
(emptyVec, Uncommitted{ state = s, locker = locker })
| input' (state as
ref(readMore as ToRead (RD {chunkSize, readVec = SOME readVec, getPos, ...})),
locker) =
let
(* We've not yet read this. Try reading from the reader. *)
val startPos =
case getPos of SOME g => SOME(g()) | NONE => NONE
val data = readVec chunkSize
(* Create a reference to the reader which will be updated by
the next read. The ref is shared between the existing stream
and the new one so reading on either adds to the same chain. *)
val nextLink = ref readMore
val nextChunk =
HaveRead {vec = data, rest = nextLink, startPos = startPos}
in
(* Extend the stream by adding this vector to the list of chunks read so far. *)
state := nextChunk;
(* Return a new stream which continues reading. *)
(data, Uncommitted { state = nextLink, locker = locker })
end
| input' (ref(ToRead(RD{name, ...})), _) =
(* readVec missing in reader. *)
raise Io { name = name, function = "input", cause = BlockingNotSupported }
fun inputNList' (ref (HaveRead {vec, rest, startPos}), locker, n) =
let
val vecLength = Vector.length vec
in
if vecLength = 0 (* End-of-stream: Return next in list. *)
then ([vec], Uncommitted{ state = rest, locker = locker })
else if n < vecLength
then (* We can use what's already been read. The stream we return allows us
to read the rest without blocking. *)
([VectorSlice.vector(VectorSlice.slice(vec, 0, SOME n))],
Committed{ vec = vec, offset = n, startPos = startPos,
rest = Uncommitted{ state = rest, locker = locker} })
else if n = vecLength
then (* Exactly uses up the buffer. New stream state is the next entry. *)
([vec], Uncommitted{ state = rest, locker = locker})
else (* Have to get the next item *)
let
val (nextVecs, nextStream) = inputNList' (rest, locker, n - vecLength)
in
(vec :: nextVecs, nextStream)
end
end
| inputNList' (s as ref Truncated, locker, _) =
(* Truncated: return end-of-stream *)
([emptyVec], Uncommitted{ state = s, locker = locker })
| inputNList' (f, locker, n) = (* ToRead *)
let
val (vec, f') = input' (f, locker)
in
if Vector.length vec = 0
then ([vec], f') (* Truncated or end-of-file. *)
else inputNList' (f, locker, n) (* Reread *)
end
in
fun input (Uncommitted { state, locker }) =
LibraryIOSupport.protect locker input' (state, locker)
| input (Committed { vec, offset, rest, ... }) =
(* This stream was produced from re-reading a stream that already
had data. We can return the result without the overhead of locking. *)
(VectorSlice.vector(VectorSlice.slice(vec, offset, NONE)), rest)
fun inputNList (Uncommitted { state, locker }, n) =
LibraryIOSupport.protect locker inputNList' (state, locker, n)
| inputNList (Committed { vec, offset, rest, startPos }, n) =
let
val vecLength = Vector.length vec
in
if vecLength = 0 (* End-of-stream: Return next in list. *)
then ([vec], rest)
else if n < vecLength - offset
then (* We can use what's already been read. Next entry is a committed
stream that returns the part we haven't yet used. *)
([VectorSlice.vector(VectorSlice.slice(vec, offset, SOME n))],
Committed{ vec = vec, offset = offset+n, rest = rest, startPos = startPos })
else if n = vecLength - offset
then (* Exactly uses up the buffer. New stream state is the next entry. *)
([VectorSlice.vector(VectorSlice.slice(vec, offset, NONE))], rest)
else (* Have to get the next item *)
let
val (nextVecs, nextStream) = inputNList (rest, n - vecLength)
in
(VectorSlice.vector(VectorSlice.slice(vec, offset, NONE)) :: nextVecs,
nextStream)
end
end
fun inputN (f, n) =
let
val (vecs, f') = inputNList (f, n)
in
(Vector.concat vecs, f')
end
(* Read the whole of the remaining input until we get an EOF. *)
fun inputAll f =
let
(* Find out the size of the file. *)
fun getSize(n, f) =
let
val (v, f') = input f
val vSize = Vector.length v
in
if vSize = 0
then n (* Reached EOF. *)
else getSize (n + vSize, f')
end
in
(* Read the whole file. *)
inputN(f, getSize(0,f))
end
(* Note a crucial difference between inputN and input1. Because input1
does not return a stream if it detects EOF it cannot advance beyond
a temporary EOF in a stream. *)
fun input1 (Committed { vec, offset, rest, startPos }) =
let
val vecSize = Vector.length vec
in
if vecSize = 0
then NONE
else if vecSize = offset+1
then SOME(Vector.sub(vec, offset), rest)
else SOME(Vector.sub(vec, offset),
Committed{ vec = vec, offset = offset+1, rest = rest, startPos = startPos })
end
| input1 f =
let
val (s, f') = inputN (f, 1)
in
if Vector.length s = 0
then NONE
else SOME(Vector.sub(s, 0), f')
end
end
local
fun doClose (ref (HaveRead {rest, ...})) = doClose rest
| doClose (ref Truncated) = ()
| doClose (state as ref (ToRead (RD{close, ...}))) =
(state := Truncated; close())
in
fun closeIn (Uncommitted { state, locker }) = LibraryIOSupport.protect locker doClose state
| closeIn (Committed { rest, ...}) = closeIn rest
end
local
(* Return the reader. *)
fun getReader' (ref (HaveRead {vec, rest, ...})) = getReader' rest
| getReader' (ref Truncated) =
raise Io { name = "", function = "getReader", cause = ClosedStream }
| getReader' (state as ref (ToRead reader)) =
(state := Truncated; reader)
in
fun getReader'' (Uncommitted { state, locker }) =
LibraryIOSupport.protect locker getReader' state
| getReader'' (Committed { vec, offset, rest, ... }) = getReader'' rest
fun getReader f =
let
val reader = getReader'' f
val (allInput, _) = inputAll f
in
(* Return the reader along with buffered input. It's not clear
what to do if there are EOFs in the stream. The book says the
result is the result of inputAll which takes everything up to the
first EOF. *)
(reader, allInput)
end
end
local
(* Check that the stream is not terminated and then convert a file position
plus a vector offset into a file position. In particular, if the reader
has converted CRNL into NL we don't have a simple relationship between
elements and file offsets. *)
fun findPosition'(startPos, offset, HaveRead {rest=ref rest, ...}) =
findPosition'(startPos, offset, rest)
| findPosition'(_, _, Truncated) =
raise Io { name = "", function = "filePosIn", cause = ClosedStream }
| findPosition'(startPos, offset,
ToRead (RD { getPos = SOME getPos, setPos = SOME setPos,
readVec = SOME readVec, ...})) =
if offset = 0
then startPos (* Easy *)
else
(* When we read this vector we recorded the file position of
the beginning only. To find the file position of the
particular element we actually need to read the portion of
the input up to that element and find out the file position
at that point. *)
let
val savep = getPos() (* Save current position. *)
(* Move to the point where we read the vector. *)
val () = setPos startPos;
(* Call readVec until we have read the required number
of elements. N.B. Ganser & Reppy has a bug here.
There is no guarantee that readVec n will actually
return n elements so it's unsafe to assume that it
will move the file pointer by n elements. *)
fun doRead n =
let
val read = Vector.length(readVec n)
in
if read = n orelse read = 0 (* Error? *)
then ()
else doRead (n - read)
end
(* Read the offset number of elements. *)
val () = doRead offset;
(* Record the position after actually reading the elements. *)
val position = getPos();
in
setPos savep; (* Restore. *)
position
end
| findPosition'(_, _, ToRead _) =
raise Io { name = "", function = "filePosIn",
cause = RandomAccessNotSupported }
fun findPosition(startPos, offset, Committed { rest, ... }) =
findPosition(startPos, offset, rest)
| findPosition(startPos, offset, Uncommitted { state = ref state, locker }) =
LibraryIOSupport.protect locker findPosition' (startPos, offset, state)
fun filePosIn' (HaveRead {rest=ref rest, startPos = SOME startPos, ...}) =
findPosition'(startPos, 0, rest)
| filePosIn' (HaveRead {startPos = NONE, ...}) =
raise Io { name = "", function = "filePosIn",
cause = RandomAccessNotSupported }
| filePosIn' Truncated =
raise Io { name = "", function = "filePosIn", cause = ClosedStream }
| filePosIn' (ToRead(RD { getPos = SOME getPos, ...})) = getPos()
| filePosIn' (ToRead _) =
raise Io { name = "", function = "filePosIn",
cause = RandomAccessNotSupported }
in
(* Find the first entry to get the position. *)
fun filePosIn (Uncommitted { state = ref state, locker }) =
LibraryIOSupport.protect locker filePosIn' state
| filePosIn (Committed { vec, offset, rest, startPos = SOME startPos }) =
findPosition(startPos, offset, rest)
| filePosIn (Committed { startPos = NONE, ... }) =
(* This can occur either because the reader doesn't support getPos or
because the position is within the initial vector passed to
mkInstream. *)
raise Io { name = "", function = "filePosIn",
cause = RandomAccessNotSupported }
end
local
fun doCanInput' (ref (HaveRead {vec, rest, ...}), locker, n, k) =
let
val vecLength = Vector.length vec
in
if vecLength = 0
then SOME k
else if vecLength >= n
then SOME (k+n)
else doCanInput'(rest, locker, n-vecLength, k+vecLength)
end
| doCanInput' (ref Truncated, _, _, k) = SOME k
| doCanInput' (state as
ref(readMore as ToRead (RD {chunkSize, readVecNB = SOME readVecNB, getPos, ...})),
locker, n, k) =
let
val startPos =
case getPos of SOME g => SOME(g()) | NONE => NONE
in
(* Read a block full. This will avoid us creating lots of small items
in the list if there is actually plenty of input available. *)
case readVecNB chunkSize of
NONE => (* Reading these would block but we may already have some input. *)
if k = 0 then NONE else SOME k
| SOME data =>
let (* We have to record this in the stream. *)
val nextLink = ref readMore
val nextChunk =
HaveRead {vec = data, rest = nextLink, startPos = startPos}
in
state := nextChunk;
(* Check whether this has satisfied the request. *)
doCanInput'(state, locker, n, k)
end
end
| doCanInput' (ref(ToRead(RD {name, ...})), _, _, _) =
(* readVecNB missing in reader. *)
raise Io { name = name, function = "canInput", cause = NonblockingNotSupported }
fun doCanInput (Uncommitted { state, locker }, n, k) =
LibraryIOSupport.protect locker doCanInput' (state, locker, n, k)
| doCanInput (Committed { vec, rest, ... }, n, k) =
let
val vecLength = Vector.length vec
in
if vecLength = 0
then SOME k (* Reached EOF. *)
else if vecLength >= n
then SOME (k + n) (* Have already read enough. *)
else doCanInput(rest, n-vecLength, k+vecLength)
end
in
fun canInput(f, n) = doCanInput(f, n, 0)
end
(* Look for end-of-stream. Could be defined more directly
but it probably isn't worth it. *)
fun endOfStream f =
let
val (v, _) = input f
in
Vector.length v = 0
end
(* OUTPUT *)
(* In order to be able to flush and close the streams when we exit
we need to keep a list of the output streams.
One unfortunate side-effect of this is that the RTS can't
garbage-collect output streams since there will always be
a reference to a stream until it is explicitly closed.
It could be worth using a weak reference here but that
requires either a separate thread or some way of registering
a function to be called to check the list. *)
val ostreamLock = Thread.Mutex.mutex()
val outputStreamList: outstream list ref = ref nil;
fun protectOut f (outs as OutStream{locker, ...}) = LibraryIOSupport.protect locker f outs
fun mkOutstream'(wrtr as WR{chunkSize, ...}, buffMode) =
let
open Thread.Mutex
val strm =
OutStream{wrtr=wrtr,
buffType=ref buffMode,
buf=Array.array(chunkSize, someElem),
isTerm=ref false,
bufp=ref 0,
locker=Thread.Mutex.mutex()}
in
(* Add it to the list. *)
outputStreamList := strm :: ! outputStreamList;
strm
end
val mkOutstream = LibraryIOSupport.protect ostreamLock mkOutstream'
fun getBufferMode(OutStream{buffType=ref b, ...}) = b
local
(* Flush anything from the buffer. *)
fun flushOut'(OutStream{buf, bufp=bufp as ref endBuf,
wrtr=wrtr as WR{name, ...}, ...}) =
if endBuf = 0 then () (* Nothing buffered *)
else case wrtr of
WR{writeArr=SOME wa, ...} =>
let
fun flushBuff n =
let
val written =
wa(ArraySlice.slice(buf, n, SOME(endBuf-n)))
handle exn => raise mapToIo(exn, name, "flushOut")
in
if written+n = endBuf then ()
else flushBuff(written+n)
end
in
(* Set the buffer to empty BEFORE writing anything. If
we get an asynchronous interrupt (ctrl-C) we want to
lose data in preference to duplicating it. *)
bufp := 0;
flushBuff 0
end
| _ =>
raise Io { name = name, function = "flushOut",
cause = BlockingNotSupported }
(* Terminate a stream either because it has been closed or
because we have extracted the underlying writer. *)
fun terminateStream'(OutStream{isTerm=ref true, ...}) = () (* Nothing to do. *)
| terminateStream'(f as OutStream{isTerm, ...}) =
let
(* outstream is not an equality type but we can get the
desired effect by comparing the isTerm references for
equality (N.B. NOT their contents). *)
fun removeThis(OutStream{isTerm=isTerm', ...}) =
isTerm' <> isTerm
open Thread.Mutex
in
isTerm := true;
lock ostreamLock;
outputStreamList := List.filter removeThis (!outputStreamList);
unlock ostreamLock;
flushOut' f
end;
(* Close the stream. It is safe to repeat this and we may need to close
the writer even if the stream is terminated. *)
fun closeOut'(f as OutStream{wrtr=WR{close, ...}, ...}) =
(
terminateStream' f;
close() (* Close the underlying writer. *)
)
(* Flush the stream, terminate it and return the underlying writer. *)
fun getWriter'(OutStream{wrtr=WR{name, ...}, isTerm=ref true, ...}) =
(* Already terminated. *)
raise Io { name = name, function = "getWriter",
cause = ClosedStream }
| getWriter'(f as OutStream{buffType, buf, bufp, wrtr, isTerm, ...}) =
(
terminateStream' f;
(wrtr, !buffType)
)
(* Set the buffer mode, possibly flushing the buffer as it does. *)
fun setBufferMode' newBuff (f as OutStream{buffType, buf, bufp, wrtr, ...}) =
(* Question: What if the stream is terminated? *)
(
if newBuff = NO_BUF andalso !bufp <> 0
then (* Flush pending output. *)
(* Switching from block to line buffering does not flush. *)
flushOut' f
else ();
buffType := newBuff
)
(* Internal function: Write a vector directly to the writer. It only
returns when the vector has been completely written.
"output" should work if the writer only provides writeArr so we
may have to use that if writeVec isn't there. *)
(* FOR TESTING: Put writeArr first. *)
fun writeVec(OutStream{wrtr=WR{writeVec=SOME wv, name, ...}, ...}, v, i, len) =
let
fun forceOut p =
let
val written = wv(VectorSlice.slice(v, p+i, SOME(len-p)))
handle exn => raise mapToIo(exn, name, "output")
in
if written+p = len then ()
else forceOut(written+p)
end
in
forceOut 0
end
| writeVec(OutStream{wrtr=WR{writeArr=SOME wa, name, ...}, ...}, v, i, len) =
let
val buffSize = 10
val buff = Array.array(buffSize, someElem);
fun forceOut p =
let
val toCopy = Int.min(len-p, buffSize)
val () =
ArraySlice.copyVec{src=VectorSlice.slice(v, p+i, SOME toCopy), dst=buff, di=0}
val written = wa(ArraySlice.slice(buff, 0, SOME toCopy))
handle exn => raise mapToIo(exn, name, "output")
in
if written+p = len then ()
else forceOut(written+p)
end
in
forceOut 0
end
| writeVec(OutStream{wrtr=WR{name, ...}, ...}, _, _, _) =
raise Io { name = name, function = "output",
cause = BlockingNotSupported }
(* Internal function. Write a vector to the stream using the start and
length provided. *)
fun outputVector _ (OutStream{isTerm=ref true, wrtr=WR{name, ...}, ...}) =
raise Io { name = name, function = "output", cause = ClosedStream }
| outputVector (v, start, vecLen) (f as OutStream{buffType, buf, bufp, wrtr, ...}) =
let
val buffLen = Array.length buf
fun arrayCopyVec{src: Vector.vector, si: int, len: int, dst: Array.array, di: int} =
ArraySlice.copyVec{src=VectorSlice.slice(src, si, SOME len), dst=dst, di=di};
fun addVecToBuff () =
if vecLen < buffLen - !bufp
then (* Room in the buffer. *)
(
arrayCopyVec{src=v, si=start, len=vecLen, dst=buf, di= !bufp};
bufp := !bufp + vecLen
)
else
let
val buffSpace = buffLen - !bufp
in
(* Copy as much of the vector as will fit *)
arrayCopyVec{src=v, si=start, len=buffSpace, dst=buf, di= !bufp};
bufp := !bufp+buffSpace;
(* TODO: Flushing the buffer ensures that all the
buffer contents have been written. We don't
actually need that, what we need is for enough
to have been written that we have space in the
buffer for the rest of the vector. *)
flushOut' f; (* Write it out. *)
(* Copy the rest of the vector. *)
arrayCopyVec{src=v, si=start+buffSpace, len=vecLen-buffSpace, dst=buf, di=0};
bufp := vecLen-buffSpace
end (* addVecToBuff *)
in
if vecLen > buffLen
then (* If the vector is too large to put in the buffer we're
going to have to write something out. To reduce copying
we simply flush the buffer and write the vector directly. *)
(flushOut' f; writeVec(f, v, start, vecLen))
else (* Try copying to the buffer. *)
if !buffType = IO.NO_BUF
then (* Write it directly *) writeVec(f, v, start, vecLen)
else (* Block or line buffering - add it to the buffer.
We can't actually do line buffering at this level
since it doesn't make sense when we don't know
what constitutes a line separator. *)
addVecToBuff()
end (* outputVec *)
(* This could be defined in terms of outputVector but this is
likely to be much more efficient if we are buffering. *)
fun output1' _ (OutStream{isTerm=ref true, wrtr=WR{name, ...}, ...}) =
raise Io { name = name, function = "output1", cause = ClosedStream }
| output1' c (f as OutStream{buffType, buf, bufp, ...}) =
if !buffType = IO.NO_BUF
then writeVec(f, Vector.fromList[c], 0, 1)
else (* Line or block buffering. *)
(
Array.update(buf, !bufp, c);
bufp := !bufp + 1;
if !bufp = Array.length buf then flushOut' f else ()
)
fun getPosOut'(f as OutStream{wrtr=WR{name, getPos=SOME getPos, ...}, ...}) =
(
flushOut' f;
OutPos(f, getPos()) handle exn => raise mapToIo(exn, name, "getPosOut")
)
| getPosOut'(OutStream{wrtr=WR{name, ...}, ...}) =
raise Io { name = name, function = "getPosOut",
cause = RandomAccessNotSupported }
fun setPosOut' p (f as OutStream{wrtr=WR{name, setPos=SOME setPos, ...}, ...}) =
(
flushOut' f;
setPos p;
f
)
| setPosOut' p (OutStream{wrtr=WR{name, ...}, ...}) =
raise Io { name = name, function = "setPosOut",
cause = RandomAccessNotSupported }
in
fun output1(f, c) = protectOut (output1' c) f
fun output(f, v) = protectOut (outputVector(v, 0, Vector.length v)) f
val flushOut = protectOut flushOut'
val terminateStream = protectOut terminateStream'
val closeOut = protectOut closeOut'
val getWriter = protectOut getWriter'
fun setBufferMode(f, n) = protectOut (setBufferMode' n) f
(* Exported function to output part of a vector. Non-standard. *)
fun outputVec(f, slice) =
let
val (v, i, len) = VectorSlice.base slice
in
protectOut (outputVector(v, i, len)) f
end
val getPosOut = protectOut getPosOut'
fun setPosOut(OutPos(f, p)) = protectOut (setPosOut' p) f
end
fun filePosOut(OutPos(_, p)) = p
(* We need to set up a function to flush the streams when we
exit. This has to be set up for every session so we set up
an entry function, which is persistent, to do it. *)
local
fun closeAll () =
(* Close all the streams. closeOut removes the streams
from the list so we should end up with outputStreamList
being nil. *)
List.foldl (fn (s, ()) => closeOut s handle _ => ()) ()
(! outputStreamList)
(* In addition, discard any unwritten data in open streams.
If we have called PolyML.export with unwritten data that will still be
there whenever the exported function is run so we need to discard it.
This issue really applies only to stdOut since stdErr is normally
unbuffered and other streams will generate an exception if we try to
write. *)
fun discardAll () =
List.app (fn(OutStream{bufp, ...}) => bufp := 0) (! outputStreamList)
(* When we load a saved state global variables are overwritten. We need
to preserve the outputStreamList across the call. We also flush the
buffers before the call and discard any output that had been buffered
in the saved state.
This is a bit of a mess and probably needs to be changed. *)
fun doOnLoad doLoad =
let
val savedList = ! outputStreamList
in
List.app flushOut savedList;
doLoad();
outputStreamList := savedList;
discardAll()
end
fun doOnEntry () = (discardAll(); PolyML.onLoad doOnLoad; OS.Process.atExit closeAll)
in
val it = PolyML.onEntry doOnEntry;
val it = doOnEntry() (* Set it up for this session as well. *)
end
end;
(* Define the StreamIO functor in terms of BasicStreamIO to filter
out outputVec. *)
(* This is non-standard. According to G&R 2004 StreamIO does not take the slice structures as args. *)
functor StreamIO(
structure PrimIO : PRIM_IO
structure Vector : MONO_VECTOR
structure Array : MONO_ARRAY
structure VectorSlice: MONO_VECTOR_SLICE
structure ArraySlice: MONO_ARRAY_SLICE
sharing type PrimIO.elem = Vector.elem = Array.elem = VectorSlice.elem = ArraySlice.elem
sharing type PrimIO.vector = Vector.vector = Array.vector = VectorSlice.vector = ArraySlice.vector
sharing type PrimIO.array = Array.array = ArraySlice.array
sharing type PrimIO.vector_slice = VectorSlice.slice = ArraySlice.vector_slice
sharing type PrimIO.array_slice = ArraySlice.slice
val someElem : PrimIO.elem
): STREAM_IO =
struct
structure StreamIO =
BasicStreamIO(structure PrimIO = PrimIO
and Vector = Vector
and Array = Array
and VectorSlice = VectorSlice
and ArraySlice = ArraySlice
val someElem = someElem)
open StreamIO
end;
|