libzypp  17.24.1
OnMediaLocation.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #include <iostream>
13 //#include <zypp/base/Logger.h>
14 
15 #include <zypp/OnMediaLocation.h>
16 
17 using std::endl;
18 
20 namespace zypp
21 {
27  {
28  public:
29  Impl()
30  {}
31 
32  Impl( Pathname filename_r, unsigned medianr_r )
33  : _filename { std::move(filename_r) }
34  , _medianr { medianr_r }
35  {}
36 
38  unsigned _medianr = 0U;
39 
40  bool _optional = false;
41 
44 
47 
50 
51  public:
53  static shared_ptr<Impl> nullimpl()
54  { static shared_ptr<Impl> _nullimpl( new Impl ); return _nullimpl; }
55  private:
56  friend Impl * rwcowClone<Impl>( const Impl * rhs );
58  Impl * clone() const { return new Impl( *this ); }
59  };
60 
62  inline std::ostream & operator<<( std::ostream & str, const OnMediaLocation::Impl & obj )
63  { return str << "[" << obj._medianr << "]" << obj._filename << "{" << obj._downloadSize << "|" << obj._checksum << "}"; }
64 
66  inline std::ostream & dumpOn( std::ostream & str, const OnMediaLocation::Impl & obj )
67  { return str << obj; }
68 
70  // CLASS NAME : OnMediaLocation
72 
74  : _pimpl( Impl::nullimpl() )
75  {}
76 
77  OnMediaLocation::OnMediaLocation( Pathname filename_r, unsigned medianr_r )
78  : _pimpl( new Impl( std::move(filename_r), medianr_r ) )
79  {}
80 
82  {}
83 
84 
86  { return _pimpl->_filename; }
87 
88  unsigned OnMediaLocation::medianr() const
89  { return _pimpl->_medianr; }
90 
91  OnMediaLocation & OnMediaLocation::setLocation( Pathname filename_r, unsigned medianr_r )
92  { _pimpl->_filename = std::move(filename_r); _pimpl->_medianr = medianr_r; return *this; }
93 
95  { _pimpl->_filename = Pathname(); _pimpl->_medianr = 0; return *this; }
96 
98  { _pimpl->_filename = std::move(filename_r); return *this; }
99 
101  { _pimpl->_medianr = medianr_r; return *this; }
102 
104  { if ( ! prefix_r.emptyOrRoot() ) changeFilename( prefix_r / filename() ); return *this; }
105 
107  { return _pimpl->_optional; }
108 
110  { _pimpl->_optional = val_r; return *this; }
111 
113  { return _pimpl->_downloadSize; }
114 
116  { _pimpl->_downloadSize = val_r; return *this; }
117 
119  { return _pimpl->_checksum; }
120 
122  { _pimpl->_checksum = val_r; return *this; }
123 
125  { return _pimpl->_openSize; }
126 
128  { _pimpl->_openSize = val_r; return *this; }
129 
131  { return _pimpl->_openChecksum; }
132 
134  { _pimpl->_openChecksum = val_r; return *this; }
135 
137  { return _pimpl->_headerSize; }
138 
140  { _pimpl->_headerSize = val_r; return *this; }
141 
143  { return _pimpl->_headerChecksum; }
144 
146  { _pimpl->_headerChecksum = val_r; return *this; }
147 
148 
149  std::ostream & operator<<( std::ostream & str, const OnMediaLocation & obj )
150  { return str << *obj._pimpl; }
151 
152  std::ostream & dumpOn( std::ostream & str, const OnMediaLocation & obj )
153  { return dumpOn( str, *obj._pimpl ); }
154 
155 } // namespace zypp
OnMediaLocation & setOpenChecksum(CheckSum val_r)
Set the openChecksum.
OnMediaLocation & setHeaderChecksum(CheckSum val_r)
Set the headerChecksum.
const CheckSum & openChecksum() const
The checksum of the resource once it has been uncompressed or unpacked.
const ByteCount & headerSize() const
The size of the header prepending the resource (e.g.
OnMediaLocation implementation.
Describes a resource file located on a medium.
const ByteCount & openSize() const
The size of the resource once it has been uncompressed or unpacked.
Impl(Pathname filename_r, unsigned medianr_r)
OnMediaLocation & prependPath(const Pathname &prefix_r)
Prepend the filename with prefix_r.
Store and operate with byte count.
Definition: ByteCount.h:30
String related utilities and Regular expression matching.
Impl * clone() const
clone for RWCOW_pointer
OnMediaLocation & setChecksum(CheckSum val_r)
Set the checksum.
Definition: Arch.h:347
const CheckSum & checksum() const
The checksum of the resource on the server.
static shared_ptr< Impl > nullimpl()
Offer default Impl.
unsigned medianr() const
The media number the resource is located on.
bool emptyOrRoot() const
Test for "" or "/".
Definition: Pathname.h:121
OnMediaLocation & setOpenSize(ByteCount val_r)
Set the openSize.
std::ostream & operator<<(std::ostream &str, const Exception &obj)
Definition: Exception.cc:147
const ByteCount & downloadSize() const
The size of the resource on the server.
OnMediaLocation & setHeaderSize(ByteCount val_r)
Set the headerSize.
std::ostream & dumpOn(std::ostream &str, const OnMediaLocation::Impl &obj)
std::ostream & dumpOn(std::ostream &str, const Capability &obj)
Definition: Capability.cc:444
OnMediaLocation & setLocation(Pathname filename_r, unsigned medianr_r=1)
Set filename_r and medianr_r (defaults to 1).
const Pathname & filename() const
The path to the resource on the medium.
OnMediaLocation()
Default Ctor indicating no media access.
std::ostream & operator<<(std::ostream &str, const OnMediaLocation::Impl &obj)
OnMediaLocation & changeMedianr(unsigned medianr_r)
Individual manipulation of medianr (prefer setLocation).
OnMediaLocation & setDownloadSize(ByteCount val_r)
Set the downloadSize.
OnMediaLocation & changeFilename(Pathname filename_r)
Individual manipulation of filename (prefer setLocation).
RWCOW_pointer< Impl > _pimpl
Implementation class.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
OnMediaLocation & setOptional(bool val)
Set whether the resource is optional.
bool optional() const
Whether this is an optional resource.
const CheckSum & headerChecksum() const
The checksum of the header prepending the resource (e.g.
OnMediaLocation & unsetLocation()
Unset filename and set medianr to 0.