libzypp 17.31.23
RepoIndex.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#include <iostream>
13#include <zypp/base/LogTools.h>
14
16
17using std::endl;
18#undef ZYPP_BASE_LOGGER_LOGGROUP
19#define ZYPP_BASE_LOGGER_LOGGROUP "parser::susetags"
20
22namespace zypp
23{
25 namespace parser
26 {
28 namespace susetags
29 {
30
32
33 std::ostream & RepoIndex::dumpOn( std::ostream & str ) const
34 {
35 return str
36 << "RepoIndex checksums: META files " << metaFileChecksums.size()
37 << ", HASH files " << mediaFileChecksums.size()
38 << ", KEY files " << signingKeys.size();
39 }
40
42 } // namespace susetags
45 } // namespace parser
48} // namespace zypp
Repository content data (from /content file).
Definition: RepoIndex.h:49
FileChecksumMap metaFileChecksums
Definition: RepoIndex.h:57
virtual std::ostream & dumpOn(std::ostream &str) const
Overload to realize std::ostream & operator<<.
Definition: RepoIndex.cc:33
FileChecksumMap mediaFileChecksums
Definition: RepoIndex.h:58
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
#define IMPL_PTR_TYPE(NAME)