libzypp 17.37.17
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
21namespace zypp
22{
24 namespace sat
25 {
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:
55 };
56
57 public:
58 using Queue::size_type;
60 using const_iterator = const value_type *;
61
62 using Queue::empty;
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
Access to the sat-pools string space.
Definition IdString.h:44
Libsolv queue representing file conflicts.
unsigned int size_type
Definition Queue.h:38
const value_type * const_iterator
bool operator!=(const FileConflicts &lhs, const FileConflicts &rhs)
const_iterator begin() const
static constexpr size_type queueBlockSize
const_iterator end() const
size_type size() const
friend bool operator==(const FileConflicts &lhs, const FileConflicts &rhs)
unsigned int size_type
Definition Queue.h:38
size_type size() const
Definition Queue.cc:49
const_iterator end() const
Definition Queue.cc:55
Queue()
Default ctor: empty Queue.
Definition Queue.cc:39
const_iterator begin() const
Definition Queue.cc:52
bool empty() const
Definition Queue.cc:46
A Solvable object within the sat Pool.
Definition Solvable.h:54
String related utilities and Regular expression matching.
int IdType
Generic Id type.
Definition PoolMember.h:104
::s_Queue CQueue
Wrapped libsolv C data type exposed as backdoor.
Definition PoolMember.h:62
Libsolv interface
std::ostream & operator<<(std::ostream &str, const FileConflicts &obj)
std::ostream & dumpAsXmlOn(std::ostream &str, const FileConflicts &obj)
Easy-to use interface to the ZYPP dependency resolver.
std::string asUserString(VendorSupportOption opt)
converts the support option to a name intended to be printed to the user.
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247
detail::IdType _data[queueBlockSize]