- don't abort on unknown elements
[platform/upstream/libsolv.git] / tools / repo2solv.sh
index 25862d4..aec9948 100755 (executable)
@@ -17,53 +17,146 @@ test_susetags() {
   fi
 }
 
-# this should signal an error if there is a problem
+# signal an error if there is a problem
 set -e 
 
 LANG=C
 unset CDPATH
 parser_options=${PARSER_OPTIONS:-}
 
+if test "$1" = "-o" ; then
+  exec > "$2"
+  shift
+  shift
+fi
 
 dir="$1"
 cd "$dir" || exit 1
-if test -d repodata; then
+if test -d repodata ; then
   cd repodata || exit 2
 
-  # This contains a primary.xml* and maybe patches
-  for i in primary.xml*; do
+  primfile="/nonexist"
+  if test -f primary.xml || test -f primary.xml.gz || test -f primary.xml.bz2 ; then
+    primfile=`mktemp` || exit 3
+    (
+     # fake tag to combine primary.xml and extensions
+     # like susedata.xml, other.xml, filelists.xml
+     echo '<rpmmd>'
+     for i in primary.xml* susedata.xml*; do
+       test -s "$i" || continue
+       case $i in
+         *.gz) gzip -dc "$i";;
+        *.bz2) bzip2 -dc "$i";;
+        *) cat "$i";;
+       esac
+       # add a newline
+       echo
+       # only the first
+       break
+     done
+     for i in susedata.xml*; do
+       test -s "$i" || continue
+       case $i in
+         *.gz) gzip -dc "$i";;
+        *.bz2) bzip2 -dc "$i";;
+         *) cat "$i";;
+       esac
+       # only the first
+       break
+     done
+     echo '</rpmmd>'
+    ) | grep -v '\?xml' |  sed '1i\<?xml version="1.0" encoding="UTF-8"?>' | rpmmd2solv $parser_options > $primfile || exit 4
+  fi
+
+  prodfile="/nonexist"
+  if test -f product.xml; then
+    prodfile=`mktemp` || exit 3
+    (
+     echo '<products>'
+     for i in product*.xml*; do
+       case $i in
+         *.gz) gzip -dc "$i" ;;
+        *.bz2) bzip2 -dc "$i" ;;
+        *) cat "$i" ;;
+       esac
+     done
+     echo '</products>'
+    ) | grep -v '\?xml' | rpmmd2solv $parser_options > $prodfile || exit 4
+  fi
+
+  cmd=
+  patternfile="/nonexist"
+  for i in patterns.xml*; do
+    test -s "$i" || continue
     case $i in
-      *.gz) cmd="gzip -dc" ;;
-      *.bz2) cmd="bzip2 -dc" ;;
-      *) cmd="cat" ;;
+      *.gz) cmd='gzip -dc' ;;
+      *.bz2) cmd='bzip2 -dc' ;;
+      *) cmd='cat' ;;
     esac
-    # only check the first primary.xml*, in case there are more
     break
   done
-  primfile="/nonexist"
+  if test -n "$cmd" ; then
+    patternfile=`mktemp` || exit 3
+    $cmd "$i" | rpmmd2solv $parser_options > $patternfile || exit 4
+  fi
+
+  # This contains repomd.xml
+  # for now we only read some keys like timestamp
+  cmd=
+  for i in repomd.xml*; do
+      test -s "$i" || continue
+      case $i in
+         *.gz) cmd="gzip -dc" ;;
+         *.bz2) cmd="bzip2 -dc" ;;
+         *) cmd="cat" ;;
+      esac
+      # only check the first repomd.xml*, in case there are more
+      break
+  done
+  repomdfile="/nonexist"
   if test -n "$cmd"; then
-    # we have some primary.xml*
-    primfile=`mktemp` || exit 3
-    $cmd $i | rpmmd2solv $parser_options > $primfile || exit 4
+      # we have some repomd.xml*
+      repomdfile=`mktemp` || exit 3
+      $cmd "$i" | repomdxml2solv $parser_options > $repomdfile || exit 4
+  fi
+
+  # This contains suseinfo.xml, which is extensions to repomd.xml
+  # for now we only read some keys like expiration and products
+  cmd=
+  for i in suseinfo.xml*; do
+      test -s "$i" || continue
+      case $i in
+         *.gz) cmd="gzip -dc" ;;
+         *.bz2) cmd="bzip2 -dc" ;;
+         *) cmd="cat" ;;
+      esac
+      # only check the first suseinfo.xml*, in case there are more
+      break
+  done
+  suseinfofile="/nonexist"
+  if test -n "$cmd"; then
+      # we have some suseinfo.xml*
+      suseinfofile=`mktemp` || exit 3
+      $cmd "$i" | repomdxml2solv $parser_options > $suseinfofile || exit 4
   fi
 
   # This contains a updateinfo.xml* and maybe patches
