Imported Upstream version 16.3.2
[platform/upstream/libzypp.git] / zypp / Product.cc
index 25a45e6..d5ef49b 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 )
-    {
-      return sat::Solvable::noSolvable;
-    }
+    // 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() ) );
 
-    // if there is productReferences defined, we expect
-    // a matching package within the same repo. And of
-    // same arch.
+    sat::Solvable found;
+    bool foundBuildTime = false;
     sat::WhatProvides providers( identCap );
     for_( it, providers.begin(), providers.end() )
     {
-      if ( it->repository() == repository()
-           && it->arch() == arch() )
-        return *it;
+      if ( it->repository() == repository() && it->arch() == arch() )
+      {
+       bool fitsBuildtime = ( 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 ( ! found && isSystem() )
+    {
+      // 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,61 +153,156 @@ 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 ); }
-
-  Url Product::releaseNotesUrl() const
+  std::list<std::string> Product::flags() const
   {
-    std::list<Url> ret;
-    fillList( ret, satSolvable(), sat::SolvAttr::productRelnotesurl );
-    if ( ! ret.empty() )
-      return  ret.front();
-    return Url();
+    std::list<std::string> ret;
+    fillList( ret, satSolvable(), sat::SolvAttr::productFlags );
+    return ret;
   }
 
-  std::list<Url> Product::updateUrls() const
+  Date Product::endOfLife() const
+  { return Date( lookupNumAttribute( sat::SolvAttr::productEndOfLife ) );}
+
+  bool Product::hasEndOfLife() const
+  { return( lookupNumAttribute( sat::SolvAttr::productEndOfLife, -1 ) != -1 ); }
+
+  bool Product::hasEndOfLife( Date & value ) const
   {
-    std::list<Url> ret;
-    fillList( ret, satSolvable(), sat::SolvAttr::productUpdateurls );
-    return ret;
+    Date res( lookupNumAttribute( sat::SolvAttr::productEndOfLife, -1 ) );
+    if ( res == -1 )
+      return false;
+    // else:
+    value = res;
+    return true;
   }
 
-  std::list<Url> Product::extraUrls() const
+  std::vector<Repository::ContentIdentifier> Product::updateContentIdentifier() const
   {
-    std::list<Url> ret;
-    fillList( ret, satSolvable(), sat::SolvAttr::productExtraurls );
+    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;
   }
 
-  std::list<Url> Product::optionalUrls() const
+  bool Product::hasUpdateContentIdentifier( const Repository::ContentIdentifier & cident_r ) const
   {
-    std::list<Url> ret;
-    fillList( ret, satSolvable(), sat::SolvAttr::productOptionalurls );
-    return ret;
+    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;
   }
 
-  std::list<std::string> Product::flags() const
+  bool Product::isTargetDistribution() const
+  { return isSystem() && lookupStrAttribute( sat::SolvAttr::productType ) == "base"; }
+
+  std::string Product::registerTarget() const
+  { return lookupStrAttribute( sat::SolvAttr::productRegisterTarget ); }
+
+  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
   {
-    std::list<std::string> ret;
-    fillList( ret, satSolvable(), sat::SolvAttr::productFlags );
+    UrlList ret;
+
+    sat::LookupAttr url( sat::SolvAttr::productUrl, *this );
+    sat::LookupAttr url_type( sat::SolvAttr::productUrlType, *this );
+
+    sat::LookupAttr::iterator url_it(url.begin());
+    sat::LookupAttr::iterator url_type_it(url_type.begin());
+
+    for (;url_it != url.end(); ++url_it, ++url_type_it)
+    {
+        /* safety checks, shouldn't happen (tm) */
+        if (url_type_it == url_type.end())
+        {
+            ERR << *this << " : The thing that should not happen, happened." << endl;
+            break;
+        }
+
+        if ( url_type_it.asString() == key_r )
+        {
+            ret._list.push_back(url_it.asString());
+        }
+    } /* while (attribute array) */
+
     return ret;
   }
 
+  Product::UrlList Product::releaseNotesUrls() const { return urls( "releasenotes" ); }
+  Product::UrlList Product::registerUrls()     const { return urls( "register" ); }
+  Product::UrlList Product::smoltUrls()        const { return urls( "smolt" ); }
+  Product::UrlList Product::updateUrls()       const { return urls( "update" ); }
+  Product::UrlList Product::extraUrls()        const { return urls( "extra" ); }
+  Product::UrlList Product::optionalUrls()     const { return urls( "optional" ); }
+
+  std::ostream & operator<<( std::ostream & str, const Product::UrlList & obj )
+  { return dumpRange( str << obj.key() << ' ', obj.begin(), obj.end() ); }
+
   /////////////////////////////////////////////////////////////////
 } // namespace zypp
 ///////////////////////////////////////////////////////////////////