Imported Upstream version 14.45.0
[platform/upstream/libzypp.git] / zypp / Product.cc
index d1e7add..f195add 100644 (file)
@@ -11,6 +11,7 @@
 */
 #include <iostream>
 #include "zypp/base/LogTools.h"
+#include "zypp/base/StrMatcher.h"
 
 #include "zypp/Product.h"
 #include "zypp/Url.h"
@@ -75,34 +76,60 @@ namespace zypp
 
   sat::Solvable Product::referencePackage() const
   {
-    Capability identCap( lookupStrAttribute( sat::SolvAttr::productReferences ) );
-    if ( ! identCap )
-    {
-      // No 'references': fallback to provider of 'product(name) = version'
-      // Without this solver testcase won't work, as it does not remember
-      // 'references'.
-      identCap = Capability( str::form( "product(%s) = %s", name().c_str(), edition().c_str() )  );
-    }
-    if ( ! identCap )
+    // Look for a  provider of 'product(name) = version' of same
+    // architecture and within the same repo.
+    //
+    // Code12: Update repos may have multiple release package versions
+    // providing the same product. Prefer the one matching the buildtime,
+    // as the product buildtime is derived from the -release package.
+    Capability identCap( str::form( "product(%s) = %s", name().c_str(), edition().c_str() ) );
+
+    sat::Solvable found;
+    bool foundBuildTime = false;
+    sat::WhatProvides providers( identCap );
+    for_( it, providers.begin(), providers.end() )
     {
-      return sat::Solvable::noSolvable;
+      if ( it->repository() == repository() && it->arch() == arch() )
+      {
+       bool fitsBuildtime = ( PoolItem(*it)->buildtime() == buildtime() );
+       if ( found )
+       {
+         bool lowerEdition = ( it->edition() <= found.edition() );
+         if ( (  foundBuildTime && ( !fitsBuildtime || lowerEdition ) )
+           || ( !foundBuildTime && ( !fitsBuildtime && lowerEdition ) ) )
+           continue;
+       }
+       found = *it;
+       if ( fitsBuildtime )
+         foundBuildTime = true;
+      }
     }
 
-    // if there is productReferences defined, we expect
-    // a matching package within the same repo. And of
-    // same arch.
-    sat::WhatProvides providers( identCap );
-    for_( it, providers.begin(), providers.end() )
+    if ( ! found && isSystem() )
     {
-      if ( it->repository() == repository()
-           && it->arch() == arch() )
-        return *it;
+      // bnc#784900: for installed products check whether the file is owned by
+      // some package. If so, ust this as buddy.
+      sat::LookupAttr q( sat::SolvAttr::filelist, repository() );
+      std::string refFile( referenceFilename() );
+      if ( ! refFile.empty() )
+      {
+       StrMatcher matcher( referenceFilename() );
+       q.setStrMatcher( matcher );
+       if ( ! q.empty() )
+         found = q.begin().inSolvable();
+      }
+      else
+       INT << "Product referenceFilename unexpectedly empty!" << endl;
     }
 
-    WAR << *this << ": no reference package found: " << identCap << endl;
-    return sat::Solvable::noSolvable;
+    if ( ! found )
+      WAR << *this << ": no reference package found: " << identCap << endl;
+    return found;
   }
 
+  std::string Product::referenceFilename() const
+  { return lookupStrAttribute( sat::SolvAttr::productReferenceFile ); }
+
   Product::ReplacedProducts Product::replacedProducts() const
   {
     std::vector<constPtr> ret;
@@ -126,24 +153,57 @@ namespace zypp
       if ( (*it).buddy().isKind( ResKind::product ) )
         ret.push_back( make<Product>( (*it).buddy() ) );
     }
-
     return ret;
   }
 
+  CapabilitySet Product::droplist() const
+  { return poolItem().buddy().valuesOfNamespace( "weakremover" ); }
+
+  std::string Product::productLine() const
+  { return lookupStrAttribute( sat::SolvAttr::productProductLine ); }
+
   ///////////////////////////////////////////////////////////////////
 
   std::string Product::shortName() const
