libzypp 17.37.17
PoolItem.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_POOLITEM_H
13#define ZYPP_POOLITEM_H
14
15#include <iosfwd>
16#include <functional>
17
18#include <zypp/base/PtrTypes.h>
19#include <zypp/ResObject.h>
20
22#include <zypp/ResStatus.h>
23
25namespace zypp
26{
27 class ResPool;
28 namespace pool
29 {
30 class PoolImpl;
31 }
50 class ZYPP_API PoolItem : public sat::SolvableType<PoolItem>
51 {
52 friend std::ostream & operator<<( std::ostream & str, const PoolItem & obj );
53 public:
55 PoolItem();
56
58 explicit PoolItem( const sat::Solvable & solvable_r );
59
61 template <class Derived>
62 explicit PoolItem( const SolvableType<Derived> & solvable_r )
63 : PoolItem( solvable_r.satSolvable() )
64 {}
65
67 explicit PoolItem( const ResObject::constPtr & resolvable_r );
68
70 ~PoolItem();
71
72 public:
75
76 ResStatus & status() const;
77
79 ResStatus & statusReset() const;
80
85 ResStatus & statusReinit() const;
87
88
93
94 bool isUndetermined() const;
95
99 bool isRelevant() const;
100
102 bool isSatisfied() const;
103
105 bool isBroken() const;
106
110 bool isNeeded() const;
111
113 bool isUnwanted() const;
115
116 public:
118 ResPool pool() const;
119
121 explicit operator sat::Solvable() const
122 { return resolvable() ? resolvable()->satSolvable() : sat::Solvable::noSolvable; }
123
127 sat::Solvable buddy() const;
128
129 public:
133 ResObject::constPtr resolvable() const;
134
138 operator ResObject::constPtr() const
139 { return resolvable(); }
140
143 { return resolvable(); }
144
145 private:
146 friend class pool::PoolImpl;
148 static PoolItem makePoolItem( const sat::Solvable & solvable_r );
150 void setBuddy( const sat::Solvable & solv_r );
152 public:
153 struct Impl;
154 private:
155 explicit PoolItem( Impl * implptr_r );
158
159 private:
163 friend struct PoolItemSaver;
164 void saveState() const;
165 void restoreState() const;
166 bool sameState() const;
168 };
169
170
172 std::ostream & operator<<( std::ostream & str, const PoolItem & obj ) ZYPP_API;
173
175 inline bool operator==( const PoolItem & lhs, const PoolItem & rhs )
176 { return lhs.resolvable() == rhs.resolvable(); }
177
179 inline bool operator==( const PoolItem & lhs, const ResObject::constPtr & rhs )
180 { return lhs.resolvable() == rhs; }
181
183 inline bool operator==( const ResObject::constPtr & lhs, const PoolItem & rhs )
184 { return lhs == rhs.resolvable(); }
185
186
188 inline bool operator!=( const PoolItem & lhs, const PoolItem & rhs )
189 { return ! (lhs==rhs); }
190
192 inline bool operator!=( const PoolItem & lhs, const ResObject::constPtr & rhs )
193 { return ! (lhs==rhs); }
194
196 inline bool operator!=( const ResObject::constPtr & lhs, const PoolItem & rhs )
197 { return ! (lhs==rhs); }
198
204 {
206
207 PoolItem operator()( const sat::Solvable & solv_r ) const
208 { return PoolItem( solv_r ); }
209 };
210
211} // namespace zypp
213#endif // ZYPP_POOLITEM_H
Combining sat::Solvable and ResStatus.
Definition PoolItem.h:51
bool operator==(const PoolItem &lhs, const ResObject::constPtr &rhs)
Convenience compare.
Definition PoolItem.h:179
bool operator!=(const ResObject::constPtr &lhs, const PoolItem &rhs)
Convenience compare.
Definition PoolItem.h:196
void restoreState() const
Definition PoolItem.cc:225
friend struct PoolItemSaver
Definition PoolItem.h:163
void saveState() const
Definition PoolItem.cc:224
ResObject::constPtr resolvable() const
Returns the ResObject::constPtr.
Definition PoolItem.cc:227
bool sameState() const
Definition PoolItem.cc:226
bool operator!=(const PoolItem &lhs, const ResObject::constPtr &rhs)
Convenience compare.
Definition PoolItem.h:192
void setBuddy(const sat::Solvable &solv_r)
Buddies are set by pool::PoolImpl.
Definition PoolItem.cc:216
PoolItem(const SolvableType< Derived > &solvable_r)
Ctor looking up the sat::Solvable in the ResPool.
Definition PoolItem.h:62
bool operator==(const PoolItem &lhs, const PoolItem &rhs)
Required to disambiguate vs.
Definition PoolItem.h:175
static PoolItem makePoolItem(const sat::Solvable &solvable_r)
PoolItem generator for pool::PoolImpl.
Definition PoolItem.cc:200
PoolItem()
Default ctor for use in std::container.
Definition PoolItem.cc:184
RW_pointer< Impl > _pimpl
Pointer to implementation.
Definition PoolItem.h:157
ResObject::constPtr operator->() const
Forward -> access to ResObject.
Definition PoolItem.h:142
bool operator==(const ResObject::constPtr &lhs, const PoolItem &rhs)
Convenience compare.
Definition PoolItem.h:183
bool operator!=(const PoolItem &lhs, const PoolItem &rhs)
Required to disambiguate vs.
Definition PoolItem.h:188
TraitsType::constPtrType constPtr
Definition ResObject.h:43
Global ResObject pool.
Definition ResPool.h:62
Status bitfield.
Definition ResStatus.h:55
A Solvable object within the sat Pool.
Definition Solvable.h:54
static const Solvable noSolvable
Represents no Solvable.
Definition Solvable.h:80
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247
PoolItem implementation.
Definition PoolItem.cc:39
Wrapper for const correct access via Smart pointer types.
Definition PtrTypes.h:293
Solvable to PoolItem transform functor.
Definition PoolItem.h:204
PoolItem operator()(const sat::Solvable &solv_r) const
Definition PoolItem.h:207
PoolItem result_type
Definition PoolItem.h:205
Base class for creating Solvable based types.