// ============================================================== // 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 #include #include // for open() #ifdef WIN32 #include // for open() #endif #include // for open() #include "util.h" #include "platform_common.h" #include "leak_dumper.h" using namespace std; using namespace Shared::PlatformCommon; namespace Shared{ namespace Util{ // ===================================================== // class Checksum // ===================================================== std::map 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(unsigned int i= 0; i' && i >= 3 && buf[i-1] == '-' && buf[i-2] == '-') { inCommentTag = false; //printf("TURNING OFF comment TAG, i = %d [%c]",i,buf[i]); } else { //printf("SKIPPING XML comment character, i = %d [%c]",i,buf[i]); } continue; } //else if(buf[i] == '-' && i >= 4 && buf[i-1] == '-' && buf[i-2] == '!' && buf[i-3] == '<') { else if(buf[i] == '<' && i+4 < bufSize && buf[i+1] == '!' && buf[i+2] == '-' && buf[i+3] == '-') { inCommentTag = true; //printf("TURNING ON comment TAG, i = %d [%c]",i,buf[i]); continue; } else if(buf[i] == ' ' || buf[i] == '\t' || buf[i] == '\n' || buf[i] == '\r') { //printf("SKIPPING special character, i = %d [%c]",i,buf[i]); continue; } } 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::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 (int32)fileList.size(); } }}//end namespace