1 /*---------------------------------------------------------------------\
3 | |__ / \ / / . \ . \ |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Target.cc
16 #include "zypp/Target.h"
17 #include "zypp/target/TargetImpl.h"
21 ///////////////////////////////////////////////////////////////////
23 { /////////////////////////////////////////////////////////////////
25 IMPL_PTR_TYPE(Target);
27 ///////////////////////////////////////////////////////////////////
29 // METHOD NAME : Target::Target
32 Target::Target( const Pathname & root, bool doRebuild_r )
33 : _pimpl( new Impl(root,doRebuild_r) )
37 ///////////////////////////////////////////////////////////////////
39 // METHOD NAME : Target::Target
42 Target::Target( const Impl_Ptr & impl_r )
48 Target_Ptr Target::_nullimpl;
50 /** Null implementation */
51 Target_Ptr Target::nullimpl()
55 _nullimpl = new Target(target::TargetImpl::nullimpl());
61 ///////////////////////////////////////////////////////////////////
63 // Forward to TargetImpl:
65 ///////////////////////////////////////////////////////////////////
67 void Target::buildCache()
68 { _pimpl->buildCache(); }
76 target::rpm::RpmDb & Target::rpmDb()
77 { return _pimpl->rpm(); }
79 Pathname Target::root() const
80 { return _pimpl->root(); }
82 bool Target::providesFile (const std::string & name_str, const std::string & path_str) const
83 { return _pimpl->providesFile (name_str, path_str); }
85 std::string Target::whoOwnsFile (const std::string & path_str) const
86 { return _pimpl->whoOwnsFile (path_str); }
88 std::ostream & Target::dumpOn( std::ostream & str ) const
89 { return _pimpl->dumpOn( str ); }
91 bool Target::setInstallationLogfile(const Pathname & path_r)
92 { return _pimpl->setInstallationLogfile(path_r); }
94 Date Target::timestamp() const
95 { return _pimpl->timestamp(); }
97 std::string Target::release() const
98 { return _pimpl->release(); }
100 /////////////////////////////////////////////////////////////////
102 ///////////////////////////////////////////////////////////////////