libzypp 17.25.7
MediaBlockList.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_MEDIA_MEDIABLOCKLIST_H
13#define ZYPP_MEDIA_MEDIABLOCKLIST_H
14
15#include <sys/types.h>
16#include <vector>
17
18#include <zypp/Digest.h>
19
20namespace zypp {
21 namespace media {
22
26struct MediaBlock {
27 MediaBlock( off_t off_r, size_t size_r )
28 : off( off_r )
29 , size( size_r )
30 {}
31 off_t off;
32 size_t size;
33};
34
36public:
37 MediaBlockList(off_t filesize=off_t(-1));
38
43 inline bool haveBlocks() const {
44 return haveblocks;
45 }
51 size_t addBlock(off_t off, size_t size);
52
56 inline MediaBlock getBlock(size_t blkno) const {
57 return blocks[blkno];
58 }
62 inline size_t numBlocks() const {
63 return blocks.size();
64 }
65
69 inline void setFilesize(off_t newfilesize=off_t(-1)) {
70 filesize = newfilesize;
71 }
72 inline off_t getFilesize() const {
73 return filesize;
74 }
75 inline bool haveFilesize() const {
76 return filesize != off_t(-1);
77 }
78
82 void setFileChecksum(std::string ctype, int cl, unsigned char *c);
83 const std::vector<unsigned char> &getFileChecksum( );
84 bool createFileDigest(Digest &digest) const;
85 bool verifyFileDigest(Digest &digest) const;
86 inline bool haveFileChecksum() const {
87 return !fsumtype.empty() && fsum.size();
88 }
89
93 void setChecksum(size_t blkno, std::string cstype, int csl, unsigned char *cs, size_t cspad=0);
94 bool checkChecksum(size_t blkno, const unsigned char *buf, size_t bufl) const;
95 std::vector<unsigned char> getChecksum( size_t blkno );
96 bool createDigest(Digest &digest) const;
97 bool verifyDigest(size_t blkno, Digest &digest) const;
98 inline bool haveChecksum(size_t blkno) const {
99 return chksumlen && chksums.size() >= chksumlen * (blkno + 1);
100 }
101
105 void setRsum(size_t blkno, int rsl, unsigned int rs, size_t rspad=0);
106 bool checkRsum(size_t blkno, const unsigned char *buf, size_t bufl) const;
107 unsigned int updateRsum(unsigned int rs, const char *bytes, size_t len) const;
108 bool verifyRsum(size_t blkno, unsigned int rs) const;
109 inline bool haveRsum(size_t blkno) const {
110 return rsumlen && rsums.size() >= blkno + 1;
111 }
112
117 void reuseBlocks(FILE *wfp, std::string filename);
118
122 std::string asString() const;
123
124private:
125 void writeBlock(size_t blkno, FILE *fp, const unsigned char *buf, size_t bufl, size_t start, std::vector<bool> &found) const;
126 bool checkChecksumRotated(size_t blkno, const unsigned char *buf, size_t bufl, size_t start) const;
127
128 off_t filesize;
129 std::string fsumtype;
130 std::vector<unsigned char> fsum;
131
133 std::vector<MediaBlock> blocks;
134
135 std::string chksumtype;
137 size_t chksumpad;
138 std::vector<unsigned char> chksums;
139
140 std::string rsumtype;
142 size_t rsumpad;
143 std::vector<unsigned int> rsums;
144};
145
146inline std::ostream & operator<<(std::ostream &str, const MediaBlockList &bl)
147{ return str << bl.asString(); }
148
149 } // namespace media
150} // namespace zypp
151
152#endif // ZYPP_MEDIA_MEDIABLOCKLIST_H
153
Compute Message Digests (MD5, SHA1 etc)
Definition: Digest.h:46
std::vector< unsigned int > rsums
void setRsum(size_t blkno, int rsl, unsigned int rs, size_t rspad=0)
set / verify the (weak) rolling checksum over a single block
bool haveChecksum(size_t blkno) const
void setFileChecksum(std::string ctype, int cl, unsigned char *c)
set / verify the checksum over the whole file
bool verifyRsum(size_t blkno, unsigned int rs) const
MediaBlock getBlock(size_t blkno) const
return the offset/size of a block with number blkno
void reuseBlocks(FILE *wfp, std::string filename)
scan a file for blocks from our blocklist.
void writeBlock(size_t blkno, FILE *fp, const unsigned char *buf, size_t bufl, size_t start, std::vector< bool > &found) const
bool createDigest(Digest &digest) const
std::string asString() const
return block list as string
bool checkChecksumRotated(size_t blkno, const unsigned char *buf, size_t bufl, size_t start) const
std::vector< unsigned char > chksums
size_t addBlock(off_t off, size_t size)
add a block with offset off and size size to the block list.
unsigned int updateRsum(unsigned int rs, const char *bytes, size_t len) const
std::vector< unsigned char > getChecksum(size_t blkno)
void setChecksum(size_t blkno, std::string cstype, int csl, unsigned char *cs, size_t cspad=0)
set / verify the (strong) checksum over a single block
std::vector< unsigned char > fsum
bool verifyDigest(size_t blkno, Digest &digest) const
bool haveBlocks() const
do we have a blocklist describing the file? set to true when addBlock() is called
const std::vector< unsigned char > & getFileChecksum()
bool checkRsum(size_t blkno, const unsigned char *buf, size_t bufl) const
std::vector< MediaBlock > blocks
bool createFileDigest(Digest &digest) const
size_t numBlocks() const
return the number of blocks in the blocklist
bool verifyFileDigest(Digest &digest) const
bool haveRsum(size_t blkno) const
void setFilesize(off_t newfilesize=off_t(-1))
set / return the size of the whole file
bool checkChecksum(size_t blkno, const unsigned char *buf, size_t bufl) const
MediaBlockList(off_t filesize=off_t(-1))
String related utilities and Regular expression matching.
std::ostream & operator<<(std::ostream &str, const MediaAccess &obj)
Definition: MediaAccess.cc:481
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
a single block from the blocklist, consisting of an offset and a size
MediaBlock(off_t off_r, size_t size_r)