/usr/include/libpar2/criticalpacket.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 | // 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 __CRITICALPACKET_H__
#define __CRITICALPACKET_H__
// Base class for main packet, file verification packet, file description packet
// and creator packet.
// These packets are all small and are held in memory in their entirity
class CriticalPacket
{
public:
CriticalPacket(void);
~CriticalPacket(void);
public:
// Write a copy of the packet to the specified file at the specified offset
bool WritePacket(DiskFile &diskfile, u64 fileoffset) const;
// Obtain the lenght of the packet.
size_t PacketLength(void) const;
// Allocate some memory for the packet (plus some extra padding).
void* AllocatePacket(size_t length, size_t extra = 0);
// Finish a packet (by storing the set_id_hash and then computing the packet_hash).
void FinishPacket(const MD5Hash &set_id_hash);
protected:
u8 *packetdata;
size_t packetlength;
};
inline CriticalPacket::CriticalPacket(void)
{
// There is no data initially
packetdata = 0;
packetlength = 0;
}
inline CriticalPacket::~CriticalPacket(void)
{
// Delete the data for the packet
delete [] packetdata;
}
inline size_t CriticalPacket::PacketLength(void) const
{
return packetlength;
}
inline void* CriticalPacket::AllocatePacket(size_t length, size_t extra)
{
// Hey! We can't allocate the packet twice
assert(packetlength == 0 && packetdata == 0);
// Remember the requested packet length
packetlength = length;
// Allocate and clear the requested packet length plus the extra.
packetdata = new u8[length+extra];
memset(packetdata, 0, length+extra);
return packetdata;
}
// Class used to record the fact that a copy of a particular critical packet
// will be written to a particular file at a specific offset.
class CriticalPacketEntry
{
public:
CriticalPacketEntry(DiskFile *_diskfile,
u64 _offset,
const CriticalPacket *_packet)
: diskfile(_diskfile)
, offset(_offset)
, packet(_packet)
{}
CriticalPacketEntry(void)
: diskfile(0)
, offset(0)
, packet(0)
{}
CriticalPacketEntry(const CriticalPacketEntry &other)
: diskfile(other.diskfile)
, offset(other.offset)
, packet(other.packet)
{}
CriticalPacketEntry& operator=(const CriticalPacketEntry &other)
{
diskfile = other.diskfile;
offset = other.offset;
packet = other.packet;
return *this;
}
public:
// Write the packet to disk.
bool WritePacket(void) const;
// Obtain the length of the packet.
u64 PacketLength(void) const;
protected:
DiskFile *diskfile;
u64 offset;
const CriticalPacket *packet;
};
inline bool CriticalPacketEntry::WritePacket(void) const
{
assert(packet != 0 && diskfile != 0);
// Tell the packet to write itself to disk
return packet->WritePacket(*diskfile, offset);
}
inline u64 CriticalPacketEntry::PacketLength(void) const
{
assert(packet != 0);
// Ask the packet how big it is.
return packet->PacketLength();
}
#endif // __CRITICALPACKET_H__
|