libzypp  15.3.0
Product.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #include <iostream>
13 #include "zypp/base/LogTools.h"
14 #include "zypp/base/StrMatcher.h"
15 
16 #include "zypp/Product.h"
17 #include "zypp/Url.h"
18 
19 #include "zypp/sat/LookupAttr.h"
20 #include "zypp/sat/WhatProvides.h"
21 #include "zypp/sat/WhatObsoletes.h"
22 #include "zypp/PoolItem.h"
23 
24 using std::endl;
25 
27 namespace zypp
28 {
29 
30  IMPL_PTR_TYPE(Product);
31 
32  namespace
33  {
34  void fillList( std::list<Url> & ret_r, sat::Solvable solv_r, sat::SolvAttr attr_r )
35  {
36  sat::LookupAttr query( attr_r, solv_r );
37  for_( it, query.begin(), query.end() )
38  {
39  try // ignore malformed urls
40  {
41  ret_r.push_back( Url( it.asString() ) );
42  }
43  catch( const url::UrlException & )
44  {}
45  }
46  }
47 
48  void fillList( std::list<std::string> & ret_r, sat::Solvable solv_r, sat::SolvAttr attr_r )
49  {
50  sat::LookupAttr query( attr_r, solv_r );
51  for_( it, query.begin(), query.end() )
52  {
53  ret_r.push_back( it.asString() );
54  }
55  }
56  }
57 
59  //
60  // METHOD NAME : Product::Product
61  // METHOD TYPE : Ctor
62  //
63  Product::Product( const sat::Solvable & solvable_r )
64  : ResObject( solvable_r )
65  {}
66 
68  //
69  // METHOD NAME : Product::~Product
70  // METHOD TYPE : Dtor
71  //
73  {}
74 
76 
78  {
79  // Look for a provider of 'product(name) = version' of same
80  // architecture and within the same repo.
81  //
82  // bnc #497696: Update repos may have multiple release package versions
83  // providing the same product. As a workaround we link to the one with
84  // the highest version.
85  Capability identCap( str::form( "product(%s) = %s", name().c_str(), edition().c_str() ) );
86 
87  sat::Solvable found;
88  sat::WhatProvides providers( identCap );
89  for_( it, providers.begin(), providers.end() )
90  {
91  if ( it->repository() == repository()
92  && it->arch() == arch() )
93  {
94  if ( ! found || found.edition() < it->edition() )
95  found = *it;
96  }
97  }
98 
99  if ( ! found && isSystem() )
100  {
101  // bnc#784900: for installed products check whether the file is owned by
102  // some package. If so, ust this as buddy.
104  std::string refFile( referenceFilename() );
105  if ( ! refFile.empty() )
106  {
107  StrMatcher matcher( referenceFilename() );
108  q.setStrMatcher( matcher );
109  if ( ! q.empty() )
110  found = q.begin().inSolvable();
111  }
112  else
113  INT << "Product referenceFilename unexpectedly empty!" << endl;
114  }
115 
116  if ( ! found )
117  WAR << *this << ": no reference package found: " << identCap << endl;
118  return found;
119  }
120 
121  std::string Product::referenceFilename() const
123 
125  {
126  std::vector<constPtr> ret;
127  // By now we simply collect what is obsoleted by the Product,
128  // or by the products buddy (release-package).
129 
130  // Check our own dependencies. We should not have any,
131  // but just to be shure.
132  sat::WhatObsoletes obsoleting( satSolvable() );
133  for_( it, obsoleting.begin(), obsoleting.end() )
134  {
135  if ( it->isKind( ResKind::product ) )
136  ret.push_back( make<Product>( *it ) );
137  }
138 
139  // If we have a buddy, we check what product buddies the
140  // buddy replaces.
141  obsoleting = sat::WhatObsoletes( poolItem().buddy() );
142  for_( it, obsoleting.poolItemBegin(), obsoleting.poolItemEnd() )
143  {
144  if ( (*it).buddy().isKind( ResKind::product ) )
145  ret.push_back( make<Product>( (*it).buddy() ) );
146  }
147  return ret;
148  }
149 
151  { return poolItem().buddy().valuesOfNamespace( "weakremover" ); }
152 
153  std::string Product::productLine() const
155 
157 
158  std::string Product::shortName() const
159  {
161  if ( ret.empty() ) ret = name();
162  return ret;
163 
164  }
165 
166  std::string Product::flavor() const
167  {
168  // Look for a provider of 'product_flavor(name) = version'
169  // within the same repo. Unlike the reference package, we
170  // can be relaxed and ignore the architecture.
171  Capability identCap( str::form( "product_flavor(%s) = %s", name().c_str(), edition().c_str() ) );
172 
173  sat::WhatProvides providers( identCap );
174  for_( it, providers.begin(), providers.end() )
175  {
176  if ( it->repository() == repository() )
177  {
178  // Got the package now try to get the provided 'flavor(...)'
179  Capabilities provides( it->provides() );
180  for_( cap, provides.begin(), provides.end() )
181  {
182  std::string capstr( cap->asString() );
183  if ( str::hasPrefix( capstr, "flavor(" ) )
184  {
185  capstr = str::stripPrefix( capstr, "flavor(" );
186  capstr.erase( capstr.size()-1 ); // trailing ')'
187  return capstr;
188  }
189  }
190  }
191  }
192  return std::string();
193  }
194 
195  std::string Product::type() const
197 
198  std::list<std::string> Product::flags() const
199  {
200  std::list<std::string> ret;
201  fillList( ret, satSolvable(), sat::SolvAttr::productFlags );
202  return ret;
203  }
204 
207 
208  std::vector<Repository::ContentIdentifier> Product::updateContentIdentifier() const
209  {
210  std::vector<Repository::ContentIdentifier> ret;
212  if ( ! q.empty() )
213  {
214  ret.reserve( 2 );
215  for_( it, q.begin(), q.end() )
216  ret.push_back( it.asString() );
217  }
218  return ret;
219  }
220 
222  {
224  for_( it, q.begin(), q.end() )
225  {
226  if ( it.asString() == cident_r )
227  return true;
228  }
229  return false;
230  }
231 
233  { return isSystem() && lookupStrAttribute( sat::SolvAttr::productType ) == "base"; }
234 
235  std::string Product::registerTarget() const
237 
238  std::string Product::registerRelease() const
240 
241  std::string Product::registerFlavor() const
243 
245 
246  Product::UrlList Product::urls( const std::string & key_r ) const
247  {
248  UrlList ret;
249 
252 
253  sat::LookupAttr::iterator url_it(url.begin());
254  sat::LookupAttr::iterator url_type_it(url_type.begin());
255 
256  for (;url_it != url.end(); ++url_it, ++url_type_it)
257  {
258  /* safety checks, shouldn't happen (tm) */
259  if (url_type_it == url_type.end())
260  {
261  ERR << *this << " : The thing that should not happen, happened." << endl;
262  break;
263  }
264 
265  if ( url_type_it.asString() == key_r )
266  {
267  ret._list.push_back(url_it.asString());
268  }
269  } /* while (attribute array) */
270 
271  return ret;
272  }
273 
274  Product::UrlList Product::releaseNotesUrls() const { return urls( "releasenotes" ); }
275  Product::UrlList Product::registerUrls() const { return urls( "register" ); }
276  Product::UrlList Product::smoltUrls() const { return urls( "smolt" ); }
277  Product::UrlList Product::updateUrls() const { return urls( "update" ); }
278  Product::UrlList Product::extraUrls() const { return urls( "extra" ); }
279  Product::UrlList Product::optionalUrls() const { return urls( "optional" ); }
280 
281  std::ostream & operator<<( std::ostream & str, const Product::UrlList & obj )
282  { return dumpRange( str << obj.key() << ' ', obj.begin(), obj.end() ); }
283 
285 } // namespace zypp
static const SolvAttr productFlags
Definition: SolvAttr.h:148
Product(const sat::Solvable &solvable_r)
Ctor.
Definition: Product.cc:63
bool isSystem() const
Whether this represents an installed solvable.
Definition: Resolvable.h:53
static const SolvAttr productUpdates
array of repoids, hopefully label s too
Definition: SolvAttr.h:155
const_iterator end() const
Definition: Product.h:212
A Solvable object within the sat Pool.
Definition: Solvable.h:55
Container of Solvable providing a Capability (read only).
Definition: WhatProvides.h:87
UrlList releaseNotesUrls() const
The URL to download the release notes for this product.
Definition: Product.cc:274
Container of Capability (currently read only).
Definition: Capabilities.h:35
Helper to iterate a products URL lists.
Definition: Product.h:192
std::string stripPrefix(const C_Str &str_r, const C_Str &prefix_r)
Strip a prefix_r from str_r and return the resulting string.
Definition: String.h:990
Repository repository() const
Definition: ResObject.h:184
String matching (STRING|SUBSTRING|GLOB|REGEX).
Definition: StrMatcher.h:297
Lightweight attribute value lookup.
Definition: LookupAttr.h:111
std::string key() const
The key used to retrieve this list (for debug)
Definition: Product.h:221
Arch arch() const
Definition: Resolvable.h:79
#define INT
Definition: Logger.h:68
std::string lookupStrAttribute(const SolvAttr &attr) const
returns the string attribute value for attr or an empty string if it does not exists.
Definition: Solvable.cc:144
Capabilities provides() const
Definition: Resolvable.h:100
static const SolvAttr productRegisterRelease
Definition: SolvAttr.h:151
UrlList registerUrls() const
The URL for registration.
Definition: Product.cc:275
UrlList optionalUrls() const
Optional software for the product.
Definition: Product.cc:279
static const SolvAttr productEndOfLife
Definition: SolvAttr.h:149
String related utilities and Regular expression matching.
static const SolvAttr productProductLine
Definition: SolvAttr.h:143
static const SolvAttr productUrlType
Definition: SolvAttr.h:154
const_iterator begin() const
Definition: Product.h:209
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:27
Date endOfLife() const
The date when this Product goes out of support as indicated by it's medadata.
Definition: Product.cc:205
UrlList extraUrls() const
Additional software for the product They are complementary, not alternatives.
Definition: Product.cc:278
CapabilitySet valuesOfNamespace(const std::string &namespace_r) const
Return 'value[ op edition]' for namespaced provides 'namespace(value)[ op edition]'.
Definition: Solvable.cc:451
std::string form(const char *format,...) __attribute__((format(printf
Printf style construction of std::string.
Definition: String.cc:36
std::string registerRelease() const
This is register.release attribute of an installed product.
Definition: Product.cc:238
std::tr1::unordered_set< Capability > CapabilitySet
Definition: Capability.h:33
#define ERR
Definition: Logger.h:66
std::string registerFlavor() const
This is register.flavor attribute of a product.
Definition: Product.cc:241
static const SolvAttr productRegisterTarget
Definition: SolvAttr.h:150
std::string name() const
Definition: Resolvable.h:73
Store and operate on date (time_t).
Definition: Date.h:32
std::ostream & dumpRange(std::ostream &str, _Iterator begin, _Iterator end, const std::string &intro="{", const std::string &pfx="\n ", const std::string &sep="\n ", const std::string &sfx="\n", const std::string &extro="}")
Print range defined by iterators (multiline style).
Definition: LogTools.h:91
iterator end() const
Iterator behind the end of query results.
Definition: LookupAttr.cc:239
const_iterator begin() const
Iterator pointing to the first Solvable.
std::ostream & operator<<(std::ostream &str, const Exception &obj)
Definition: Exception.cc:120
std::string flavor() const
The product flavor (LiveCD Demo, FTP edition,...).
Definition: Product.cc:166
const_iterator end() const
Iterator pointing behind the last Solvable.
Definition: WhatProvides.h:226
PoolItem_iterator poolItemEnd() const
Solvable inSolvable() const
The current Solvable.
Definition: LookupAttr.cc:354
static const SolvAttr productRegisterFlavor
Definition: SolvAttr.h:152
PoolItem poolItem() const
Access the corresponding PoolItem.
Definition: Resolvable.cc:44
const sat::Solvable & satSolvable() const
Access the corresponding ::Solvable.
Definition: Resolvable.h:136
#define WAR
Definition: Logger.h:65
IMPL_PTR_TYPE(Application)
const_iterator begin() const
Iterator pointing to the first Solvable.
Definition: WhatObsoletes.h:83
static const SolvAttr productType
Definition: SolvAttr.h:147
unsigned long long lookupNumAttribute(const SolvAttr &attr) const
returns the numeric attribute value for attr or 0 if it does not exists.
Definition: Solvable.cc:170
PoolItem_iterator poolItemBegin() const
void setStrMatcher(const StrMatcher &matcher_r)
Set the pattern to match.
Definition: LookupAttr.cc:205
sat::Solvable referencePackage() const
The reference package providing the product metadata, if such a package exists.
Definition: Product.cc:77
zypp::Url url
Definition: MediaCurl.cc:193
Interface base for resolvable objects (common data).
Definition: ResObject.h:44
std::vector< Repository::ContentIdentifier > updateContentIdentifier() const
ContentIdentifier of required update repositories.
Definition: Product.cc:208
std::string type() const
Get the product type Well, in an ideal world there is only one base product.
Definition: Product.cc:195
Container of installed Solvable which would be obsoleted by the Solvable passed to the ctor...
Definition: WhatObsoletes.h:36
UrlList updateUrls() const
Online updates for the product.
Definition: Product.cc:277
static const SolvAttr productUrl
Definition: SolvAttr.h:153
ReplacedProducts replacedProducts() const
Array of installed Products that would be replaced by installing this one.
Definition: Product.cc:124
bool empty() const
Whether the query is empty.
Definition: LookupAttr.cc:242
std::string ContentIdentifier
Definition: Repository.h:48
const_iterator end() const
Iterator pointing behind the last Capability.
Definition: Capabilities.h:165
std::vector< constPtr > ReplacedProducts
Definition: Product.h:73
std::string shortName() const
Untranslated short name like SLES 10 (fallback: name)
Definition: Product.cc:158
CapabilitySet droplist() const
List of packages included in older versions of this product and now dropped.
Definition: Product.cc:150
bool isTargetDistribution() const
This is the installed product that is also targeted by the /etc/products.d/baseproduct symlink...
Definition: Product.cc:232
sat::Solvable buddy() const
Return the buddy we share our status object with.
Definition: PoolItem.cc:247
std::string productLine() const
Vendor specific string denoting the product line.
Definition: Product.cc:153
static const SolvAttr productUpdatesRepoid
Definition: SolvAttr.h:156
A sat capability.
Definition: Capability.h:59
static const SolvAttr filelist
Definition: SolvAttr.h:99
std::string referenceFilename() const
For installed products the name of the coddesponding /etc/products.d entry.
Definition: Product.cc:121
std::list< std::string > flags() const
The product flags.
Definition: Product.cc:198
Edition edition() const
Definition: Resolvable.h:76
bool hasUpdateContentIdentifier(const Repository::ContentIdentifier &cident_r) const
Whether cident_r is listed as required update repository.
Definition: Product.cc:221
virtual ~Product()
Dtor.
Definition: Product.cc:72
std::string registerTarget() const
This is register.target attribute of a product.
Definition: Product.cc:235
static const ResKind product
Definition: ResKind.h:43
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
static const SolvAttr productReferenceFile
Definition: SolvAttr.h:142
bool hasPrefix(const C_Str &str_r, const C_Str &prefix_r)
Return whether str_r has prefix prefix_r.
Definition: String.h:986
UrlList urls(const std::string &key_r) const
Rerieve urls flagged with key_r for this product.
Definition: Product.cc:246
const_iterator begin() const
Iterator pointing to the first Capability.
Definition: Capabilities.h:162
Edition edition() const
Definition: Solvable.cc:336
static const SolvAttr productShortlabel
Definition: SolvAttr.h:144
const_iterator end() const
Iterator pointing behind the last Solvable.
Definition: WhatObsoletes.h:87
iterator begin() const
Iterator to the begin of query results.
Definition: LookupAttr.cc:236
UrlList smoltUrls() const
The URL for SMOLT.
Definition: Product.cc:276