[fix] update errs

This commit is contained in:
Andy Bunce 2026-03-09 22:27:33 +00:00
parent d3a89a5b08
commit d38467183c
5 changed files with 77 additions and 50 deletions

View file

@ -1 +1 @@
Document structure for editor Manage a document's content as a sequence of lines.

View file

@ -66,9 +66,10 @@ declare function doci:text($doci as doci:doci)
as xs:string{ as xs:string{
string-join($doci?lines,$doci?separator) string-join($doci?lines,$doci?separator)
}; };
(: number of lines:) (: number of lines:)
declare function doci:lines($doci as doci:doci) declare function doci:lines($doci as doci:doci)
as xs:string{ as xs:integer{
$doci?lines=>count() $doci?lines=>count()
}; };
@ -82,30 +83,39 @@ switch () {
default return $doci:default-separator default return $doci:default-separator
} }
}; };
(: apply change:) (: apply change:)
declare function doci:change($doci as doci:doci,$change as doci:TextDocumentContentChangeEvent) declare function doci:update($doci as doci:doci,$change as doci:TextDocumentContentChangeEvent)
as doci:doci{ as doci:doci{
let $lines:= doci:split-lines($change?text) let $lines:= doci:split-lines($change?text)
return if(empty($change?range)) return if(empty($change?range))
then doci:doci($lines,$doci?separator) then doci:doci($lines,$doci?separator)
else let $range:=$change?range else
let $range:=$change?range
let $sline:= $range?start?line let $sline:= $range?start?line
let $eline:= $range?end?line let $eline:= $range?end?line
return switch(){
case $sline eq $eline and count($lines) eq 1
return let $line:=$doci?lines[$sline+1]
let $new:=substring($line,1,$range?start?character)
|| $lines ||
substring($line,1+$range?end?character)
let $ulines:=( $doci?lines[position() le $sline], (: string from start line before insert :)
$new, let $head:= substring( $doci?lines[$sline+1] ,1, $range?start?character )
$doci?lines[position() gt 1+$sline] (: string from edit end to end of line :)
let $head:= substring( $doci?lines[$sline+1] ,1, $range?start?character )
let $last := substring( $doci?lines[$eline+1] , $range?end?character +1)
let $ulines := (
subsequence($doci?lines, 1, $sline) (: lines before edit :)
,
if($sline eq $eline)
then ($head || $lines[1] || $last)
else (
$head || $lines[1],
subsequence( $lines,2, count( $lines - 2)),
$lines[last()] ||$last
),
subsequence($doci?lines, $eline+2) (: lines after edit :)
) )
return doci:doci($ulines,$doci?separator) return doci:doci($ulines,$doci?separator)
default return error(#doci:change,"oh")
}
}; };
declare function doci:split-lines($text as xs:string) declare function doci:split-lines($text as xs:string)

View file

@ -1,10 +0,0 @@
import module namespace doci = 'urn:doci' at "../src/doci.xqm";
declare variable $long:=
file:read-text("C:\Users\mrwhe\git\quodatum\basex-lsp\test\sample.docs\pdfbox.xqm");
declare variable $text:=`ABV
ddddd
`;
doci:build($long)?length

View file

@ -2,11 +2,12 @@
module namespace test = 'test:doci'; module namespace test = 'test:doci';
import module namespace doci = 'urn:doci' at "../src/doci.xqm"; import module namespace doci = 'urn:doci' at "../src/doci.xqm";
(:~ we can create record from file :) (:~ we can create record from file :)
declare %unit:test function test:from-file() { declare %unit:test function test:from-file() {
let $doc:=test:read("resources/doc1.txt") let $doc:=test:read("resources/doc1.txt")
let $doci:= doci:build($doc) let $doci:= doci:build($doc)
return test:expected($doc,$doci,530) return test:expected($doci,$doc,530)
}; };
@ -14,7 +15,7 @@ declare %unit:test function test:from-file() {
declare %unit:test function test:from-string1() { declare %unit:test function test:from-string1() {
let $doc:="a one line string" let $doc:="a one line string"
let $doci:= doci:build($doc) let $doci:= doci:build($doc)
return test:expected($doc,$doci,1) return test:expected($doci, $doc, 1)
}; };
(:~ we can create record from string :) (:~ we can create record from string :)
@ -22,39 +23,43 @@ declare %unit:test function test:from-string2() {
let $doc:="a two line string let $doc:="a two line string
second line" second line"
let $doci:= doci:build($doc) let $doci:= doci:build($doc)
return test:expected($doc,$doci,2) return test:expected($doci,$doc,2)
}; };
(:~ we can create update from string :) (:~ we can create update from string :)
declare %unit:test function test:update1() { declare %unit:test function test:update-start() {
let $doc:="123456789" let $doc:="123456789"
let $doci:= doci:build($doc) let $doci:= doci:build($doc)
let $change:=test:change("*",0,0,0,0) let $_:= test:expected($doci,$doc,1)
let $doci2:=doci:change($doci,$change)=>trace("A")
let $change2:=test:change("",0,0,0,1) let $change:=test:def-change("*",0,0,0,0)
let $update:=doci:change($doci2,$change2)=>trace("b") let $doci2:=doci:update($doci,$change)=>trace("US1")
let $_:= test:expected($doci2,"*" || $doc,1)
let $change2:=test:def-change("",0,0,0,1)
let $update:=doci:update($doci2,$change2)=>trace("b")
let $_:= doci:text($update)=>trace("test:update1")
return () return ()
}; };
(:~ we can create update from string :) (:~ we can create update from string :)
declare %unit:test function test:update2() { declare %unit:test function test:update-end() {
let $doc:="a let $doc:="a
123456789 123456789
b" b"
let $doci:= doci:build($doc) let $doci:= doci:build($doc)
let $_:=test:expected($doc,$doci,3) let $_:=test:expected($doci,$doc,3)
let $change:=test:change("*",1,9,1,9) let $change:=test:def-change("*",1,9,1,9)
let $doci2:=doci:change($doci,$change)=>trace("A") let $doci2:=doci:update($doci,$change)
let $change2:=test:change("",1,9,1,10) let $change2:=test:def-change("",1,9,1,10)
let $update:=doci:change($doci2,$change2)=>trace("b") let $update:=doci:update($doci2,$change2)
return () return unit:assert-equals($doc,doci:text($update))
}; };
(: test $doci properties as expected :) (: test $doci properties as expected :)
declare function test:expected($doc as xs:string, $doci as doci:doci, $lines as xs:integer){ declare function test:expected($doci as doci:doci, $doc as xs:string, $lines as xs:integer){
unit:assert-equals($doci?lines=>count(),$lines), unit:assert-equals(doci:lines($doci),$lines),
unit:assert($doci?separator!string-length(.)>0), unit:assert($doci?separator!string-length(.)>0),
unit:assert-equals($doc,doci:text($doci)) unit:assert-equals($doc,doci:text($doci))
}; };
@ -72,7 +77,7 @@ file:resolve-path($path,file:base-dir())=>file:read-text()
}; };
(: create a change description:) (: create a change description:)
declare function test:change($text as xs:string, declare function test:def-change($text as xs:string,
$sline as xs:integer,$schar as xs:integer, $sline as xs:integer,$schar as xs:integer,
$eline as xs:integer,$echar as xs:integer $eline as xs:integer,$echar as xs:integer
) )

22
test/smoke.xq Normal file
View file

@ -0,0 +1,22 @@
import module namespace doci = 'urn:doci' at "../src/doci.xqm";
declare variable $long:=
file:read-text("C:\Users\mrwhe\git\quodatum\basex-lsp\test\sample.docs\pdfbox.xqm");
declare variable $text:="123456789";
(: create a change description:)
declare function local:change($text as xs:string,
$sline as xs:integer,$schar as xs:integer,
$eline as xs:integer,$echar as xs:integer
)
as doci:TextDocumentContentChangeEvent{
doci:TextDocumentContentChangeEvent(
$text,
doci:Range(doci:Position($sline,$schar),doci:Position($eline,$echar))
)
};
doci:build($text)
=>doci:change(local:change("*",0,0,0,0))