fix and improve some stdlib functions, add readf

This commit is contained in:
Daniella 2024-09-12 15:17:32 +02:00
parent fd41c46cdd
commit 6f2777b83a
6 changed files with 140 additions and 69 deletions

View file

@ -7,6 +7,10 @@ construct net:http namespace {
Request Request
Response Response
help help
;
register { | with name this ;
name "net:http" register-field
}
} }
construct net:http:Request { construct net:http:Request {

View file

@ -4,6 +4,6 @@
construct net namespace { construct net namespace {
; ;
register { | with name this ; register { | with name this ;
name "net" this register-field name "net" register-field
} }
} }

View file

@ -36,70 +36,13 @@ construct _str_ext {
} }
to-bytes { [int] | str-to-bytes } to-bytes { [int] | str-to-bytes }
split { str | with splitter this ; split { str | with splitter this ;
splitter:to-bytes =splitter splitter:to-bytes this:to-bytes:split:map<{ | bytes-to-str }>
def bytes this:to-bytes =bytes
def i 0 =i
[ [ while { i bytes:len lt } {
def match 0 =match
while { match i + bytes:len lt match splitter:len lt and } {
i match + bytes:get (match splitter:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
i bytes:get
match splitter:len eq if {
pop ] _str [
i match + 1 - =i
}
i ++ =i
} ] _str ]
} }
replace { str | with replacee replacement this ; replace { str | with replacee replacement this ;
replacee:to-bytes =replacee replacee:to-bytes replacement:to-bytes this:to-bytes:replace:to-str
def bytes this:to-bytes =bytes
def i 0 =i
[ while { i bytes:len lt } {
def match 0 =match
while { match i + bytes:len lt match replacee:len lt and } {
i match + bytes:get (match replacee:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
i bytes:get
match replacee:len eq if {
pop replacement:to-bytes:to-stack
i match + 1 - =i
}
i ++ =i
} ] _str
} }
find { idx | with search this ; find { idx | with search this ;
search:to-bytes =search search _array this _array :find
def bytes this:to-bytes =bytes
def i 0 =i
while { i bytes:len lt } {
def match 0 =match
while { match i + bytes:len lt match search:len lt and } {
i match + bytes:get (match search:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
match search:len eq if {
i
4 stop
}
i ++ =i
}
null
} }
starts-with { bool | with beginning this ; starts-with { bool | with beginning this ;
beginning:to-bytes this:to-bytes:starts-with beginning:to-bytes this:to-bytes:starts-with
@ -107,6 +50,28 @@ construct _str_ext {
_char { int | with this ; _char { int | with this ;
0 (this _array):get 0 (this _array):get
} }
readf { [str] | with pat this ;
!!- pat this str-readf
}
readf1 { str | with pat this ;
!!- pat this:readf 0:get
}
uppercase { str | with this ;
this _array :cmap<{ | with chr ;
chr
chr "a" :_char lt not chr "z" :_char gt not and if {
pop (chr "a" :_char -) "A" :_char +
}
}> _str
}
lowercase { str | with this ;
this _array :cmap<{ | with chr ;
chr
chr "A" :_char lt not chr "Z" :_char gt not and if {
pop (chr "A" :_char -) "a" :_char +
}
}> _str
}
} include _str_ext in str } include _str_ext in str
construct _mega-ext { construct _mega-ext {
@ -151,10 +116,81 @@ construct _array-ext {
def i 0 =i def i 0 =i
while { i this:len lt } { i this:get callable call i ++ =i } while { i this:len lt } { i this:get callable call i ++ =i }
} }
map { | with callable this ;
def i 0 =i
while { i this:len lt } { i this:get callable call i this:set; i ++ =i }
this
}
cmap { | with callable this ;
this clone =this
def i 0 =i
while { i this:len lt } { i this:get callable call i this:set; i ++ =i }
this
}
to-str { str | bytes-to-str } to-str { str | bytes-to-str }
sub { [any] | with begin end this ; sub { [any] | with begin end this ;
this (end begin - anew) begin 0 (end begin -) acopy this (end begin - anew) begin 0 (end begin -) acopy
} }
split { arr | with splitter this ;
def i 0 =i
[ [ while { i this:len lt } {
def match 0 =match
while { match i + this:len lt match splitter:len lt and } {
i match + this:get (match splitter:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
i this:get
match splitter:len eq if {
pop ] [
i match + 1 - =i
}
i ++ =i
} ] ]
}
replace { arr | with replacee replacement this ;
def i 0 =i
[ while { i this:len lt } {
def match 0 =match
while { match i + this:len lt match replacee:len lt and } {
i match + this:get (match replacee:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
i this:get
match replacee:len eq if {
pop replacement:to-stack
i match + 1 - =i
}
i ++ =i
} ]
}
find { idx | with search this ;
def i 0 =i
while { i this:len lt } {
def match 0 =match
while { match i + this:len lt match search:len lt and } {
i match + this:get (match search:get) eq dup if {
match ++ =match
} not if {
0 =match
3 stop
}
}
match search:len eq if {
i
4 stop
}
i ++ =i
}
null
}
starts-with { bool | with beginning this ; starts-with { bool | with beginning this ;
this:len beginning:len lt if { this:len beginning:len lt if {
0 0
@ -577,8 +613,21 @@ func update-types { |
update-types update-types
"Adds a field to a namespace and initially sets it to the field's name."; "Adds a field to a namespace and initially sets it to the field's name.";
func register-field { | with field-name namespace-name namespace ; func register-field { | with field-name namespace-name ;
field-name namespace-name dyn-def-field; def namespace-path
namespace namespace-name settype ("=" namespace-name concat) dyn-call def iter
}
namespace-name:split<":"> =namespace-path;
namespace-path:iter =iter
field-name namespace-name dyn-def-field; "adds the desired field to the namespace construct";
(
iter:next dyn-call
iter:foreach<&dyn-objcall>
) namespace-name settype "updates and gets the namespace object";
("=" namespace-path:last concat) namespace-path:=last;
namespace-path:iter =iter
iter:next dyn-call
iter:foreach<&dyn-objcall>
}

View file

@ -16,13 +16,13 @@ construct Stream {
} }
read-one { mega | with this ; read-one { mega | with this ;
def buf 1 anew =buf def buf 1 anew =buf
while { buf this:id read-stream not } { } while { buf this:id read-stream pop not } { }
0 buf:get _mega 0 buf:get _mega
} }
"the buffer is written to in-place."; "the buffer is written to in-place.";
read { mega [int] | with buf this ; read { mega [int] | with buf this ;
buf gettype "mega" eq if { buf anew =buf } buf gettype "mega" eq if { buf anew =buf }
buf this:id read-stream buf buf this:id read-stream
} }
"the buffer is written to in-place."; "the buffer is written to in-place.";
read-exact { [int] | with buf this ; read-exact { [int] | with buf this ;

View file

@ -798,6 +798,10 @@ impl PartialOrd for Value {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> { fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
match (self, other) { match (self, other) {
(Value::Mega(a), Value::Mega(b)) => a.partial_cmp(b), (Value::Mega(a), Value::Mega(b)) => a.partial_cmp(b),
(Value::Long(a), Value::Long(b)) => a.partial_cmp(b),
(Value::Int(a), Value::Int(b)) => a.partial_cmp(b),
(Value::Double(a), Value::Double(b)) => a.partial_cmp(b),
(Value::Float(a), Value::Float(b)) => a.partial_cmp(b),
_ => panic!(), _ => panic!(),
} }
} }

View file

@ -11,6 +11,8 @@ use std::{
time::{Duration, SystemTime}, time::{Duration, SystemTime},
}; };
use readformat::readf;
use crate::{dyn_fns, mutex::Mut, runtime::*, sasm::sasm_write, *}; use crate::{dyn_fns, mutex::Mut, runtime::*, sasm::sasm_write, *};
#[macro_export] #[macro_export]
@ -877,9 +879,20 @@ pub fn time(stack: &mut Stack) -> OError {
Ok(()) Ok(())
} }
pub fn str_readf(stack: &mut Stack) -> OError {
require_on_stack!(string, Str, stack, "str-readf");
require_on_stack!(pat, Str, stack, "str-readf");
let Some(result) = readf(&pat, &string) else {
stack.push(Value::Null.spl());
return Ok(());
};
stack.push(Value::Array(result.into_iter().map(<String as SPL>::spl).collect()).spl());
Ok(())
}
pub fn register(r: &mut Stack, o: Arc<Frame>) { pub fn register(r: &mut Stack, o: Arc<Frame>) {
type Fn = fn(&mut Stack) -> OError; type Fn = fn(&mut Stack) -> OError;
let fns: [(&str, Fn, u32); 56] = [ let fns: [(&str, Fn, u32); 57] = [
("pop", pop, 0), ("pop", pop, 0),
("dup", dup, 2), ("dup", dup, 2),
("dup2", dup2, 3), ("dup2", dup2, 3),
@ -936,6 +949,7 @@ pub fn register(r: &mut Stack, o: Arc<Frame>) {
("write-file-sasm", write_file_sasm, 1), ("write-file-sasm", write_file_sasm, 1),
("fork", fork, 0), ("fork", fork, 0),
("sleeptime", time, 0), ("sleeptime", time, 0),
("str-readf", str_readf, 1),
]; ];
for f in fns { for f in fns {
r.define_func( r.define_func(