d9a316861f384cb2321e4a4c40669b908f83943b
[platform/upstream/libzypp.git] / zypp / Product.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Product.cc
10  *
11 */
12 #include <iostream>
13 #include "zypp/base/LogTools.h"
14
15 #include "zypp/Product.h"
16 #include "zypp/Url.h"
17
18 #include "zypp/sat/LookupAttr.h"
19 #include "zypp/sat/WhatProvides.h"
20 #include "zypp/sat/WhatObsoletes.h"
21 #include "zypp/PoolItem.h"
22
23 using std::endl;
24
25 ///////////////////////////////////////////////////////////////////
26 namespace zypp
27 { /////////////////////////////////////////////////////////////////
28
29   IMPL_PTR_TYPE(Product);
30
31   namespace
32   {
33     void fillList( std::list<Url> & ret_r, sat::Solvable solv_r, sat::SolvAttr attr_r )
34     {
35       sat::LookupAttr query( attr_r, solv_r );
36       for_( it, query.begin(), query.end() )
37       {
38         try // ignore malformed urls
39         {
40           ret_r.push_back( Url( it.asString() ) );
41         }
42         catch( const url::UrlException & )
43         {}
44       }
45     }
46
47     void fillList( std::list<std::string> & ret_r, sat::Solvable solv_r, sat::SolvAttr attr_r )
48     {
49       sat::LookupAttr query( attr_r, solv_r );
50       for_( it, query.begin(), query.end() )
51       {
52         ret_r.push_back( it.asString() );
53       }
54     }
55   }
56
57   ///////////////////////////////////////////////////////////////////
58   //
59   //    METHOD NAME : Product::Product
60   //    METHOD TYPE : Ctor
61   //
62   Product::Product( const sat::Solvable & solvable_r )
63   : ResObject( solvable_r )
64   {}
65
66   ///////////////////////////////////////////////////////////////////
67   //
68   //    METHOD NAME : Product::~Product
69   //    METHOD TYPE : Dtor
70   //
71   Product::~Product()
72   {}
73
74   ///////////////////////////////////////////////////////////////////
75
76   sat::Solvable Product::referencePackage() const
77   {
78     // Look for a  provider of 'product(name) = version' of same
79     // architecture and within the same repo.
80     Capability identCap( str::form( "product(%s) = %s", name().c_str(), edition().c_str() ) );
81
82     sat::WhatProvides providers( identCap );
83     for_( it, providers.begin(), providers.end() )
84     {
85       if ( it->repository() == repository()
86            && it->arch() == arch() )
87         return *it;
88     }
89
90     WAR << *this << ": no reference package found: " << identCap << endl;
91     return sat::Solvable::noSolvable;
92   }
93
94   Product::ReplacedProducts Product::replacedProducts() const
95   {
96     std::vector<constPtr> ret;
97     // By now we simply collect what is obsoleted by the Product,
98     // or by the products buddy (release-package).
99
100     // Check our own dependencies. We should not have any,
101     // but just to be shure.
102     sat::WhatObsoletes obsoleting( satSolvable() );
103     for_( it, obsoleting.begin(), obsoleting.end() )
104     {
105       if ( it->isKind( ResKind::product ) )
106         ret.push_back( make<Product>( *it ) );
107     }
108
109     // If we have a buddy, we check what product buddies the
110     // buddy replaces.
111     obsoleting = sat::WhatObsoletes( poolItem().buddy() );
112     for_( it, obsoleting.poolItemBegin(), obsoleting.poolItemEnd() )
113     {
114       if ( (*it).buddy().isKind( ResKind::product ) )
115         ret.push_back( make<Product>( (*it).buddy() ) );
116     }
117
118     return ret;
119   }
120
121   ///////////////////////////////////////////////////////////////////
122
123   std::string Product::shortName() const
124   { return lookupStrAttribute( sat::SolvAttr::productShortlabel ); }
125
126   std::string Product::flavor() const
127   { return lookupStrAttribute( sat::SolvAttr::productFlavor ); }
128
129   std::string Product::type() const
130   { return lookupStrAttribute( sat::SolvAttr::productType ); }
131
132   std::list<std::string> Product::flags() const
133   {
134     std::list<std::string> ret;
135     fillList( ret, satSolvable(), sat::SolvAttr::productFlags );
136     return ret;
137   }
138
139   bool Product::isTargetDistribution() const
140   { return isSystem() && type() == "base"; }
141
142   std::string Product::registerTarget() const
143   { return lookupStrAttribute( sat::SolvAttr::productRegisterTarget ); }
144
145   std::string Product::registerRelease() const
146   { return lookupStrAttribute( sat::SolvAttr::productRegisterRelease ); }
147
148   /////////////////////////////////////////////////////////////////
149
150   Product::UrlList Product::urls( const std::string & key_r ) const
151   {
152     UrlList ret;
153
154     sat::LookupAttr url( sat::SolvAttr::productUrl, *this );
155     sat::LookupAttr url_type( sat::SolvAttr::productUrlType, *this );
156
157     sat::LookupAttr::iterator url_it(url.begin());
158     sat::LookupAttr::iterator url_type_it(url_type.begin());
159
160     for (;url_it != url.end(); ++url_it, ++url_type_it)
161     {
162         /* safety checks, shouldn't happen (tm) */
163         if (url_type_it == url_type.end())
164         {
165             /* FIXME: Raise exception ?! */
166             ERR << *this << " : The thing that should not happen, happened." << endl;
167             break;
168         }
169
170         if ( url_type_it.asString() == key_r )
171         {
172             ret._list.push_back(url_it.asString());
173         }
174     } /* while (attribute array) */
175
176     return ret;
177   }
178
179   Product::UrlList Product::releaseNotesUrls() const { return urls( "releasenotes" ); }
180   Product::UrlList Product::registerUrls()     const { return urls( "register" ); }
181   Product::UrlList Product::smoltUrls()        const { return urls( "smolt" ); }
182   Product::UrlList Product::updateUrls()       const { return urls( "update" ); }
183   Product::UrlList Product::extraUrls()        const { return urls( "extra" ); }
184   Product::UrlList Product::optionalUrls()     const { return urls( "optional" ); }
185
186   std::ostream & operator<<( std::ostream & str, const Product::UrlList & obj )
187   { return dumpRange( str << obj.key() << ' ', obj.begin(), obj.end() ); }
188
189   /////////////////////////////////////////////////////////////////
190 } // namespace zypp
191 ///////////////////////////////////////////////////////////////////