package_rpm: Update the way the multilib package names are translated
authorMark Hatle <mark.hatle@windriver.com>
Fri, 30 Nov 2012 22:11:37 +0000 (16:11 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 17 Dec 2012 17:24:51 +0000 (17:24 +0000)
The variable MULTILIB_PACKAGE_ARCHS has been removed in favor of a
repurposed MULTILIB_PREFIX_LIST.  The format of this item is now
<libid>:<arch>:<arch1>:...:<archN>.  This ensures that we can correctly
translate the libid to one of the supported archs in a tri-lib system.

All of the users of MULTILIB_PREFIX_LIST and MULTILIB_PACKAGE_ARCHS have
been modified accordingly.

Also change the way attempted packages are installed, verify the package
exists in the translate functions, then perform the install in one single
operation.  This results in a significantly faster install time.

(From OE-Core rev: ffe6cf3a1c57defdbe8531bdeb588e199177bb6c)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package_rpm.bbclass
meta/classes/populate_sdk_rpm.bbclass
meta/classes/rootfs_rpm.bbclass

index 4b81b68..4f60daf 100644 (file)
@@ -24,11 +24,24 @@ package_update_index_rpm () {
                return
        fi
 
-       base_archs="`echo ${PACKAGE_ARCHS} | sed 's/-/_/g'`"
-       ml_archs="`echo ${MULTILIB_PACKAGE_ARCHS} | sed 's/-/_/g'`"
-       sdk_archs="`echo ${SDK_PACKAGE_ARCHS} | sed 's/-/_/g'`"
+       sdk_archs=`echo "${SDK_PACKAGE_ARCHS}" | tr - _`
+
+       target_archs=""
+       for i in ${MULTILIB_PREFIX_LIST} ; do
+               old_IFS="$IFS"
+               IFS=":"
+               set $i
+               IFS="$old_IFS"
+               shift # remove mlib
+               while [ -n "$1" ]; do
+                       target_archs="$target_archs $1"
+                       shift
+               done
+       done
 
-       archs=`for arch in $base_archs $ml_archs $sdk_archs ; do
+       target_archs=`echo "$target_archs" | tr - _`
+
+       archs=`for arch in $target_archs $sdk_archs ; do
                echo $arch
        done | sort | uniq`
 
@@ -59,6 +72,143 @@ rpm_log_check() {
        true
 }
 
+# Translate the RPM/Smart format names to the OE multilib format names
+# Input via stdin (only the first item per line is converted!)
+# Output via stdout
+translate_smart_to_oe() {
+       arg1="$1"
+
+       # Dump installed packages
+       while read pkg arch other ; do
+               if [ -z "$pkg" ]; then
+                       continue
+               fi
+               new_pkg=$pkg
+               fixed_arch=`echo "$arch" | tr _ -`
+               for i in ${MULTILIB_PREFIX_LIST} ; do
+                       old_IFS="$IFS"
+                       IFS=":"
+                       set $i
+                       IFS="$old_IFS"
+                       mlib="$1"
+                       shift
+                       while [ -n "$1" ]; do
+                               cmp_arch=$1
+                               shift
+                               if [ "$arch" = "$cmp_arch" -o "$fixed_arch" = "$cmp_arch" ]; then
+                                       if [ "$mlib" = "default" ]; then
+                                               new_pkg="$pkg"
+                                       else
+                                               new_pkg="$mlib-$pkg"
+                                       fi
+                                       break
+                               fi
+                       done
+                       if [ "$arch" = "$cmp_arch" -o "$fixed_arch" = "$cmp_arch" ]; then
+                               break
+                       fi
+               done
+
+               #echo "$pkg -> $new_pkg" >&2
+               if [ "$arg1" = "arch" ]; then
+                       echo $new_pkg $cmp_arch $other
+               else
+                       echo $new_pkg $other
+               fi
+       done
+}              
+
+# Translate the OE multilib format names to the RPM/Smart format names
+# Input via arguments
+# Ouput via pkgs_to_install
+translate_oe_to_smart() {
+       default_archs=""
+       sdk_mode=""
+       if [ "$1" = "--sdk" ]; then
+               shift
+               sdk_mode="true"
+               # Need to reverse the order of the SDK_ARCHS highest -> lowest priority
+               archs=`echo "${SDK_PACKAGE_ARCHS}" | tr - _`
+               for arch in $archs ; do
+                       default_archs="$arch $default_archs"
+               done
+       fi
+
+       attemptonly="Error"
+       if [ "$1" = "--attemptonly" ]; then
+               attemptonly="Warning"
+               shift
+       fi
+
+       # Dump a list of all available packages
+       [ ! -e ${target_rootfs}/install/tmp/fullpkglist.query ] && smart --data-dir=${target_rootfs}/var/lib/smart query --output ${target_rootfs}/install/tmp/fullpkglist.query
+
+       pkgs_to_install=""
+       for pkg in "$@" ; do
+               new_pkg="$pkg"
+               if [ -z "$sdk_mode" ]; then
+                       for i in ${MULTILIB_PREFIX_LIST} ; do
+                               old_IFS="$IFS"
+                               IFS=":"
+                               set $i
+                               IFS="$old_IFS"
+                               mlib="$1"
+                               shift
+                               if [ "$mlib" = "default" ]; then
+                                       if [ -z "$default_archs" ]; then
+                                               default_archs=$@
+                                       fi
+                                       continue
+                               fi
+                               subst=${pkg#${mlib}-}
+                               if [ "$subst" != "$pkg" ]; then
+                                       feeds=$@
+                                       while [ -n "$1" ]; do
+                                               arch="$1"
+                                               arch=`echo "$arch" | tr - _`
+                                               shift
+                                               if grep -q '^'$subst'-[^-]*-[^-]*@'$arch'$' ${target_rootfs}/install/tmp/fullpkglist.query ; then
+                                                       new_pkg="$subst@$arch"
+                                                       # First found is best match
+                                                       break
+                                               fi
+                                       done
+                                       if [ "$pkg" = "$new_pkg" ]; then
+                                               # Failed to translate, package not found!
+                                               echo "$attemptonly: $pkg not found in the $mlib feeds ($feeds)." >&2
+                                               if [ "$attemptonly" = "Error" ]; then
+                                                       exit 1
+                                               fi
+                                               continue
+                                       fi
+                               fi
+                       done
+               fi
+               # Apparently not a multilib package...
+               if [ "$pkg" = "$new_pkg" ]; then
+                       default_archs_fixed=`echo "$default_archs" | tr - _`
+                       for arch in $default_archs_fixed ; do
+                               if grep -q '^'$pkg'-[^-]*-[^-]*@'$arch'$' ${target_rootfs}/install/tmp/fullpkglist.query ; then
+                                       new_pkg="$pkg@$arch"
+                                       # First found is best match
+                                       break
+                               fi
+                       done
+                       if [ "$pkg" = "$new_pkg" ]; then
+                               # Failed to translate, package not found!
+                               echo "$attemptonly: $pkg not found in the base feeds ($default_archs)." >&2
+                               if [ "$attemptonly" = "Error" ]; then
+                                       exit 1
+                               fi
+                               continue
+                       fi
+               fi
+               #echo "$pkg -> $new_pkg" >&2
+               pkgs_to_install="${pkgs_to_install} ${new_pkg}"
+       done
+       export pkgs_to_install
+}
+
 
 #
 # Install a bunch of packages using rpm.
@@ -96,18 +246,26 @@ package_install_internal_rpm () {
        local providename="$INSTALL_PROVIDENAME_RPM"
        local task="$INSTALL_TASK_RPM"
 
+       local sdk_mode=""
+       if [ "$1" = "--sdk" ]; then
+               sdk_mode="--sdk"
+       fi
+
        # Configure internal RPM environment when using Smart
        export RPM_ETCRPM=${target_rootfs}/etc/rpm
 
        # Setup temporary directory -- install...
-       mkdir -p ${target_rootfs}/install
+       rm -rf ${target_rootfs}/install
+       mkdir -p ${target_rootfs}/install/tmp
 
+       channel_priority=5
        if [ "${INSTALL_COMPLEMENTARY_RPM}" != "1" ] ; then
                # Setup base system configuration
                mkdir -p ${target_rootfs}/etc/rpm/
                echo "${platform}${TARGET_VENDOR}-${TARGET_OS}" > ${target_rootfs}/etc/rpm/platform
                if [ ! -z "$platform_extra" ]; then
                        for pt in $platform_extra ; do
+                               channel_priority=$(expr $channel_priority + 5)
                                case $pt in
                                        noarch | any | all)
                                                os="`echo ${TARGET_OS} | sed "s,-.*,,"`.*"
@@ -178,11 +336,14 @@ EOF
                smart --data-dir=${target_rootfs}/var/lib/smart config --set rpm-extra-macros._tmppath=/install/tmp
                smart --data-dir=${target_rootfs}/var/lib/smart channel --add rpmsys type=rpm-sys -y
 
-               for arch in $platform_extra ; do
+               platform_extra_fixed=`echo "$platform_extra" | tr - _`
+               for arch in $platform_extra_fixed ; do
                        if [ -d ${DEPLOY_DIR_RPM}/$arch -a ! -e ${target_rootfs}/install/channel.$arch.stamp ] ; then
                                smart --data-dir=${target_rootfs}/var/lib/smart channel --add $arch type=rpm-md type=rpm-md baseurl=${DEPLOY_DIR_RPM}/$arch -y
+                               smart --data-dir=${target_rootfs}/var/lib/smart channel --set $arch priority=$channel_priority
                                touch ${target_rootfs}/install/channel.$arch.stamp
                        fi
+                       channel_priority=$(expr $channel_priority - 5)
                done
        fi
 
@@ -218,14 +379,15 @@ EOF
        chmod 0755 ${WORKDIR}/scriptlet_wrapper
        smart --data-dir=${target_rootfs}/var/lib/smart config --set rpm-extra-macros._cross_scriptlet_wrapper=${WORKDIR}/scriptlet_wrapper
 
-       smart --data-dir=${target_rootfs}/var/lib/smart install -y ${package_to_install} ${package_linguas}
+       # Determine what to install
+       translate_oe_to_smart ${sdk_mode} ${package_to_install} ${package_linguas}
 
-       if [ ! -z "${package_attemptonly}" ]; then
-               echo "Installing attempt only packages..."
-               for pkg_name in ${package_attemptonly} ; do
-                       echo "Attempting $pkg_name..." >> "`dirname ${BB_LOGFILE}`/log.do_${task}_attemptonly.${PID}"
-                       smart --data-dir=${target_rootfs}/var/lib/smart install -y $pkg_name >> "`dirname ${BB_LOGFILE}`/log.do_${task}_attemptonly.${PID}" 2>&1 || true
-               done
+       [ -n "$pkgs_to_install" ] && smart --data-dir=${target_rootfs}/var/lib/smart install -y ${pkgs_to_install}
+
+       if [ -n "${package_attemptonly}" ]; then
+               translate_oe_to_smart ${sdk_mode} --attemptonly $package_attemptonly
+               echo "Attempting $pkgs_to_install"
+               smart --data-dir=${target_rootfs}/var/lib/smart install -y $pkgs_to_install >> "`dirname ${BB_LOGFILE}`/log.do_${task}_attemptonly.${PID}" 2>&1 || true
        fi
 }
 
index d26867f..eb80e1d 100644 (file)
@@ -54,8 +54,16 @@ populate_sdk_rpm () {
 
        # List must be prefered to least preferred order
        INSTALL_PLATFORM_EXTRA_RPM=""
-       for each_arch in ${MULTILIB_PACKAGE_ARCHS} ${PACKAGE_ARCHS} ; do
-               INSTALL_PLATFORM_EXTRA_RPM="$each_arch $INSTALL_PLATFORM_EXTRA_RPM"
+       for i in ${MULTILIB_PREFIX_LIST} ; do
+               old_IFS="$IFS"
+               IFS=":"
+               set $i
+               IFS="$old_IFS"
+               shift #remove mlib
+               while [ -n "$1" ]; do
+                       INSTALL_PLATFORM_EXTRA_RPM="$INSTALL_PLATFORM_EXTRA_RPM $1"
+                       shift
+               done
        done
        export INSTALL_PLATFORM_EXTRA_RPM
 
@@ -81,7 +89,7 @@ populate_sdk_rpm () {
        done
        export INSTALL_PLATFORM_EXTRA_RPM
 
-       package_install_internal_rpm
+       package_install_internal_rpm --sdk
        populate_sdk_post_rpm ${INSTALL_ROOTFS_RPM}
 
        # move host RPM library data
@@ -98,8 +106,11 @@ populate_sdk_rpm () {
 
 python () {
     # The following code should be kept in sync w/ the rootfs_rpm version.
-    ml_package_archs = ""
-    ml_prefix_list = ""
+
+    # package_arch order is reversed.  This ensures the -best- match is listed first!
+    package_archs = d.getVar("PACKAGE_ARCHS", True) or ""
+    package_archs = ":".join(package_archs.split()[::-1])
+    ml_prefix_list = "%s:%s" % ('default', package_archs)
     multilibs = d.getVar('MULTILIBS', True) or ""
     for ext in multilibs.split():
         eext = ext.split(':')
@@ -109,11 +120,8 @@ python () {
             if default_tune:
                 localdata.setVar("DEFAULTTUNE", default_tune)
             package_archs = localdata.getVar("PACKAGE_ARCHS", True) or ""
-            package_archs = " ".join([i in "all noarch any".split() and i or eext[1]+"_"+i for i in package_archs.split()])
-            ml_package_archs += " " + package_archs
-            ml_prefix_list += " " + eext[1]
-            #bb.note("ML_PACKAGE_ARCHS %s %s %s" % (eext[1], localdata.getVar("PACKAGE_ARCHS", True) or "(none)", overrides))
-    d.setVar('MULTILIB_PACKAGE_ARCHS', ml_package_archs)
+            package_archs = ":".join([i in "all noarch any".split() and i or eext[1]+"_"+i for i in package_archs.split()][::-1])
+            ml_prefix_list += " %s:%s" % (eext[1], package_archs)
     d.setVar('MULTILIB_PREFIX_LIST', ml_prefix_list)
 }
 
index a507ad6..5000956 100644 (file)
@@ -62,8 +62,16 @@ fakeroot rootfs_rpm_do_rootfs () {
 
        # List must be prefered to least preferred order
        INSTALL_PLATFORM_EXTRA_RPM=""
-       for each_arch in ${MULTILIB_PACKAGE_ARCHS} ${PACKAGE_ARCHS}; do
-               INSTALL_PLATFORM_EXTRA_RPM="$each_arch $INSTALL_PLATFORM_EXTRA_RPM"
+       for i in ${MULTILIB_PREFIX_LIST} ; do
+               old_IFS="$IFS"
+               IFS=":"
+               set $i
+               IFS="$old_IFS"
+               shift #remove mlib
+               while [ -n "$1" ]; do  
+                       INSTALL_PLATFORM_EXTRA_RPM="$INSTALL_PLATFORM_EXTRA_RPM $1"
+                       shift
+               done
        done
        export INSTALL_PLATFORM_RPM
 
@@ -143,21 +151,12 @@ rpm_setup_smart_target_config() {
 RPM_QUERY_CMD = '${RPM} --root $INSTALL_ROOTFS_RPM -D "_dbpath ${rpmlibdir}"'
 
 list_installed_packages() {
-       GET_LIST=$(${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH} %{PACKAGEORIGIN} %{Platform}\n]")
-
-       # Use awk to find the multilib prefix and compare it
-       # with the platform RPM thinks it is part of
-       for prefix in `echo ${MULTILIB_PREFIX_LIST}`; do
-               GET_LIST=$(echo "$GET_LIST" | awk -v prefix="$prefix" '$0 ~ prefix {printf("%s-%s\n", prefix, $0); } $0 !~ prefix {print $0}')
-       done
-
-       # print the info, need to different return counts
-       if [ "$1" = "arch" ] ; then
-               echo "$GET_LIST" | awk -v archs="${PACKAGE_ARCHS}" '{if(!index(archs, $2)) {gsub("_", "-", $2)} print $1, $2}'
-        elif [ "$1" = "file" ] ; then
-               echo "$GET_LIST" | awk '{print $1, $3}'
-        else
-               echo "$GET_LIST" | awk '{print $1}' 
+       if [ "$1" = "arch" ]; then
+               ${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe arch | tee /tmp/arch_list
+       elif [ "$1" = "file" ]; then
+               ${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH} %{PACKAGEORIGIN}\n]" | translate_smart_to_oe | tee /tmp/file_list
+       else
+               ${RPM_QUERY_CMD} -qa --qf "[%{NAME} %{ARCH}\n]" | translate_smart_to_oe | tee /tmp/default_list
        fi
 }
 
@@ -187,8 +186,11 @@ python () {
         d.setVar('RPM_POSTPROCESS_COMMANDS', '')
 
     # The following code should be kept in sync w/ the populate_sdk_rpm version.
-    ml_package_archs = ""
-    ml_prefix_list = ""
+
+    # package_arch order is reversed.  This ensures the -best- match is listed first!
+    package_archs = d.getVar("PACKAGE_ARCHS", True) or ""
+    package_archs = ":".join(package_archs.split()[::-1])
+    ml_prefix_list = "%s:%s" % ('default', package_archs)
     multilibs = d.getVar('MULTILIBS', True) or ""
     for ext in multilibs.split():
         eext = ext.split(':')
@@ -198,10 +200,7 @@ python () {
             if default_tune:
                 localdata.setVar("DEFAULTTUNE", default_tune)
             package_archs = localdata.getVar("PACKAGE_ARCHS", True) or ""
-            package_archs = " ".join([i in "all noarch any".split() and i or eext[1]+"_"+i for i in package_archs.split()])
-            ml_package_archs += " " + package_archs
-            ml_prefix_list += " " + eext[1]
-            #bb.note("ML_PACKAGE_ARCHS %s %s %s" % (eext[1], localdata.getVar("PACKAGE_ARCHS", True) or "(none)", overrides))
-    d.setVar('MULTILIB_PACKAGE_ARCHS', ml_package_archs)
+            package_archs = ":".join([i in "all noarch any".split() and i or eext[1]+"_"+i for i in package_archs.split()][::-1])
+            ml_prefix_list += " %s:%s" % (eext[1], package_archs)
     d.setVar('MULTILIB_PREFIX_LIST', ml_prefix_list)
 }