-  if test -f updateinfo.xml || test -f updateinfo.xml.gz || test -f updateinfo.xml.bz2 ; then
-      for i in updateinfo.xml*; do
-          case $i in
-              *.gz) cmd="gzip -dc" ;;
-              *.bz2) cmd="bzip2 -dc" ;;
-              *) cmd="cat" ;;
-          esac
-          # only check the first updateinfo.xml*, in case there are more
-          break
-      done
-      updateinfofile="/nonexist"
-      if test -n "$cmd"; then
+  cmd=
+  for i in updateinfo.xml*; do
+      test -s "$i" || continue
+      case $i in
+         *.gz) cmd="gzip -dc" ;;
+         *.bz2) cmd="bzip2 -dc" ;;
+         *) cmd="cat" ;;
+      esac
+      # only check the first updateinfo.xml*, in case there are more
+      break
+  done
+  updateinfofile="/nonexist"
+  if test -n "$cmd"; then
       # we have some updateinfo.xml*
-          updateinfofile=`mktemp` || exit 3
-          $cmd $i | updateinfoxml2solv $parser_options > $updateinfofile || exit 4
-      fi
+      updateinfofile=`mktemp` || exit 3
+      $cmd "$i" | updateinfoxml2solv $parser_options > $updateinfofile || exit 4
   fi
 
   patchfile="/nonexist"
@@ -83,28 +176,40 @@ if test -d repodata; then
   fi
 
   # This contains a deltainfo.xml*
-  if test -f deltainfo.xml || test -f deltainfo.xml.gz || test -f deltainfo.xml.bz2 ; then
-      for i in deltainfo.xml*; do
-          case $i in
-              *.gz) cmd="gzip -dc" ;;
-              *.bz2) cmd="bzip2 -dc" ;;
-              *) cmd="cat" ;;
-          esac
-          # only check the first deltainfo.xml*, in case there are more
-          break
-      done
-      deltainfofile="/nonexist"
-      if test -n "$cmd"; then
+  cmd=
+  for i in deltainfo.xml*; do
+      test -s "$i" || continue
+      case $i in
+         *.gz) cmd="gzip -dc" ;;
+         *.bz2) cmd="bzip2 -dc" ;;
+         *) cmd="cat" ;;
+      esac
+      # only check the first deltainfo.xml*, in case there are more
+      break
+  done
+  deltainfofile="/nonexist"
+  if test -n "$cmd"; then
       # we have some deltainfo.xml*
-          deltainfofile=`mktemp` || exit 3
-          $cmd $i | deltainfoxml2solv $parser_options > $deltainfofile || exit 4
-      fi
+      deltainfofile=`mktemp` || exit 3
+      $cmd "$i" | deltainfoxml2solv $parser_options > $deltainfofile || exit 4
   fi
 
   # Now merge primary, patches, updateinfo, and deltainfo
+  if test -s $repomdfile; then
+    m_repomdfile=$repomdfile
+  fi
+  if test -s $suseinfofile; then
+    m_suseinfofile=$suseinfofile
+  fi
   if test -s $primfile; then
     m_primfile=$primfile
   fi
+  if test -s $patternfile; then
+    m_patternfile=$patternfile
+  fi
+  if test -s $prodfile; then
+    m_prodfile=$prodfile
+  fi
   if test -s $patchfile; then
     m_patchfile=$patchfile
   fi
@@ -114,8 +219,8 @@ if test -d repodata; then
   if test -s $deltainfofile; then
     m_deltainfofile=$deltainfofile
   fi
-  mergesolv $m_primfile $m_patchfile $m_updateinfofile $m_deltainfofile
-  rm -f $primfile $patchfile $updateinfofile $deltainfofile
+  mergesolv $m_repomdfile $m_suseinfofile $m_primfile $m_prodfile $m_patternfile $m_patchfile $m_updateinfofile $m_deltainfofile
+  rm -f $repomdfile $suseinfofile $primfile $patternfile $prodfile $patchfile $updateinfofile $deltainfofile
 
 elif test_susetags; then
   olddir=`pwd`
@@ -179,7 +284,7 @@ elif test_susetags; then
        *) 
          suff=${name#packages.}
          echo "=Lan: $suff"
-         eval "$prog '$i'" ;;
+         $prog "$i" ;;
       esac
     done
 
@@ -188,11 +293,12 @@ elif test_susetags; then
 else
   rpms=''
   for r in *.rpm ; do
-    rpms="$rpms$r
-"
+    test -e "$r" || continue
+    rpms="$rpms
+$r"
   done
   if test -n "$rpms" ; then
-      echo "$rpms" | rpms2solv -m -
+      echo "${rpms#?}" | rpms2solv -m -
   else
       exit 1
   fi