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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
// distribution boxbackup-0.11rc2 (svn version: 2072)
//
// Copyright (c) 2003 - 2008
// Ben Summers and contributors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. All use of this software and associated advertising materials must
// display the following acknowledgment:
// This product includes software developed by Ben Summers.
// 4. The names of the Authors may not be used to endorse or promote
// products derived from this software without specific prior written
// permission.
//
// [Where legally impermissible the Authors do not disclaim liability for
// direct physical injury or death caused solely by defects in the software
// unless it is modified by a third party.]
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT,
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
//
//
// --------------------------------------------------------------------------
//
// File
// Name: BackupStoreCheckData.cpp
// Purpose: Data handling for store checking
// Created: 21/4/04
//
// --------------------------------------------------------------------------
#include "Box.h"
#include <stdlib.h>
#include <memory>
#include "BackupStoreCheck.h"
#include "autogen_BackupStoreException.h"
#include "MemLeakFindOn.h"
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::FreeInfo()
// Purpose: Free all the data stored
// Created: 21/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::FreeInfo()
{
// Free all the blocks
for(Info_t::iterator i(mInfo.begin()); i != mInfo.end(); ++i)
{
::free(i->second);
}
// Clear the contents of the map
mInfo.clear();
// Reset the last ID, just in case
mpInfoLastBlock = 0;
mInfoLastBlockEntries = 0;
mLastIDInInfo = 0;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::AddID(BackupStoreCheck_ID_t, BackupStoreCheck_ID_t, bool)
// Purpose: Add an ID to the list
// Created: 21/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::AddID(BackupStoreCheck_ID_t ID,
BackupStoreCheck_ID_t Container, BackupStoreCheck_Size_t ObjectSize, bool IsFile)
{
// Check ID is OK.
if(ID <= mLastIDInInfo)
{
THROW_EXCEPTION(BackupStoreException, InternalAlgorithmErrorCheckIDNotMonotonicallyIncreasing)
}
// Can this go in the current block?
if(mpInfoLastBlock == 0 || mInfoLastBlockEntries >= BACKUPSTORECHECK_BLOCK_SIZE)
{
// No. Allocate a new one
IDBlock *pblk = (IDBlock*)::malloc(sizeof(IDBlock));
if(pblk == 0)
{
throw std::bad_alloc();
}
// Zero all the flags entries
for(int z = 0; z < (BACKUPSTORECHECK_BLOCK_SIZE * Flags__NumFlags / Flags__NumItemsPerEntry); ++z)
{
pblk->mFlags[z] = 0;
}
// Store in map
mInfo[ID] = pblk;
// Allocated and stored OK, setup for use
mpInfoLastBlock = pblk;
mInfoLastBlockEntries = 0;
}
ASSERT(mpInfoLastBlock != 0 && mInfoLastBlockEntries < BACKUPSTORECHECK_BLOCK_SIZE);
// Add to block
mpInfoLastBlock->mID[mInfoLastBlockEntries] = ID;
mpInfoLastBlock->mContainer[mInfoLastBlockEntries] = Container;
mpInfoLastBlock->mObjectSizeInBlocks[mInfoLastBlockEntries] = ObjectSize;
SetFlags(mpInfoLastBlock, mInfoLastBlockEntries, IsFile?(0):(Flags_IsDir));
// Increment size
++mInfoLastBlockEntries;
// Store last ID
mLastIDInInfo = ID;
}
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::LookupID(BackupStoreCheck_ID_t, int32_t
// Purpose: Look up an ID. Return the block it's in, or zero if not found, and the
// index within that block if the thing is found.
// Created: 21/4/04
//
// --------------------------------------------------------------------------
BackupStoreCheck::IDBlock *BackupStoreCheck::LookupID(BackupStoreCheck_ID_t ID, int32_t &rIndexOut)
{
IDBlock *pblock = 0;
// Find the lower matching block who's first entry is not less than ID
Info_t::const_iterator ib(mInfo.lower_bound(ID));
// Was there a block
if(ib == mInfo.end())
{
// Block wasn't found... could be in last block
pblock = mpInfoLastBlock;
}
else
{
// Found it as first entry?
if(ib->first == ID)
{
rIndexOut = 0;
return ib->second;
}
// Go back one block as it's not the first entry in this one
if(ib == mInfo.begin())
{
// Was first block, can't go back
return 0;
}
// Go back...
--ib;
// So, the ID will be in this block, if it's in anything
pblock = ib->second;
}
ASSERT(pblock != 0);
if(pblock == 0) return 0;
// How many entries are there in the block
int32_t bentries = (pblock == mpInfoLastBlock)?mInfoLastBlockEntries:BACKUPSTORECHECK_BLOCK_SIZE;
// Do binary search within block
int high = bentries;
int low = -1;
while(high - low > 1)
{
int i = (high + low) / 2;
if(ID <= pblock->mID[i])
{
high = i;
}
else
{
low = i;
}
}
if(ID == pblock->mID[high])
{
// Found
rIndexOut = high;
return pblock;
}
// Not found
return 0;
}
#ifndef NDEBUG
// --------------------------------------------------------------------------
//
// Function
// Name: BackupStoreCheck::DumpObjectInfo()
// Purpose: Debug only. Trace out all object info.
// Created: 22/4/04
//
// --------------------------------------------------------------------------
void BackupStoreCheck::DumpObjectInfo()
{
for(Info_t::const_iterator i(mInfo.begin()); i != mInfo.end(); ++i)
{
IDBlock *pblock = i->second;
int32_t bentries = (pblock == mpInfoLastBlock)?mInfoLastBlockEntries:BACKUPSTORECHECK_BLOCK_SIZE;
TRACE2("BLOCK @ 0x%08x, %d entries\n", pblock, bentries);
for(int e = 0; e < bentries; ++e)
{
uint8_t flags = GetFlags(pblock, e);
TRACE4("id %llx, c %llx, %s, %s\n",
pblock->mID[e], pblock->mContainer[e],
(flags & Flags_IsDir)?"dir":"file",
(flags & Flags_IsContained)?"contained":"unattached");
}
}
}
#endif
|