0f2a29166c2b3ceaacae52c9768d85b2599a3109
[platform/upstream/libzypp.git] / zypp / VendorAttr.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/VendorAttr.h
10  *
11 */
12 #ifndef ZYPP_VENDORATTR_H
13 #define ZYPP_VENDORATTR_H
14
15 #include <iosfwd>
16 #include <string>
17 #include <vector>
18
19 #include "zypp/PathInfo.h"
20 #include "zypp/Vendor.h"
21
22 ///////////////////////////////////////////////////////////////////
23 namespace zypp {
24 //////////////////////////////////////////////////////////////////
25
26   class PoolItem;
27   namespace sat
28   {
29     class Solvable;
30   }
31
32 /** Definition of vendor equivalence.
33  *
34  * Packages with equivalment vendor strings may replace themself without
35  * creating a solver error.
36  *
37  * Per default vendor strings starting with \c "suse" or \c "opensuse"
38  * are treated equivalent. This may be changed by providing customized
39  * vendor description files in \c /etc/zypp/vendors.d.
40  *
41  * \see \ref pg_zypp-solv-vendorchange
42 */
43 class VendorAttr
44 {
45   public:
46     typedef std::vector<std::string> VendorList;
47
48     /** Singleton */
49     static const VendorAttr & instance();
50
51     /**
52      * Adding new equivalent vendors described in a directory
53      **/
54     bool addVendorDirectory( const Pathname & dirname ) const;
55
56     /**
57      * Adding new equivalent vendors described in a file
58      **/
59     bool addVendorFile( const Pathname & filename ) const;
60
61     /**
62      * Adding new equivalent vendor set from list
63      **/
64     template <class _Iterator>
65     void addVendorList( _Iterator begin, _Iterator end ) const
66     { VendorList tmp( begin, end ); _addVendorList( tmp ); }
67
68     /** Return whether two vendor strings shold be treated as the same vendor.
69      * Usually the solver is allowed to automatically select a package of an
70      * equivalent vendor when updating. Replacing a package with one of a
71      * different vendor usually must be confirmed by the user.
72     */
73     bool equivalent( const Vendor & lVendor, const Vendor & rVendor ) const;
74     /** \overload using \ref IdStrings */
75     bool equivalent( IdString lVendor, IdString rVendor ) const;
76     /** \overload using \ref sat::Solvable */
77     bool equivalent( sat::Solvable lVendor, sat::Solvable rVendor ) const;
78     /** \overload using \ref PoolItem */
79     bool equivalent( const PoolItem & lVendor, const PoolItem & rVendor ) const;
80
81   private:
82     VendorAttr();
83     void _addVendorList( VendorList & ) const;
84 };
85
86 /** \relates VendorAttr Stream output */
87 std::ostream & operator<<( std::ostream & str, const VendorAttr & obj );
88
89 ///////////////////////////////////////////////////////////////////
90 }; // namespace zypp
91 ///////////////////////////////////////////////////////////////////
92
93 #endif // ZYPP_VENDORATTR_H