libzypp 17.31.23
DownloadMode.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#include <iostream>
13
14#include <zypp/base/String.h>
15#include <zypp/DownloadMode.h>
16
17using std::endl;
18
20namespace zypp
21{
22
23 bool deserialize( const std::string & str_r, DownloadMode & result_r )
24 {
25#define OUTS(VAL) if ( str::compareCI( str_r, #VAL ) == 0 ) { result_r = VAL; return true; }
30#undef OUTS
31 return false;
32 }
33
34 std::ostream & operator<<( std::ostream & str, DownloadMode obj )
35 {
36 switch ( obj )
37 {
38#define OUTS(VAL) case VAL: return str << #VAL; break
44#undef OUTS
45 }
46 return str << "DownloadMode(" << int(obj) << ")";
47 }
48
49
51} // namespace zypp
#define OUTS(V)
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
Definition: SerialNumber.cc:52
bool deserialize(const std::string &str_r, DownloadMode &result_r)
Definition: DownloadMode.cc:23
DownloadMode
Supported commit download policies.
Definition: DownloadMode.h:23
@ DownloadInHeaps
Similar to DownloadInAdvance, but try to split the transaction into heaps, where at the end of each h...
Definition: DownloadMode.h:29
@ DownloadOnly
Just download all packages to the local cache.
Definition: DownloadMode.h:25
@ DownloadAsNeeded
Alternating download and install.
Definition: DownloadMode.h:32
@ DownloadInAdvance
First download all packages to the local cache.
Definition: DownloadMode.h:27
@ DownloadDefault
libzypp will decide what to do.
Definition: DownloadMode.h:24