libzypp 17.35.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 <utility>
16#include <zypp-core/OnMediaLocation>
17
18using std::endl;
19
21namespace zypp
22{
28 {
29 public:
31 {}
32
34 : _filename { std::move(filename_r) }
36 {}
37
39 unsigned _medianr = 0U;
40
41 bool _optional = false;
42
45
48
51
53
54 public:
57 { static shared_ptr<Impl> _nullimpl( new Impl ); return _nullimpl; }
58 private:
59 friend Impl * rwcowClone<Impl>( const Impl * rhs );
61 Impl * clone() const { return new Impl( *this ); }
62 };
63
65 inline std::ostream & operator<<( std::ostream & str, const OnMediaLocation::Impl & obj )
66 { return str << "[" << obj._medianr << "]" << obj._filename << "{" << obj._downloadSize << "|" << obj._checksum << "|" << obj._deltafile << "}"; }
67
69 inline std::ostream & dumpOn( std::ostream & str, const OnMediaLocation::Impl & obj )
70 { return str << obj; }
71
73 // CLASS NAME : OnMediaLocation
75
77 : _pimpl( Impl::nullimpl() )
78 {}
79
83
86
87
89 { return _pimpl->_filename; }
90
91 unsigned OnMediaLocation::medianr() const
92 { return _pimpl->_medianr; }
93
95 { _pimpl->_filename = std::move(filename_r); _pimpl->_medianr = medianr_r; return *this; }
96
98 { _pimpl->_filename = Pathname(); _pimpl->_medianr = 0; return *this; }
99
101 { _pimpl->_filename = std::move(filename_r); return *this; }
102
104 { _pimpl->_medianr = medianr_r; return *this; }
105
107 { if ( ! prefix_r.emptyOrRoot() ) changeFilename( prefix_r / filename() ); return *this; }
108
110 { return _pimpl->_optional; }
111
113 { _pimpl->_optional = val_r; return *this; }
114
116 { return _pimpl->_downloadSize; }
117
119 { _pimpl->_downloadSize = val_r; return *this; }
120
122 { return _pimpl->_checksum; }
123
125 { _pimpl->_checksum = std::move(val_r); return *this; }
126
128 { return _pimpl->_openSize; }
129
131 { _pimpl->_openSize = val_r; return *this; }
132
134 { return _pimpl->_openChecksum; }
135
137 { _pimpl->_openChecksum = std::move(val_r); return *this; }
138
140 { return _pimpl->_headerSize; }
141
143 { _pimpl->_headerSize = val_r; return *this; }
144
146 { return _pimpl->_headerChecksum; }
147
149 { _pimpl->_headerChecksum = std::move(val_r); return *this; }
150
152 { return _pimpl->_deltafile; }
153
155 { _pimpl->_deltafile = std::move(path); return *this; }
156
157 std::ostream & operator<<( std::ostream & str, const OnMediaLocation & obj )
158 { return str << *obj._pimpl; }
159
160 std::ostream & dumpOn( std::ostream & str, const OnMediaLocation & obj )
161 { return dumpOn( str, *obj._pimpl ); }
162
163} // namespace zypp
Reference counted access to a Tp object calling a custom Dispose function when the last AutoDispose h...
Definition AutoDispose.h:95
shared_ptr< Impl > _pimpl
Store and operate with byte count.
Definition ByteCount.h:32
OnMediaLocation implementation.
std::ostream & dumpOn(std::ostream &str, const OnMediaLocation::Impl &obj)
Verbose stream output.
Impl * clone() const
clone for RWCOW_pointer
Impl(Pathname filename_r, unsigned medianr_r)
std::ostream & operator<<(std::ostream &str, const OnMediaLocation::Impl &obj)
Stream output.
static shared_ptr< Impl > nullimpl()
Offer default Impl.
Describes a resource file located on a medium.
bool optional() const
Whether this is an optional resource.
const ByteCount & downloadSize() const
The size of the resource on the server.
OnMediaLocation & setDownloadSize(ByteCount val_r)
Set the downloadSize.
const Pathname & filename() const
The path to the resource on the medium.
OnMediaLocation & setOpenSize(ByteCount val_r)
Set the openSize.
OnMediaLocation & changeMedianr(unsigned medianr_r)
Individual manipulation of medianr (prefer setLocation).
const ByteCount & openSize() const
The size of the resource once it has been uncompressed or unpacked.
const Pathname & deltafile() const
The existing deltafile that can be used to reduce download size ( zchunk or metalink )
const ByteCount & headerSize() const
The size of the header prepending the resource (e.g.
OnMediaLocation & setChecksum(CheckSum val_r)
Set the checksum.
unsigned medianr() const
The media number the resource is located on.
const CheckSum & headerChecksum() const
The checksum of the header prepending the resource (e.g.
OnMediaLocation & changeFilename(Pathname filename_r)
Individual manipulation of filename (prefer setLocation).
RWCOW_pointer< Impl > _pimpl
Implementation class.
OnMediaLocation & setHeaderSize(ByteCount val_r)
Set the headerSize.
const CheckSum & checksum() const
The checksum of the resource on the server.
OnMediaLocation()
Default Ctor indicating no media access.
OnMediaLocation & prependPath(const Pathname &prefix_r)
Prepend the filename with prefix_r.
const CheckSum & openChecksum() const
The checksum of the resource once it has been uncompressed or unpacked.
OnMediaLocation & unsetLocation()
Unset filename and set medianr to 0.
OnMediaLocation & setLocation(Pathname filename_r, unsigned medianr_r=1)
Set filename_r and medianr_r (defaults to 1).
OnMediaLocation & setOpenChecksum(CheckSum val_r)
Set the openChecksum.
OnMediaLocation & setHeaderChecksum(CheckSum val_r)
Set the headerChecksum.
OnMediaLocation & setOptional(bool val)
Set whether the resource is optional.
OnMediaLocation & setDeltafile(Pathname path)
Set the deltafile.
Definition Arch.h:364
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & dumpOn(std::ostream &str, const Capability &obj)
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)