libzypp  17.35.11
FileConflicts.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
11 #ifndef ZYPP_SAT_FILECONFLICTS_H
12 #define ZYPP_SAT_FILECONFLICTS_H
13 
14 #include <iosfwd>
15 
16 #include <zypp/base/PtrTypes.h>
17 #include <zypp/sat/Queue.h>
18 #include <zypp/sat/Solvable.h>
19 
21 namespace zypp
22 {
24  namespace sat
25  {
30  class ZYPP_API FileConflicts : private Queue
31  {
32  friend bool operator==( const FileConflicts & lhs, const FileConflicts & rhs );
33  static constexpr size_type queueBlockSize = 6;
34 
35  public:
40  struct Conflict
41  {
42  IdString lhsFilename() const { return IdString( _data[0] ); }
43  Solvable lhsSolvable() const { return Solvable( _data[1] ); }
44  IdString lhsFilemd5() const { return IdString( _data[2] ); }
45 
46  IdString rhsFilename() const { return IdString( _data[3] ); }
47  Solvable rhsSolvable() const { return Solvable( _data[4] ); }
48  IdString rhsFilemd5() const { return IdString( _data[5] ); }
49 
51  std::string asUserString() const;
52 
53  private:
54  detail::IdType _data[queueBlockSize];
55  };
56 
57  public:
58  using Queue::size_type;
60  using const_iterator = const value_type *;
61 
62  using Queue::empty;
63  size_type size() const { return Queue::size()/queueBlockSize; }
64  const_iterator begin() const { return reinterpret_cast<const_iterator>(Queue::begin()); }
65  const_iterator end() const { return reinterpret_cast<const_iterator>(Queue::end()); }
66 
67  public:
68  using Queue::operator detail::CQueue *;
69  using Queue::operator const detail::CQueue *;
70  };
71 
73  std::ostream & operator<<( std::ostream & str, const FileConflicts & obj ) ZYPP_API;
74 
76  std::ostream & operator<<( std::ostream & str, const FileConflicts::Conflict & obj ) ZYPP_API;
77 
79  std::ostream & dumpAsXmlOn( std::ostream & str, const FileConflicts & obj ) ZYPP_API;
80 
82  std::ostream & dumpAsXmlOn( std::ostream & str, const FileConflicts::Conflict & obj ) ZYPP_API;
83 
85  inline bool operator==( const FileConflicts & lhs, const FileConflicts & rhs )
86  { return static_cast<const Queue &>(lhs) == static_cast<const Queue &>(rhs); }
87 
89  inline bool operator!=( const FileConflicts & lhs, const FileConflicts & rhs )
90  { return !( lhs == rhs ); }
91 
92  } // namespace sat
94 } // namespace zypp
96 #endif // ZYPP_SAT_FILECONFLICTS_H
bool empty() const
Definition: Queue.cc:46
const_iterator end() const
Definition: FileConflicts.h:65
A Solvable object within the sat Pool.
Definition: Solvable.h:53
bool operator==(const Map &lhs, const Map &rhs)
Definition: Map.cc:125
std::ostream & operator<<(std::ostream &str, const FileConflicts &obj)
bool operator==(const FileConflicts &lhs, const FileConflicts &rhs)
Definition: FileConflicts.h:85
String related utilities and Regular expression matching.
int IdType
Generic Id type.
Definition: PoolMember.h:104
Access to the sat-pools string space.
Definition: IdString.h:43
const_iterator begin() const
Definition: FileConflicts.h:64
size_type size() const
Definition: FileConflicts.h:63
std::string asUserString(VendorSupportOption opt)
converts the support option to a name intended to be printed to the user.
Libsolv queue representing file conflicts.
Definition: FileConflicts.h:30
const_iterator begin() const
Definition: Queue.cc:52
unsigned int size_type
Definition: Queue.h:38
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition: ResTraits.h:93
size_type size() const
Definition: Queue.cc:49
Libsolv Id queue wrapper.
Definition: Queue.h:35
::s_Queue CQueue
Wrapped libsolv C data type exposed as backdoor.
Definition: PoolMember.h:62
std::ostream & dumpAsXmlOn(std::ostream &str, const FileConflicts &obj)
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19
SolvableIdType size_type
Definition: PoolMember.h:126
zypp::IdString IdString
Definition: idstring.h:16
const_iterator end() const
Definition: Queue.cc:55
bool operator!=(const FileConflicts &lhs, const FileConflicts &rhs)
Definition: FileConflicts.h:89