]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxsum.C
get rid of MSVC warning (signed/unsigned comparison)
[lyx.git] / src / support / lyxsum.C
index 876e91f68d06f1a6f2ecc2908ceab5c97ec427f1..1923910a405ce31284db1a6a156907a0573e29a0 100644 (file)
@@ -1,47 +1,75 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *           Copyright 2001 The LyX Team.
+/**
+ * \file lyxsum.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
-
 #include <config.h>
 
-#include <algorithm>
+#include "support/lyxlib.h"
+
+#include "debug.h"
+
+#include "support/filename.h"
+
 #include <boost/crc.hpp>
 
-#include "support/lyxlib.h"
+#include <algorithm>
+
+using std::endl;
+using std::string;
+
 
+// OK, this is ugly, but it is the only workaround I found to compile
+// with gcc (any version) on a system which uses a non-GNU toolchain.
+// The problem is that gcc uses a weak symbol for a particular
+// instantiation and that the system linker usually does not
+// understand those weak symbols (seen on HP-UX, tru64, AIX and
+// others). Thus we force an explicit instanciation of this particular
+// template (JMarc)
+template struct boost::detail::crc_table_t<32, 0x04C11DB7, true>;
 
 // Various implementations of lyx::sum(), depending on what methods
 // are available. Order is faster to slowest.
 #if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
-#ifdef WITH_WARNINGS
-#warning lyx::sum() using mmap (lightning fast)
-#endif
 
 // Make sure we get modern version of mmap and friends with void*,
 // not `compatibility' version with caddr_t.
 #define _POSIX_C_SOURCE 199506L
 
-#include <sys/types.h>
-#include <sys/stat.h>
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
 #include <fcntl.h>
-#include <unistd.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
 #include <sys/mman.h>
 
-unsigned long lyx::sum(string const & file)
+
+namespace lyx {
+namespace support {
+
+unsigned long sum(FileName const & file)
 {
-       int fd = open(file.c_str(), O_RDONLY);
-       if(!fd)
+       lyxerr[Debug::FILES] << "lyx::sum() using mmap (lightning fast)"
+                            << endl;
+
+       int fd = open(file.toFilesystemEncoding().c_str(), O_RDONLY);
+       if (!fd)
                return 0;
-       
+
        struct stat info;
        fstat(fd, &info);
-       
+
        void * mm = mmap(0, info.st_size, PROT_READ,
                         MAP_PRIVATE, fd, 0);
        // Some platforms have the wrong type for MAP_FAILED (compaq cxx).
@@ -49,24 +77,29 @@ unsigned long lyx::sum(string const & file)
                close(fd);
                return 0;
        }
-       
+
        char * beg = static_cast<char*>(mm);
        char * end = beg + info.st_size;
-       
+
        boost::crc_32_type crc;
        crc.process_block(beg, end);
        unsigned long result = crc.checksum();
-       
+
        munmap(mm, info.st_size);
        close(fd);
-       
+
        return result;
 }
+
+} // namespace support
+} // namespace lyx
+
 #else // No mmap
 
 #include <fstream>
 #include <iterator>
 
+
 namespace {
 
 template<typename InputIterator>
@@ -78,36 +111,52 @@ unsigned long do_crc(InputIterator first, InputIterator last)
        return crc.checksum();
 }
 
-} // namespace
+} // namespace anon
 
+
+namespace lyx {
+namespace support {
+
+using std::ifstream;
 #if HAVE_DECL_ISTREAMBUF_ITERATOR
-#ifdef WITH_WARNINGS
-#warning lyx::sum() using istreambuf_iterator (fast)
-#endif
-unsigned long lyx::sum(string const & file)
+using std::istreambuf_iterator;
+
+unsigned long sum(FileName const & file)
 {
-       std::ifstream ifs(file.c_str());
+       lyxerr[Debug::FILES] << "lyx::sum() using istreambuf_iterator (fast)"
+                            << endl;
+
+       ifstream ifs(file.toFilesystemEncoding().c_str());
        if (!ifs) return 0;
-       
-       std::istreambuf_iterator<char> beg(ifs);
-       std::istreambuf_iterator<char> end;
-       
+
+       istreambuf_iterator<char> beg(ifs);
+       istreambuf_iterator<char> end;
+
        return do_crc(beg,end);
 }
 #else
-#ifdef WITH_WARNINGS
-#warning lyx::sum() using istream_iterator (slow as a snail)
-#endif
-unsigned long lyx::sum(string const & file)
+
+using std::istream_iterator;
+using std::ios;
+
+unsigned long sum(FileName const & file)
 {
-       std::ifstream ifs(file.c_str());
+       lyxerr[Debug::FILES]
+               << "lyx::sum() using istream_iterator (slow as a snail)"
+               << endl;
+
+       ifstream ifs(file.toFilesystemEncoding().c_str());
        if (!ifs) return 0;
-       
-       ifs.unsetf(std::ios::skipws);
-       std::istream_iterator<char> beg(ifs);
-       std::istream_iterator<char> end;
-       
+
+       ifs.unsetf(ios::skipws);
+       istream_iterator<char> beg(ifs);
+       istream_iterator<char> end;
+
        return do_crc(beg,end);
 }
 #endif
+
+} // namespace support
+} // namespace lyx
+
 #endif // mmap