spl/stream.spl

93 lines
2.3 KiB
Text
Raw Normal View History

2023-02-25 11:37:07 +01:00
"The SPL stream is an IO construct used to read and write to ";
"some external thing, for example a file or a TCP socket.";
"All functions here are encapsulations of their native counterparts.";
"Examples:";
"def tcp 'localhost' 8080 StreamType:tcp:create =tcp";
"def file 'test.txt' 1 StreamType:file:create =file 'hi':to-bytes file:write-exact; file:close null =file";
construct Stream {
id
;
construct { this | with type this ;
type new-stream this:=id
this
}
read-one { mega | with this ;
def buf 1 anew =buf
while { buf this:id read-stream not } { }
0 buf:get _mega
}
"the buffer is written to in-place.";
read { mega [int] | with buf this ;
buf gettype "mega" eq if { buf anew =buf }
2023-02-25 11:37:07 +01:00
buf this:id read-stream buf
}
"the buffer is written to in-place.";
read-exact { [int] | with buf this ;
buf gettype "mega" eq if { buf anew =buf }
2023-02-25 11:37:07 +01:00
buf this:id read-all-stream buf
}
read-to-end { [int] | with buf this ;
def full 0 anew =full
buf gettype "mega" eq if { buf anew =buf }
def read
while { buf this:id read-stream pop _mega dup =read } {
full (0 read buf:sub) aadd =full
}
full
}
2023-02-25 11:37:07 +01:00
write { mega | with buf this ;
buf this:id write-stream
}
write-exact { | with buf this ;
buf this:id write-all-stream
}
flush { | with this ;
this:id flush-stream
}
2023-02-25 11:37:07 +01:00
close { | with this ;
this:id close-stream
}
}
construct StreamType {
id
;
construct { this | with id this ;
id this:=id
this
}
create { Stream | with this ;
this:id Stream:new
}
}
def stream-types 0 anew =stream-types
2024-09-09 16:31:35 +02:00
construct _StreamTypes {
2023-02-25 11:37:07 +01:00
;
construct { this | with this ;
{ | with type ;
"type StreamType:new this:=<type>";
(type StreamType:new) (this ("=" type concat)) dyn-objcall
} stream-types:foreach
this
}
}
func register-stream-type { | with id ;
2024-09-04 14:29:49 +02:00
stream-types [ id ] aadd =stream-types
2024-09-09 16:31:35 +02:00
id _StreamTypes dyn-def-field
2023-02-25 11:37:07 +01:00
}
"tcp" register-stream-type
"udp" register-stream-type
2023-02-25 11:37:07 +01:00
"file" register-stream-type
2024-09-04 14:29:49 +02:00
"cmd" register-stream-type
2023-02-25 11:37:07 +01:00
2024-09-09 16:31:35 +02:00
func StreamTypes { _StreamTypes |
_StreamTypes:new
2023-02-25 11:37:07 +01:00
}