mirror of
https://github.com/glest/glest-source.git
synced 2025-09-26 15:39:21 +02:00
- when AllowGameDataSynchCheck=true we now show count of files found in CRC check both to log and screen output
176 lines
3.9 KiB
C++
176 lines
3.9 KiB
C++
// ==============================================================
|
|
// This file is part of Glest Shared Library (www.glest.org)
|
|
//
|
|
// Copyright (C) 2001-2008 Martio Figueroa
|
|
//
|
|
// You can redistribute this code 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
|
|
// ==============================================================
|
|
|
|
#include "checksum.h"
|
|
|
|
#include <cassert>
|
|
#include <stdexcept>
|
|
#include <fcntl.h> // for open()
|
|
|
|
#ifdef WIN32
|
|
#include <io.h> // for open()
|
|
#endif
|
|
|
|
#include <sys/stat.h> // for open()
|
|
|
|
#include "util.h"
|
|
#include "leak_dumper.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace Shared{ namespace Util{
|
|
|
|
// =====================================================
|
|
// class Checksum
|
|
// =====================================================
|
|
|
|
std::map<string,int32> Checksum::fileListCache;
|
|
|
|
Checksum::Checksum() {
|
|
sum= 0;
|
|
r= 55665;
|
|
c1= 52845;
|
|
c2= 22719;
|
|
}
|
|
|
|
void Checksum::addByte(int8 value) {
|
|
int32 cipher= (value ^ (r >> 8));
|
|
|
|
r= (cipher + r) * c1 + c2;
|
|
sum+= cipher;
|
|
}
|
|
|
|
void Checksum::addSum(int32 value) {
|
|
sum+= value;
|
|
}
|
|
|
|
void Checksum::addString(const string &value){
|
|
for(int i= 0; i<value.size(); ++i){
|
|
addByte(value[i]);
|
|
}
|
|
}
|
|
|
|
void Checksum::addFile(const string &path){
|
|
if(path != "") {
|
|
fileList[path] = 0;
|
|
}
|
|
}
|
|
|
|
void Checksum::addFileToSum(const string &path){
|
|
|
|
// OLD SLOW FILE I/O
|
|
/*
|
|
FILE* file= fopen(path.c_str(), "rb");
|
|
if(file!=NULL){
|
|
|
|
addString(lastFile(path));
|
|
|
|
while(!feof(file)){
|
|
int8 byte= 0;
|
|
|
|
size_t readBytes = fread(&byte, 1, 1, file);
|
|
addByte(byte);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw runtime_error("Can not open file: " + path);
|
|
}
|
|
fclose(file);
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
const double MAX_CRC_FILESIZE = 100000000;
|
|
int fd=0;
|
|
size_t bytes_read, bytes_expected = MAX_CRC_FILESIZE * sizeof(int8);
|
|
int8 *data=0;
|
|
const char *infile = path.c_str();
|
|
|
|
if ((fd = open(infile,O_RDONLY)) < 0)
|
|
throw runtime_error("Can not open file: " + path);
|
|
|
|
if ((data = (int8 *)malloc(bytes_expected)) == NULL)
|
|
throw runtime_error("malloc failed, Can not open file: " + path);
|
|
|
|
bytes_read = read(fd, data, bytes_expected);
|
|
|
|
//if (bytes_read != bytes_expected)
|
|
// throw runtime_error("read failed, Can not open file: " + path);
|
|
|
|
for(int i = 0; i < bytes_read; i++) {
|
|
addByte(data[i]);
|
|
}
|
|
free(data);
|
|
*/
|
|
|
|
|
|
FILE* file= fopen(path.c_str(), "rb");
|
|
if(file!=NULL){
|
|
|
|
addString(lastFile(path));
|
|
|
|
char buf[4096]=""; /* Should be large enough. */
|
|
int bufSize = sizeof buf;
|
|
while(!feof(file)){
|
|
//int8 byte= 0;
|
|
|
|
//size_t readBytes = fread(&byte, 1, 1, file);
|
|
memset(buf,0,bufSize);
|
|
if(fgets(buf, bufSize, file) != NULL) {
|
|
//addByte(byte);
|
|
for(int i = 0; buf[i] != 0 && i < bufSize; i++) {
|
|
addByte(buf[i]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw runtime_error("Can not open file: " + path);
|
|
}
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
int32 Checksum::getSum() {
|
|
if(fileList.size() > 0) {
|
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] fileList.size() = %d\n",__FILE__,__FUNCTION__,__LINE__,fileList.size());
|
|
|
|
Checksum newResult;
|
|
for(std::map<string,int32>::iterator iterMap = fileList.begin();
|
|
iterMap != fileList.end(); iterMap++) {
|
|
if(Checksum::fileListCache.find(iterMap->first) == Checksum::fileListCache.end()) {
|
|
Checksum fileResult;
|
|
fileResult.addFileToSum(iterMap->first);
|
|
Checksum::fileListCache[iterMap->first] = fileResult.getSum();
|
|
|
|
//SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] iterMap->first [%s] has CRC [%d]\n",__FILE__,__FUNCTION__,__LINE__,iterMap->first.c_str(),Checksum::fileListCache[iterMap->first]);
|
|
}
|
|
newResult.addSum(Checksum::fileListCache[iterMap->first]);
|
|
}
|
|
return newResult.getSum();
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
int32 Checksum::getFinalFileListSum() {
|
|
sum = 0;
|
|
return getSum();
|
|
}
|
|
|
|
int32 Checksum::getFileCount() {
|
|
return fileList.size();
|
|
}
|
|
|
|
}}//end namespace
|