]> gitweb.factorcode.org Git - factor.git/commitdiff
io.streams.sequence: make some errors into ERROR:. rename double paren word.
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 25 Mar 2016 10:00:07 +0000 (03:00 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 25 Mar 2016 10:13:27 +0000 (03:13 -0700)
core/io/streams/sequence/sequence.factor

index c5b28d6668f12d9e32cc3cbfd52a424ab6e05fa0..8760299b331d4e861223df20b91c2f49775adfd9 100644 (file)
@@ -23,25 +23,27 @@ SLOT: i
 : <sequence-copy> ( dst n src-i src dst-i -- n copy )
     [ ] curry 3curry dip <copy> ; inline
 
-: ((sequence-read-unsafe)) ( n buf stream offset -- count )
+: sequence-copy-unsafe ( n buf stream offset -- count )
     [
         [ (sequence-read-length) ]
         [ [ dup pick + ] change-i underlying>> ] bi
     ] dip [ <sequence-copy> (copy) drop ] 3curry keep ; inline
 
+ERROR: not-a-byte-array obj ;
 : check-byte-array ( buf stream offset -- buf stream offset )
-    pick byte-array? [ "not a byte array" throw ] unless ; inline
+    pick byte-array? [ pick not-a-byte-array ] unless ; inline
 
+ERROR: not-a-string obj ;
 : check-string ( buf stream offset -- buf stream offset )
-    pick string? [ "not a string" throw ] unless ; inline
+    pick string? [ pick not-a-string ] unless ; inline
 
 : (sequence-read-unsafe) ( n buf stream -- count )
     [ integer>fixnum ]
     [ dup slice? [ [ seq>> ] [ from>> ] bi ] [ 0 ] if ]
     [
         swap over stream-element-type +byte+ eq?
-        [ check-byte-array ((sequence-read-unsafe)) ]
-        [ check-string ((sequence-read-unsafe)) ] if
+        [ check-byte-array sequence-copy-unsafe ]
+        [ check-string sequence-copy-unsafe ] if
     ] tri* ; inline
 
 PRIVATE>