// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef __BLOBHASH_H #define __BLOBHASH_H /* - this is to make some of the STL types work with 64 bit values, string hash keys, etc. - added when i was using an old STL.. maybe try taking these out and see if things compile now? */ class blobhash { public: size_t operator()(const char *p, unsigned len) { static hash H; long acc = 0; while (len >= sizeof(long)) { acc ^= *(long*)p; p += sizeof(long); len -= sizeof(long); } int sh = 0; while (len) { acc ^= (long)*p << sh; sh += 8; len--; p++; } return H(acc); } }; #endif