! Copyright (C) 2003, 2009 Slava Pestov, Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. USING: accessors io kernel math namespaces sequences sbufs strings generic splitting continuations destructors sequences.private io.streams.plain io.encodings math.order growable io.streams.sequence io.private ; IN: io.streams.string ! Readers TUPLE: string-reader { underlying string read-only } { i array-capacity } ; INSTANCE: string-reader input-stream M: string-reader stream-element-type drop +character+ ; M: string-reader stream-read-unsafe sequence-read-unsafe ; M: string-reader stream-read1 sequence-read1 ; M: string-reader stream-read-until sequence-read-until ; M: string-reader stream-tell i>> ; M: string-reader stream-seek (stream-seek) ; M: string-reader stream-seekable? drop t ; inline M: string-reader stream-length underlying>> length ; M: string-reader dispose drop ; : ( str -- stream ) 0 string-reader boa null-encoding ; : with-string-reader ( str quot -- ) [ ] dip with-input-stream ; inline ! Writers M: sbuf stream-element-type drop +character+ ; : ( -- stream ) 512 ; : with-string-writer ( quot -- str ) [ swap with-output-stream* ] keep >string ; inline