1 /*---------------------------------------------------------------------\
3 | |__ / \ / / . \ . \ |
8 \---------------------------------------------------------------------*/
17 #include "zypp/base/ReferenceCounted.h"
18 #include "zypp/base/NonCopyable.h"
19 #include "zypp/base/PtrTypes.h"
21 #include "zypp/base/Deprecated.h"
22 #include "zypp/ZYppCommit.h"
24 #include "zypp/Target.h"
25 #include "zypp/Resolver.h"
26 #include "zypp/KeyRing.h"
27 #include "zypp/DiskUsageCounter.h"
29 ///////////////////////////////////////////////////////////////////
31 { /////////////////////////////////////////////////////////////////
46 ///////////////////////////////////////////////////////////////////
51 * \todo define Exceptions
53 class ZYpp : public base::ReferenceCounted, private base::NonCopyable
57 typedef intrusive_ptr<ZYpp> Ptr;
58 typedef intrusive_ptr<const ZYpp> constPtr;
62 /** Pool of ResStatus for individual ResObjetcs. */
65 /** Pool of ui::Selectable.
66 * Based on the ResPool, ui::Selectable groups ResObjetcs of
69 ResPoolProxy poolProxy() const;
72 //SourceFeed_Ref sourceFeed() const;
74 void addResolvables (const ResStore& store, bool installed = false);
76 void removeResolvables (const ResStore& store);
78 DiskUsageCounter::MountPointSet diskUsage();
80 void setPartitions(const DiskUsageCounter::MountPointSet &mp);
86 Target_Ptr target() const;
90 * just init the target, dont populate store or pool
92 void initializeTarget(const Pathname & root);
96 * if commit_only == true, just init the target, dont populate store or pool
98 ZYPP_DEPRECATED void initTarget(const Pathname & root, bool commit_only = false);
107 typedef ZYppCommitResult CommitResult;
109 /** Commit changes and transactions.
110 * \param \ref CommitPolicy
111 * \return \ref CommitResult
114 ZYppCommitResult commit( const ZYppCommitPolicy & policy_r );
118 Resolver_Ptr resolver() const;
119 KeyRing_Ptr keyRing() const;
121 /** Set the preferd locale for translated labels, descriptions,
122 * etc. passed to the UI.
124 void setTextLocale( const Locale & textLocale_r );
126 Locale getTextLocale() const;
129 typedef std::set<Locale> LocaleSet;
130 /** Set the requested locales.
131 * Languages to be supported by the system, e.g. language specific
132 * packages to be installed. This function operates on the pool,
133 * so only the locales that are available as resolvables
134 * are marked as requested. The rest is ignored.
136 void setRequestedLocales( const LocaleSet & locales_r );
138 LocaleSet getRequestedLocales() const;
141 * Get the set of available locales.
142 * This is computed from the package data so it actually
143 * represents all locales packages claim to support.
145 LocaleSet getAvailableLocales() const;
150 void availableLocale( const Locale & locale_r );
153 /** Get the path where zypp related plugins store persistent data and caches */
154 Pathname homePath() const;
156 /** Get the path where zypp related plugins store temp data */
157 Pathname tmpPath() const;
159 /** set the home, if you need to change it */
160 void setHomePath( const Pathname & path );
162 /** Get the system architecture. */
163 Arch architecture() const;
164 /** Set the system architecture.
165 This should be used for testing/debugging only since the Target backend
166 won't be able to install incompatible packages ;-) */
167 void setArchitecture( const Arch & arch );
173 virtual std::ostream & dumpOn( std::ostream & str ) const;
176 friend class ZYppFactory;
179 typedef zypp_detail::ZYppImpl Impl;
180 typedef shared_ptr<Impl> Impl_Ptr;
183 ZYpp( const Impl_Ptr & impl_r );
185 /** Pointer to implementation */
186 RW_pointer<Impl> _pimpl;
188 ///////////////////////////////////////////////////////////////////
190 /////////////////////////////////////////////////////////////////
192 ///////////////////////////////////////////////////////////////////
193 #endif // ZYPP_ZYPP_H