Reputation: 195
I am using BaseX version 8.6.6 i am getting the error while updating database
expression must all be updating or return empty sequence
below is the code:
declare %private %updating function local:ingest-job()
{
let $contentpath := 'D:\2019\bloomsbury-ingest-content\TEI.zip'
let $archive := file:read-binary($contentpath)
for $entry in archive:entries($archive)[fn:ends-with(., '.xml')]
let $rootNode := fn:name(fn:parse-xml(archive:extract-text($archive, $entry))/*)
return
let $docId := fn:parse-xml(archive:extract-text($archive, $entry))/*/@xml:id/string()[$rootNode='TEI']
let $cid := fn:replace($docId,'[a-zA-z-]','')
let $jobID := fn:concat($cid,'-',fn:string(fn:format-dateTime(fn:current-dateTime(), '[Y0001][M01][D01][H01][m01][s01][f01]')))
let $jobChunk := <job>
<job-info>
<id>{$jobID}</id>
<cid>{$cid}</cid>
</job-info>
</job>
return (
db:add('testdb', $jobChunk, fn:concat('/jobs/',$jobID,'.xml')),
db:output(<result><status>Success</status><message>Job created</message><jobid>{$jobID}</jobid></result>))
};
<results>{local:ingest-job()}</results>
current output:
<result>
<status>Success</status>
<message>Job created</message>
<jobid>9781784604387-2019102816303069</jobid>
</result>
<result>
<status>Success</status>
<message>Job created</message>
<jobid>9781784604417-2019102816303069</jobid>
</result>
expected output:
<results>
<result>
<status>Success</status>
<message>Job created</message>
<jobid>9781784604387-2019102816303069</jobid>
</result>
<result>
<status>Success</status>
<message>Job created</message>
<jobid>9781784604417-2019102816303069</jobid>
</result>
</results>
what is going wrong here?
Upvotes: 1
Views: 834
Reputation: 306
If you wanted to avoid the use of the custom MIXUPDATES option, one general approach is to use your functions to collect the all the information you will need for the save but defer the actual execution to your top level call.
For your code that might look something like:
(: info required to save job for $doc map{jobID, jobChunk} :)
declare %private function local:ingest-job($doc as document-node()) as map(*)
{
let $docId :=$doc/*/@xml:id/string()[fn:name($doc/*)='TEI']
let $cid := fn:replace($docId,'[a-zA-z-]','')
let $jobID := fn:concat($cid,'-',fn:string(fn:format-dateTime(fn:current-dateTime(), '[Y0001][M01][D01][H01][m01][s01][f01]')))
let $jobChunk := <job>
<job-info>
<id>{$jobID}</id>
<cid>{$cid}</cid>
</job-info>
</job>
return map{
jobID: $jobID,
jobChunk: $jobChunk
}
};
let $contentpath := 'D:\2019\bloomsbury-ingest-content\TEI.zip'
let $archive := file:read-binary($contentpath)
let $docs:=archive:entries($archive)[fn:ends-with(., '.xml')]!fn:parse-xml(archive:extract-text($archive, .))
let $jobs:=$docs!local:ingest-job(.)
return (
$jobs!db:add('testdb', ?jobChunk, fn:concat('/jobs/',?jobID,'.xml')),
update:output(<results>{
$jobs!<result><status>Success</status><message>Job created</message><jobid>{?jobID}</jobid></result>
}</results>)
)
Upvotes: 0
Reputation: 6218
As the error message indicates you are mixing updating and non-updating expressions here. You avoid doing this within your function by using db:output()
, but you do it in the main part:
<results>{local:ingest-job()}</results>
This constructs the results
element and within it you have an updating function. The XQUF spec does not allow this and as BaseX tries to be standards compliant you are not allowed to do that.
You have several options how to avoid that:
local:ingest-job()
instead of <results>{local:ingest-job()}</results>
. This way you have no non-updating expression. However, then you will have no surrounding results
element.These options are also described within the BaseX wiki.
Upvotes: 2