bus-bloom.c revision 9588bc32096fc8342bfd8b989689717186d7d86e
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "util.h"
#include "MurmurHash3.h"
#include "bus-bloom.h"
}
unsigned k = 0;
/*
* Our bloom filter has the following parameters:
*
* m=512 (bits in the filter)
* k=8 (hash functions)
*
* We calculate a single 128bit MurmurHash value of which we
* use 8 parts of 9 bits as individual hash functions.
*
*/
for (k = 0; k < ELEMENTSOF(hash); k++)
/* log_debug("bloom: adding <%.*s>", (int) n, (char*) data); */
}
size_t n;
char *c;
assert(a);
assert(b);
c = alloca(n + 1);
bloom_add_data(filter, c, n);
}
size_t n;
char *c, *p;
assert(a);
assert(b);
c = alloca(n + 1);
strcpy(p, b);
for (;;) {
char *e;
if (!e || e == p)
break;
*e = 0;
bloom_add_data(filter, c, e - c);
}
}