/usr/include/libpar2/filechecksummer.h is in libpar2-dev 0.4-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | // This file is part of par2cmdline (a PAR 2.0 compatible file verification and
// repair tool). See http://parchive.sourceforge.net for details of PAR 2.0.
//
// Copyright (c) 2003 Peter Brian Clements
//
// par2cmdline is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// par2cmdline is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#ifndef __FILECHECKSUMMER_H__
#define __FILECHECKSUMMER_H__
// This source file defines the FileCheckSummer object which is used
// when scanning a data file to find blocks of undamaged data.
//
// The object uses a "window" into the data file and slides that window
// along the file computing the CRC of the data in that window as it
// goes. If the computed CRC matches the value for a block of data
// from a target data file, then the MD5 Hash value is also computed
// and compared with the value for that block of data. When a match
// has been confirmed, the object jumps forward to where the next
// block of data is expected to start. Whilst the file is being scanned
// the object also computes the MD5 Hash of the whole file and of
// the first 16k of the file for later tests.
class FileCheckSummer
{
public:
FileCheckSummer(DiskFile *diskfile,
u64 blocksize,
const u32 (&windowtable)[256],
u32 windowmask);
~FileCheckSummer(void);
// Start reading the file at the beginning
bool Start(void);
// Jump ahead the specified distance
bool Jump(u64 distance);
// Step forward one byte
bool Step(void);
// Return the current checksum
u32 Checksum(void) const;
// Compute and return the current hash
MD5Hash Hash(void);
// Compute short values of checksum and hash
u32 ShortChecksum(u64 blocklength);
MD5Hash ShortHash(u64 blocklength);
// Do we have less than a full block of data
bool ShortBlock(void) const;
u64 BlockLength(void) const;
// Return the current file offset
u64 Offset(void) const;
// Return the full file hash and the 16k file hash
void GetFileHashes(MD5Hash &hashfull, MD5Hash &hash16k) const;
// Which disk file is this
const DiskFile* GetDiskFile(void) const {return diskfile;}
protected:
DiskFile *diskfile;
u64 blocksize;
const u32 (&windowtable)[256];
u32 windowmask;
u64 filesize;
u64 currentoffset; // file offset for current window position
char *buffer; // buffer for reading from the file
char *outpointer; // position in buffer of scan window
char *inpointer; // &outpointer[blocksize];
char *tailpointer; // after last valid data in buffer
// File offset for next read
u64 readoffset;
// The current checksum
u32 checksum;
// MD5 hash of whole file and of first 16k
MD5Context contextfull;
MD5Context context16k;
protected:
//void ComputeCurrentCRC(void);
void UpdateHashes(u64 offset, const void *buffer, size_t length);
//// Fill the buffers with more data from disk
bool Fill(void);
};
// Return the current checksum
inline u32 FileCheckSummer::Checksum(void) const
{
return checksum;
}
// Return the current block length
inline u64 FileCheckSummer::BlockLength(void) const
{
return min(blocksize, filesize-currentoffset);
}
// Return whether or not the current block is a short one.
inline bool FileCheckSummer::ShortBlock(void) const
{
return BlockLength() < blocksize;
}
// Return the current file offset
inline u64 FileCheckSummer::Offset(void) const
{
return currentoffset;
}
// Step forward one byte
inline bool FileCheckSummer::Step(void)
{
// Are we already at the end of the file
if (currentoffset >= filesize)
return false;
// Advance the file offset and check to see if
// we have reached the end of the file
if (++currentoffset >= filesize)
{
currentoffset = filesize;
tailpointer = outpointer = buffer;
memset(buffer, 0, (size_t)blocksize);
checksum = 0;
return true;
}
// Get the incoming and outgoing characters
char inch = *inpointer++;
char outch = *outpointer++;
// Update the checksum
checksum = windowmask ^ CRCSlideChar(windowmask ^ checksum, inch, outch, windowtable);
// Can the window slide further
if (outpointer < &buffer[blocksize])
return true;
assert(outpointer == &buffer[blocksize]);
// Copy the data back to the beginning of the buffer
memmove(buffer, outpointer, (size_t)blocksize);
inpointer = outpointer;
outpointer = buffer;
tailpointer -= blocksize;
// Fill the rest of the buffer
return Fill();
}
#endif // __FILECHECKSUMMER_H__
|