jbrehr
jbrehr

Reputation: 815

xquery efficient predicates versus for...where

I have a series of xml nodes that look like this:

let $x := 
 <works>
   <work xml:id="W1">
      <author corresp="AU08"/>
      <group corresp="GR03"/>
   </work>
   <work xml:id="W2">
      <author corresp="AU09"/>
      <group corresp="GR10"/>
   </work>
   <work xml:id="W3">
      <author corresp="AU08"/>
      <group corresp="GR05"/>
   </work>
    ....
 </works>

I have a search form that may or may not offer sequence parameters against work/@xml:id , work/author/@corresp, and work/affiliation/$corresp, for example:

let $xmlids := ("W1")
let $authors := ()
let $groups := ("GR05","GR08")

or

let $xmlids := ()
let $authors := ("AU01","AU08")
let $groups := ("GR05")

I am trying to create an efficient query in Xquery 3.1 (eXist 4.7) to account for the different permutations of parameters, while outputting work/. This has lead me to build an ugly series of nested if statements which trying to favour predicates over for ...where like the following:

if (count($xmlids) gt 0 and count($authors) gt 0 and count($groups) gt 0)
   then 
      $x/id($xmlids)/author[@corresp=$authors]/parent::work/group[@corresp=$groups]/parent::work
else if (count($xmlids) gt 0 and count($authors) gt 0 and count($groups) eq 0)
   then 
      $x/id($xmlids)/author[@corresp=$authors]/parent::work
else if ...

Is there a more efficient way to build an Xquery accounting for variable present/absent parameters?

Many thanks in advance.

Upvotes: 0

Views: 84

Answers (1)

Martin Honnen
Martin Honnen

Reputation: 167696

I think for the predicates you just want @corresp=$authors or not(exists($authors)) and @corresp=$groups or not(exists($groups)).

For the id call I think you need

let $work-items := if ($x/id($xmlids)) then $x/id($xmlids) else $x/work
return $work-items[author[@corresp=$authors or not(exists($authors))] and group[@corresp=$groups or not(exists($groups))]]

Upvotes: 1

Related Questions