libzypp 17.31.23
SolvIdentFile.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#include <iostream>
13#include <fstream>
14
15#include <zypp/base/LogTools.h>
16#include <zypp/base/IOStream.h>
17#include <zypp/base/String.h>
18
19#include <zypp/PathInfo.h>
20#include <zypp/TmpPath.h>
21#include <zypp/Date.h>
22
24
25using std::endl;
26
28namespace zypp
29{
31 namespace target
32 {
33
34 void SolvIdentFile::load( const Pathname & file_r, Data & data_r )
35 {
36 PathInfo pi( file_r );
37 if ( ! pi.isFile() )
38 {
39 WAR << "Can't read " << pi << endl;
40 return;
41 }
42 std::ifstream infile( file_r.c_str() );
43 for( iostr::EachLine in( infile ); in; in.next() )
44 {
45 std::string l( str::trim(*in) );
46 if ( ! l.empty() && l[0] != '#' )
47 {
48 data_r.insert( IdString(l) );
49 }
50 }
51 MIL << "Read " << pi << endl;
52 }
53
54 void SolvIdentFile::store( const Pathname & file_r, const Data & data_r )
55 {
57 filesystem::chmod( tmp.path(), 0644 );
58
59 std::ofstream outs( tmp.path().c_str() );
60 outs << "# " << file_r.basename() << " generated " << Date::now() << endl;
61 if ( true )
62 {
63 std::set<IdString> sorted( data_r.begin(), data_r.end() );
64 dumpRange( outs, sorted.begin(), sorted.end(), "#", "\n", "\n", "\n", "#\n" );
65 }
66 else
67 {
68 dumpRange( outs, data_r.begin(), data_r.end(), "#", "\n", "\n", "\n", "#\n" );
69 }
70 outs.close();
71
72 if ( outs.good() )
73 {
74 filesystem::rename( tmp.path(), file_r );
75 MIL << "Wrote " << PathInfo(file_r) << endl;
76 }
77 else
78 {
79 ERR << "Can't write " << PathInfo(tmp.path()) << endl;
80 }
81 }
82
83 /******************************************************************
84 **
85 ** FUNCTION NAME : operator<<
86 ** FUNCTION TYPE : std::ostream &
87 */
88 std::ostream & operator<<( std::ostream & str, const SolvIdentFile & obj )
89 {
90 str << obj.file() << ' ';
91 if ( obj._dataPtr )
92 str << obj.data();
93 else
94 str << "(unloaded)";
95 return str;
96 }
97
99 } // namespace target
102} // namespace zypp
static Date now()
Return the current time.
Definition: Date.h:78
Access to the sat-pools string space.
Definition: IdString.h:43
Wrapper class for stat/lstat.
Definition: PathInfo.h:221
const char * c_str() const
String representation.
Definition: Pathname.h:110
std::string basename() const
Return the last component of this path.
Definition: Pathname.h:128
Provide a new empty temporary file and delete it when no longer needed.
Definition: TmpPath.h:128
static TmpFile makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Definition: TmpPath.cc:218
Pathname path() const
Definition: TmpPath.cc:146
Simple lineparser: Traverse each line in a file.
Definition: IOStream.h:112
bool next()
Advance to next line.
Definition: IOStream.cc:72
Save and restore a list of solvable names (ident IdString)
Definition: SolvIdentFile.h:34
static void load(const Pathname &file_r, Data &data_r)
Read Data from file_r.
const Data & data() const
Return the data.
Definition: SolvIdentFile.h:53
scoped_ptr< Data > _dataPtr
std::unordered_set< IdString > Data
Definition: SolvIdentFile.h:37
static void store(const Pathname &file_r, const Data &data_r)
Write Data to file_r.
const Pathname & file() const
Return the file path.
Definition: SolvIdentFile.h:46
String related utilities and Regular expression matching.
int chmod(const Pathname &path, mode_t mode)
Like 'chmod'.
Definition: PathInfo.cc:1092
int rename(const Pathname &oldpath, const Pathname &newpath)
Like 'rename'.
Definition: PathInfo.cc:742
std::string trim(const std::string &s, const Trim trim_r)
Definition: String.cc:223
std::ostream & operator<<(std::ostream &str, const CommitPackageCache &obj)
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
std::ostream & dumpRange(std::ostream &str, TIterator begin, TIterator end, const std::string &intro="{", const std::string &pfx="\n ", const std::string &sep="\n ", const std::string &sfx="\n", const std::string &extro="}")
Print range defined by iterators (multiline style).
Definition: LogTools.h:92
#define MIL
Definition: Logger.h:96
#define ERR
Definition: Logger.h:98
#define WAR
Definition: Logger.h:97