3

我有一个 xml 文件目录,我想将其用作集合,特别是查看$my_collection/of/things每个文件的<things>.

我正在使用 Zorba。

这导致error retrieving resource(语法问题?):

variable $my_collection := fn:collection("file://localhost/path/to/my/*.xml");

我还阅读了有关 Zorba 的数据定义工具的文档……对于这个单一的目的来说似乎有点矫枉过正。或不?

4

3 回答 3

3

已编辑的问题 - 将所有内容放入实际的 Zorba 集合中,而不是节点列表。您可能希望根据自己的目的在静态和动态集合之间进行选择。

F.xq:

module namespace X = "urn:xml-files";
import module namespace ddl = "http://www.zorba-xquery.com/modules/store/static/collections/ddl";
import module namespace dml = "http://www.zorba-xquery.com/modules/store/static/collections/dml";
import module namespace file = "http://expath.org/ns/file";
import module namespace x = "http://www.zorba-xquery.com/modules/xml";
declare namespace ann = "http://www.zorba-xquery.com/annotations";

declare collection X:files as node()*;
declare variable $X:uri := xs:QName('X:files');

declare %ann:nondeterministic function X:get-xml-list($dir-name as xs:string) {
    let $files := file:list($dir-name, true())
    for $filename in $files
    where ends-with($filename, ".xml")
    return $filename
};
declare %ann:sequential function X:load-files($names as xs:string*) {
    ddl:create($X:uri);
    dml:insert-nodes($X:uri, for $filename in $names return x:parse(file:read-text($filename),()));
};
declare %ann:sequential function X:load-directory($dir-name as xs:string) {
    X:load-files(X:get-xml-list($dir-name))
};

x.xq:

xquery version "3.0" encoding "utf-8";
import module namespace X = "urn:xml-files" at "F.xq";
import module namespace dml = "http://www.zorba-xquery.com/modules/store/static/collections/dml";
X:load-directory("C:\Projects-dir...-with-xmls\");
dml:collection($X:uri)

参考:

于 2013-10-16T22:34:46.493 回答
1

尝试使用

collection("file:///localhost/path/to/my?select=*.xml;recurse=yes")
于 2013-10-14T06:41:12.673 回答
1

用户 Scala William 添加的解决方案是可行的方法,但他的解决方案有点过时。这是他为 zorba 3.0 更新的代码:

F.xq

module namespace X = "urn:xml-files";
import module namespace ddl = "http://zorba.io/modules/store/static/collections/ddl";
import module namespace dml = "http://zorba.io/modules/store/static/collections/dml";
import module namespace fs = "http://expath.org/ns/file";
import module namespace x = "http://zorba.io/modules/xml";
declare namespace an = "http://zorba.io/annotations";

declare collection X:files as node()*;
declare variable $X:uri := xs:QName('X:files');

declare %an:nondeterministic function X:get-xml-list($dir-name as xs:string)
{
    let $files := fs:list($dir-name, fn:false(),"*.xml")
    for $filename in $files
    return concat($dir-name,$filename)
};

declare %an:sequential function X:load-files($names as xs:string*)
{
    ddl:create($X:uri);
    dml:insert($X:uri, for $filename in $names return x:parse(fs:read-text($filename),()));
};

declare %an:sequential function X:load-directory($dir-name as xs:string)
{
    X:load-files(X:get-xml-list($dir-name))
};

请注意在 X:get-xml-list() 的返回中调用 concat(...) 而不仅仅是 $filename。此外,在 X:load-files() 处对 insert-nodes(...) 的调用已更改为 insert(...)。

如果您需要递归列表,请考虑在 X:get-xml-list() 的 fs:list(...) 中将 fn:false() 更改为 fn:true()。

于 2015-04-17T10:25:08.247 回答