-  { return lookupStrAttribute( sat::SolvAttr::productShortlabel ); }
+  {
+    std::string ret( lookupStrAttribute( sat::SolvAttr::productShortlabel ) );
+    if ( ret.empty() ) ret = name();
+    return ret;
+
+  }
 
   std::string Product::flavor() const
-  { return lookupStrAttribute( sat::SolvAttr::productFlavor ); }
+  {
+    // Look for a  provider of 'product_flavor(name) = version'
+    // within the same repo. Unlike the reference package, we
+    // can be relaxed and ignore the architecture.
+    Capability identCap( str::form( "product_flavor(%s) = %s", name().c_str(), edition().c_str() ) );
+
+    sat::WhatProvides providers( identCap );
+    for_( it, providers.begin(), providers.end() )
+    {
+      if ( it->repository() == repository() )
+      {
+        // Got the package now try to get the provided 'flavor(...)'
+        Capabilities provides( it->provides() );
+        for_( cap, provides.begin(), provides.end() )
+        {
+          std::string capstr( cap->asString() );
+          if ( str::hasPrefix( capstr, "flavor(" ) )
+          {
+            capstr = str::stripPrefix( capstr, "flavor(" );
+            capstr.erase( capstr.size()-1 ); // trailing ')'
+            return capstr;
+          }
+        }
+      }
+    }
+    return std::string();
+  }
 
   std::string Product::type() const
   { return lookupStrAttribute( sat::SolvAttr::productType ); }
 
-  std::string Product::updaterepoKey() const
-  { return lookupStrAttribute( sat::SolvAttr::productUpdaterepoKey ); }
-
   std::list<std::string> Product::flags() const
   {
     std::list<std::string> ret;
@@ -151,8 +211,35 @@ namespace zypp
     return ret;
   }
 
+  Date Product::endOfLife() const
+  { return Date( lookupNumAttribute( sat::SolvAttr::productEndOfLife ) );}
+
+  std::vector<Repository::ContentIdentifier> Product::updateContentIdentifier() const
+  {
+    std::vector<Repository::ContentIdentifier> ret;
+    sat::LookupAttr q( sat::SolvAttr::productUpdatesRepoid, sat::SolvAttr::productUpdates, *this );
+    if ( ! q.empty() )
+    {
+      ret.reserve( 2 );
+      for_( it, q.begin(), q.end() )
+       ret.push_back( it.asString() );
+    }
+    return ret;
+  }
+
+  bool Product::hasUpdateContentIdentifier( const Repository::ContentIdentifier & cident_r ) const
+  {
+    sat::LookupAttr q( sat::SolvAttr::productUpdatesRepoid, sat::SolvAttr::productUpdates, *this );
+    for_( it, q.begin(), q.end() )
+    {
+      if ( it.asString() == cident_r )
+       return true;
+    }
+    return false;
+  }
+
   bool Product::isTargetDistribution() const
-  { return isSystem() && type() == "base"; }
+  { return isSystem() && lookupStrAttribute( sat::SolvAttr::productType ) == "base"; }
 
   std::string Product::registerTarget() const
   { return lookupStrAttribute( sat::SolvAttr::productRegisterTarget ); }
@@ -160,6 +247,9 @@ namespace zypp
   std::string Product::registerRelease() const
   { return lookupStrAttribute( sat::SolvAttr::productRegisterRelease ); }
 
+  std::string Product::registerFlavor() const
+  { return lookupStrAttribute( sat::SolvAttr::productRegisterFlavor ); }
+  
   /////////////////////////////////////////////////////////////////
 
   Product::UrlList Product::urls( const std::string & key_r ) const
@@ -177,7 +267,6 @@ namespace zypp
         /* safety checks, shouldn't happen (tm) */
         if (url_type_it == url_type.end())
         {
-            /* FIXME: Raise exception ?! */
             ERR << *this << " : The thing that should not happen, happened." << endl;
             break;
         }