1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2001-06-01 12:10:06 +00:00
|
|
|
* LyX, The Document Processor
|
|
|
|
* Copyright 2001 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:54:16 +00:00
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2000-02-03 17:09:33 +00:00
|
|
|
|
2001-06-01 12:10:06 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <boost/crc.hpp>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-17 21:01:30 +00:00
|
|
|
#include "support/lyxlib.h"
|
2002-01-19 17:05:24 +00:00
|
|
|
#include "debug.h"
|
2000-01-17 21:01:30 +00:00
|
|
|
|
2002-03-11 11:17:49 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
// Various implementations of lyx::sum(), depending on what methods
|
|
|
|
// are available. Order is faster to slowest.
|
|
|
|
#if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
|
|
|
|
|
2001-12-19 16:11:10 +00:00
|
|
|
// Make sure we get modern version of mmap and friends with void*,
|
|
|
|
// not `compatibility' version with caddr_t.
|
|
|
|
#define _POSIX_C_SOURCE 199506L
|
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
unsigned long lyx::sum(string const & file)
|
|
|
|
{
|
2002-01-19 17:05:24 +00:00
|
|
|
lyxerr[Debug::FILES] << "lyx::sum() using mmap (lightning fast)"
|
|
|
|
<< endl;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
int fd = open(file.c_str(), O_RDONLY);
|
2002-02-16 15:59:55 +00:00
|
|
|
if (!fd)
|
2001-12-03 01:11:05 +00:00
|
|
|
return 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
struct stat info;
|
|
|
|
fstat(fd, &info);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
void * mm = mmap(0, info.st_size, PROT_READ,
|
|
|
|
MAP_PRIVATE, fd, 0);
|
2001-12-19 16:11:10 +00:00
|
|
|
// Some platforms have the wrong type for MAP_FAILED (compaq cxx).
|
|
|
|
if (mm == reinterpret_cast<void*>(MAP_FAILED)) {
|
2001-12-03 01:11:05 +00:00
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
char * beg = static_cast<char*>(mm);
|
|
|
|
char * end = beg + info.st_size;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
boost::crc_32_type crc;
|
|
|
|
crc.process_block(beg, end);
|
|
|
|
unsigned long result = crc.checksum();
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
munmap(mm, info.st_size);
|
|
|
|
close(fd);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#else // No mmap
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <iterator>
|
|
|
|
|
2002-05-21 23:50:36 +00:00
|
|
|
using std::for_each;
|
|
|
|
|
2001-06-01 12:10:06 +00:00
|
|
|
namespace {
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
template<typename InputIterator>
|
2001-03-20 01:22:46 +00:00
|
|
|
inline
|
2000-02-04 09:38:32 +00:00
|
|
|
unsigned long do_crc(InputIterator first, InputIterator last)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-06-01 12:10:06 +00:00
|
|
|
boost::crc_32_type crc;
|
2002-02-16 15:59:55 +00:00
|
|
|
crc = for_each(first, last, crc);
|
2001-06-01 12:10:06 +00:00
|
|
|
return crc.checksum();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace
|
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
#if HAVE_DECL_ISTREAMBUF_ITERATOR
|
2002-03-11 11:17:49 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::istreambuf_iterator;
|
|
|
|
|
2000-10-20 13:13:38 +00:00
|
|
|
unsigned long lyx::sum(string const & file)
|
2000-02-04 09:38:32 +00:00
|
|
|
{
|
2002-01-19 17:05:24 +00:00
|
|
|
lyxerr[Debug::FILES] << "lyx::sum() using istreambuf_iterator (fast)"
|
|
|
|
<< endl;
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
ifstream ifs(file.c_str());
|
2001-05-30 13:17:50 +00:00
|
|
|
if (!ifs) return 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
istreambuf_iterator<char> beg(ifs);
|
|
|
|
istreambuf_iterator<char> end;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
return do_crc(beg,end);
|
|
|
|
}
|
2001-05-30 13:17:50 +00:00
|
|
|
#else
|
2002-05-21 23:50:36 +00:00
|
|
|
|
|
|
|
using std::istream_iterator;
|
|
|
|
using std::ios;
|
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
unsigned long lyx::sum(string const & file)
|
|
|
|
{
|
2002-01-19 17:05:24 +00:00
|
|
|
lyxerr[Debug::FILES]
|
|
|
|
<< "lyx::sum() using istream_iterator (slow as a snail)"
|
|
|
|
<< endl;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
ifstream ifs(file.c_str());
|
2001-12-03 01:11:05 +00:00
|
|
|
if (!ifs) return 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
ifs.unsetf(ios::skipws);
|
|
|
|
istream_iterator<char> beg(ifs);
|
|
|
|
istream_iterator<char> end;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-12-03 01:11:05 +00:00
|
|
|
return do_crc(beg,end);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-12-03 01:11:05 +00:00
|
|
|
#endif
|
|
|
|
#endif // mmap
|