gpt4 book ai didi

xquery - 如何修改 eXist-db 中的内存文档?

转载 作者:行者123 更新时间:2023-12-02 09:26:50 26 4
gpt4 key购买 nike

我想知道如何修改存储在数据库中的原始文档的内存副本。我对 update 扩展非常满意,它允许我通过文本节点搜索/替换并永久更改它们。然而,这种行为并不总是我想要的。在某些特殊情况下,我需要导出文档并即时进行细微更改。 eXist 似乎不支持 copy,我会考虑这一点。

对于永久更改,我使用:

declare function cust-utils:replace-spaces-hard($document as xs:string) as empty() {
let $doc := doc($document)/tei:TEI
let $match := '(^|\s| )([szkvaiouSZKVAIOU])[\s]'
for $i in (1 to 2)
return
for $text in $doc//text()
return
update value $text[matches(., $match)] with replace($text, $match, '$1$2 ')
};

(我迭代了两次,因为 XPATH 2.0 似乎不允许在正则表达式中使用环视,并且这里的匹配有时会重叠。)

如何暂时做同样的事情?我尝试了 Datypic 中的有趣功能但它只返回特定的节点。我需要保留文档顺序。简而言之,我需要遍历文档树,替换特定字符串并按原样返回文档以供以后使用,而无需在数据库中更新它。

更新

不幸的是,这个:

declare function cust-utils:copy($input as item()*) as item()* {
for $node in $input
return $node
};

完全一样

declare function cust-utils:copy($input as item()*) as item()* {
for $node in $input
return
typeswitch($node)
case element()
return
element { name($node) } {
for $att in $node/@*
return
attribute { name($att) } { $att }
,
(: output all the sub-elements of this element recursively :)
for $child in $node
return cust-utils:copy($child/node())
}
default return $node
};

…看起来它返回了文档节点,而没有真正的遍历。

最佳答案

eXist 的 XQuery Update 扩展将所有更新写入数据库,并且不支持内存中操作。这与 eXist 不支持的 W3C XQuery Update Facility 1.0+ 形成对比。因此,在 eXist 中,内存中更新必须使用纯 XQuery 执行,即没有正式更新工具的附加语法和功能。

对于使用 eXist 进行内存更新,传统路径是执行“身份转换”,通常使用递归typeswitch操作;请参阅 https://en.wikipedia.org/wiki/Identity_transform#Using_XQuery 。一个显示文本节点转换同时保留文档顺序的简单示例是:

xquery version "3.0";

declare function local:transform($nodes as node()*) {
for $node in $nodes
return
typeswitch ($node)
case document-node() return
local:transform($node/node())
case element() return
element {node-name($node)} {
$node/@*,
local:transform($node/node())
}
case text() return
replace($node, '[a-z]+', upper-case($node))
(: drop comment & processing-instruction nodes :)
default return
()
};

let $node :=
document {
element root {
comment { "sample document" },
element x {
text { "hello" },
element y {
text { "there" }
},
text { "friend" }
}
}
}
return
<results>
<before>{$node}</before>
<after>{local:transform($node)}</after>
</results>

结果:

<result>
<before>
<root>
<!-- sample document -->
<x>hello <y>there</y> friend</x>
</root>
</before>
<after>
<root>
<x>HELLO <y>THERE</y> FRIEND</x>
</root>
</after>
</result>

另一种方法是使用内存中更新模块,例如 Ryan J. Dew 的“XQuery XML Memory Operations”模块(位于 https://github.com/ryanjdew/XQuery-XML-Memory-Operations )。如果您克隆存储库(或下载存储库的 .zip 文件并解压缩)并将该文件夹上传到 eXist 的 /db 集合,则以下代码将起作用(改编自这个旧的存在打开帖子:http://markmail.org/message/pfvu5omj3ctfzrft ):

xquery version "3.0";

import module namespace mem="http://maxdewpoint.blogspot.com/memory-operations"
at "/db/XQuery-XML-Memory-Operations-master/memory-operations-pure-xquery.xqy";

let $node := <x>hello</x>
let $copy := mem:copy($node)
let $rename := mem:rename($copy, $node, fn:QName("foo", "y"))
let $replace-value := mem:replace-value($rename, $node, "world")
return
mem:execute($replace-value)

结果:

<y xmlns="foo">world</y>

关于xquery - 如何修改 eXist-db 中的内存文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37165238/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com