839 lines
19 KiB
C
839 lines
19 KiB
C
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "rpmlib.h"
|
|
#ifdef SELF_TEST
|
|
#undef NDEBUG
|
|
#include <stdio.h>
|
|
#endif
|
|
#include "set.h"
|
|
#include "system.h"
|
|
|
|
#define CACHE_SIZE 512
|
|
#define PIVOT_SIZE 486
|
|
#define SENTINELS 0
|
|
|
|
struct set {
|
|
size_t cnt;
|
|
struct symbols {
|
|
const char* str;
|
|
unsigned hash;
|
|
}* symbols_v;
|
|
};
|
|
|
|
struct set* set_new() {
|
|
struct set* set = xmalloc(sizeof *set);
|
|
set->cnt = 0;
|
|
set->symbols_v = NULL;
|
|
|
|
return set;
|
|
}
|
|
|
|
void set_add(struct set* set, const char* sym) {
|
|
const int delta = 1024;
|
|
|
|
if (set->cnt % delta == 0) {
|
|
set->symbols_v = xrealloc(set->symbols_v, sizeof(*set->symbols_v) * (set->cnt + delta));
|
|
}
|
|
|
|
set->symbols_v[set->cnt].str = xstrdup(sym);
|
|
set->symbols_v[set->cnt].hash = 0;
|
|
set->cnt++;
|
|
|
|
return;
|
|
}
|
|
|
|
struct set* set_free(struct set* set) {
|
|
if (set) {
|
|
for (size_t i = 0; i < set->cnt; ++i) {
|
|
_free((char*)set->symbols_v[i].str);
|
|
}
|
|
|
|
_free(set->symbols_v);
|
|
set = _free(set);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
// ---
|
|
|
|
static unsigned hash(const char* str) {
|
|
unsigned hash = 0x9e3779b9;
|
|
const unsigned char* p = (const unsigned char*)str;
|
|
|
|
while (*p) {
|
|
hash += *p++;
|
|
hash += (hash << 10);
|
|
hash ^= (hash >> 6);
|
|
}
|
|
|
|
hash += (hash << 3);
|
|
hash ^= (hash >> 11);
|
|
hash += (hash << 15);
|
|
|
|
return hash;
|
|
}
|
|
|
|
int cmp(const void* arg1, const void* arg2) {
|
|
const struct symbols* s1 = arg1;
|
|
const struct symbols* s2 = arg2;
|
|
|
|
if (s1->hash > s2->hash) return 1;
|
|
if (s2->hash > s1->hash) return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// ---
|
|
|
|
static int log2i(int n) {
|
|
int m = 0;
|
|
while (n /= 2) m++;
|
|
|
|
return m;
|
|
}
|
|
|
|
// Calculate Mshift paramter for encoding.
|
|
static int encode_golomb_Mshift(int cnt, int bpp) {
|
|
// XXX Slightly better Mshift estimations are probably possible.
|
|
// Recheck "Compression and coding algorithms" by Moffat & Turpin.
|
|
int Mshift = bpp - log2i(cnt) - 1;
|
|
|
|
// Adjust out-of-range values.
|
|
Mshift = (Mshift < 7) ? 7 : Mshift;
|
|
Mshift = (Mshift > 31) ? 31 : Mshift;
|
|
assert(Mshift < bpp);
|
|
|
|
return Mshift;
|
|
}
|
|
|
|
// Estimate how many bits can be filled up.
|
|
static inline int encode_golomb_size(int cnt, int Mshift) {
|
|
// XXX No precise estimation. However, we do not expect unary-encoded bits
|
|
// to take more than binary-encoded Mshift bits.
|
|
return Mshift * 2 * cnt + 16;
|
|
}
|
|
|
|
// Estimate base62 buffer size required to encode a given number of bits.
|
|
static inline int encode_base62_size(int bit_cnt) {
|
|
// In the worst case, which is ZxZxZx..., five bits can make a character;
|
|
// the remaining bits can make a character, too. And the string must be
|
|
// null-terminated.
|
|
return bit_cnt / 5 + 2;
|
|
}
|
|
|
|
static int encode_set_size(int cnt, int bpp) {
|
|
int Mshift = encode_golomb_Mshift(cnt, bpp);
|
|
int bit_cnt = encode_golomb_size(cnt, Mshift);
|
|
// two leading characters are special
|
|
return 2 + encode_base62_size(bit_cnt);
|
|
}
|
|
|
|
// ---
|
|
|
|
static void encode_delta(int cnt, unsigned* hash_pt) {
|
|
assert(cnt > 0);
|
|
|
|
unsigned* end_pt = hash_pt + cnt;
|
|
unsigned prev_hash = *hash_pt++;
|
|
|
|
while (hash_pt < end_pt) {
|
|
*hash_pt -= prev_hash;
|
|
prev_hash += *hash_pt++;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
// Main golomb encoding routine: package integers into bits.
|
|
// http://algo2.iti.uni-karlsruhe.de/singler/publications/cacheefficientbloomfilters-wea2007.pdf
|
|
// The first integer is then stored in unary coding (which is a variable-length
|
|
// sequence of '0' followed by a terminating '1'); the second part is stored in
|
|
// normal binary coding (using Mshift bits).
|
|
static int encode_golomb(int cnt, const unsigned* delta_pt, int Mshift, char* bit_pt) {
|
|
char* start_pt = bit_pt;
|
|
const unsigned mask = (1 << Mshift) - 1;
|
|
|
|
for (int i = 0; i < cnt; ++i) {
|
|
unsigned elem = *delta_pt++;
|
|
|
|
// first part: variable-length sequence
|
|
unsigned q = elem >> Mshift;
|
|
for (int j = 0; j < (int)q; ++j) {
|
|
*bit_pt++ = 0;
|
|
}
|
|
|
|
*bit_pt++ = 1;
|
|
|
|
// second part: lower Mshift bits
|
|
unsigned r = elem & mask;
|
|
for (int j = 0; j < Mshift; ++j) {
|
|
*bit_pt++ = r & 1;
|
|
r >>= 1;
|
|
}
|
|
}
|
|
|
|
return bit_pt - start_pt;
|
|
}
|
|
|
|
// Main base62 encoding routine: pack bit_arr into base62 string.
|
|
/*
|
|
* Base62 routines - encode bits with alnum characters.
|
|
*
|
|
* This is a base64-based base62 implementation. Values 0..61 are encoded
|
|
* with '0'..'9', 'a'..'z', and 'A'..'Z'. However, 'Z' is special: it will
|
|
* also encode 62 and 63. To achieve this, 'Z' will occupy two high bits in
|
|
* the next character. Thus 'Z' can be interpreted as an escape character
|
|
* (which indicates that the next character must be handled specially).
|
|
* Note that setting high bits to "00", "01" or "10" cannot contribute
|
|
* to another 'Z' (which would require high bits set to "11"). This is
|
|
* how multiple escapes are avoided.
|
|
*/
|
|
|
|
static char* bits_to_char(int c, char* base62) {
|
|
assert(c >= 0 && c <= 61);
|
|
|
|
if (c < 10) {
|
|
*base62++ = c + '0';
|
|
} else if (c < 36) {
|
|
*base62++ = c - 10 + 'a';
|
|
} else if (c < 62) {
|
|
*base62++ = c - 36 + 'A';
|
|
}
|
|
|
|
return base62;
|
|
}
|
|
|
|
// filling from the least significant bits, in case of Z - put in the most
|
|
// significant bits
|
|
static int encode_base62(int bit_cnt, const char* bit_pt, char* base62_str_pt) {
|
|
char* base62_start = base62_str_pt;
|
|
|
|
int bits2 = 0; // number of high bits set
|
|
int bits6 = 0; // number of regular bits set
|
|
int num6b = 0; // pending 6-bit number
|
|
|
|
while (bit_cnt-- > 0) {
|
|
num6b |= (*bit_pt++ << bits6++);
|
|
|
|
if (bits6 + bits2 < 6) continue;
|
|
|
|
if (num6b >= 61) { // 61 62 63 cases
|
|
base62_str_pt = bits_to_char(61, base62_str_pt);
|
|
bits2 = 2;
|
|
num6b = (num6b - 61) << 4; // (0|16|32) in high bits
|
|
} else {
|
|
assert(num6b < 61);
|
|
base62_str_pt = bits_to_char(num6b, base62_str_pt);
|
|
bits2 = 0;
|
|
num6b = 0;
|
|
}
|
|
|
|
bits6 = 0;
|
|
}
|
|
|
|
if (bits6 + bits2) {
|
|
assert(num6b < 61);
|
|
base62_str_pt = bits_to_char(num6b, base62_str_pt);
|
|
}
|
|
|
|
*base62_str_pt = '\0';
|
|
|
|
return base62_str_pt - base62_start;
|
|
}
|
|
|
|
// ---
|
|
|
|
static inline char encode_bpp(int bpp) { return bpp - 7 + 'a'; }
|
|
|
|
static int encode_set(int cnt, unsigned* hash_arr, int bpp, char* base62_str) {
|
|
int Mshift = encode_golomb_Mshift(cnt, bpp);
|
|
int bit_cnt = encode_golomb_size(cnt, Mshift);
|
|
|
|
char bit_arr[bit_cnt];
|
|
|
|
*base62_str++ = encode_bpp(bpp);
|
|
*base62_str++ = encode_bpp(Mshift);
|
|
|
|
// hash_arr -> delta_arr
|
|
encode_delta(cnt, hash_arr);
|
|
bit_cnt = encode_golomb(cnt, hash_arr, Mshift, bit_arr);
|
|
assert(bit_cnt >= 0);
|
|
|
|
size_t base62_len = encode_base62(bit_cnt, bit_arr, base62_str);
|
|
assert(base62_len > 0);
|
|
|
|
return 2 + base62_len;
|
|
}
|
|
|
|
const char* set_fini(struct set* set, int bpp) {
|
|
// Implementation for finalizing the set
|
|
|
|
assert(set != NULL);
|
|
assert(set->cnt > 0);
|
|
assert(bpp >= 10 && bpp <= 32);
|
|
|
|
unsigned mask = (bpp < 32) ? (1u << bpp) - 1 : ~0u;
|
|
|
|
for (size_t i = 0; i < set->cnt; ++i) {
|
|
set->symbols_v[i].hash = hash(set->symbols_v[i].str) & mask;
|
|
}
|
|
|
|
qsort(set->symbols_v, set->cnt, sizeof *set->symbols_v, cmp);
|
|
|
|
// warn on hash collizions
|
|
for (size_t i = 0; i < set->cnt - 1; ++i) {
|
|
if (set->symbols_v[i].hash != set->symbols_v[i + 1].hash) continue;
|
|
if (!strcmp(set->symbols_v[i].str, set->symbols_v[i + 1].str)) continue;
|
|
|
|
fprintf(stderr, "warning: hash collision: %s %s\n", set->symbols_v[i].str,
|
|
set->symbols_v[i + 1].str);
|
|
}
|
|
|
|
unsigned unique_hash[set->cnt];
|
|
size_t unique_cnt = 0;
|
|
|
|
// delete duplicates
|
|
for (size_t i = 0; i < set->cnt; ++i) {
|
|
while (i + 1 < set->cnt && set->symbols_v[i].hash == set->symbols_v[i + 1].hash) {
|
|
++i;
|
|
}
|
|
unique_hash[unique_cnt++] = set->symbols_v[i].hash;
|
|
}
|
|
|
|
char base62_str[encode_set_size(unique_cnt, bpp)];
|
|
encode_set(unique_cnt, unique_hash, bpp, base62_str);
|
|
|
|
return xstrdup(base62_str);
|
|
}
|
|
|
|
// ---
|
|
|
|
struct set_meta {
|
|
const char* str;
|
|
const char* payload;
|
|
size_t len;
|
|
size_t payload_len;
|
|
int bpp;
|
|
int Mshift;
|
|
int bit_capacity;
|
|
int value_capacity;
|
|
};
|
|
|
|
static int set_meta_init(const char* str, struct set_meta* meta) {
|
|
// len >= 3
|
|
if (!str[0] || !str[1] || !str[2]) return -4;
|
|
|
|
int bpp = str[0] + 7 - 'a';
|
|
if (bpp < 10 || bpp > 32) return -1;
|
|
|
|
int Mshift = str[1] + 7 - 'a';
|
|
if (Mshift < 7 || Mshift > 31) return -2;
|
|
if (Mshift >= bpp) return -3;
|
|
|
|
*meta = (struct set_meta){
|
|
.str = str,
|
|
.payload = str + 2,
|
|
.bpp = bpp,
|
|
.Mshift = Mshift,
|
|
};
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int set_meta_fini(struct set_meta* meta) {
|
|
size_t len = strlen(meta->str);
|
|
|
|
size_t payload_len = len - 2;
|
|
|
|
int bit_capacity = (int)payload_len * 6;
|
|
int value_capacity = bit_capacity / (meta->Mshift + 1);
|
|
|
|
if (value_capacity < 1) return -4;
|
|
|
|
*meta = (struct set_meta){
|
|
.len = len,
|
|
.payload_len = payload_len,
|
|
.bit_capacity = bit_capacity,
|
|
.value_capacity = value_capacity,
|
|
};
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int char_to_num(char c) {
|
|
if (c == '\0') return 0xff; // end of string
|
|
|
|
if (c >= '0' && c <= '9') return c - '0';
|
|
if (c >= 'a' && c <= 'z') return c - 'a' + 10;
|
|
if (c >= 'A' && c <= 'Z') return c - 'A' + 36;
|
|
|
|
return 0xee; // invalid character
|
|
}
|
|
|
|
static char* put6bits(int c, char* bit_pt) {
|
|
*bit_pt++ = (c >> 0) & 1;
|
|
*bit_pt++ = (c >> 1) & 1;
|
|
*bit_pt++ = (c >> 2) & 1;
|
|
*bit_pt++ = (c >> 3) & 1;
|
|
*bit_pt++ = (c >> 4) & 1;
|
|
*bit_pt++ = (c >> 5) & 1;
|
|
|
|
return bit_pt;
|
|
}
|
|
|
|
static char* put4bits(int c, char* bit_pt) {
|
|
*bit_pt++ = (c >> 0) & 1;
|
|
*bit_pt++ = (c >> 1) & 1;
|
|
*bit_pt++ = (c >> 2) & 1;
|
|
*bit_pt++ = (c >> 3) & 1;
|
|
|
|
return bit_pt;
|
|
}
|
|
|
|
// Main base62 decoding routine: unpack base62 string into bit_pt[].
|
|
static int decode_base62(const char* base62_str, char* bit_pt) {
|
|
char* bit_start = bit_pt;
|
|
|
|
unsigned num6b = char_to_num(*base62_str++); // pending 6-bit number
|
|
while (num6b != 0xff) {
|
|
if (num6b == 0xee) return -1;
|
|
|
|
if (num6b < 61) {
|
|
bit_pt = put6bits(num6b, bit_pt);
|
|
} else {
|
|
assert(num6b == 61);
|
|
// 61 62 63 cases
|
|
|
|
unsigned mask = (1 << 4) | (1 << 5); // high bits mask
|
|
int num4b = char_to_num(*base62_str++);
|
|
if (num4b == 0xff) return -2;
|
|
if (num4b == 0xee) return -3;
|
|
|
|
int num2b = num4b & mask; // high bits
|
|
num4b &= ~mask; // low bits
|
|
assert(num2b != mask); // not both bits set
|
|
|
|
bit_pt = put6bits(61 + (num2b >> 4), bit_pt); // 61 + (0|1|2) in high bits
|
|
bit_pt = put4bits(num4b, bit_pt);
|
|
}
|
|
|
|
num6b = char_to_num(*base62_str++);
|
|
}
|
|
|
|
return bit_pt - bit_start;
|
|
}
|
|
|
|
// Main golomb decoding routine: unpackage bits into values.
|
|
static int decode_golomb(int bit_cnt, const char* bit_pt, int Mshift, unsigned* golomb_pt) {
|
|
unsigned* golomb_start = golomb_pt;
|
|
|
|
// next value
|
|
while (bit_cnt > 0) {
|
|
// first part
|
|
unsigned q = 0;
|
|
char bit = 0;
|
|
while (bit_cnt > 0) {
|
|
bit_cnt--;
|
|
bit = *bit_pt++;
|
|
|
|
if (bit == 0) {
|
|
q++;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
// trailing zero bits in the input are okay
|
|
if (bit_cnt == 0 && bit == 0) {
|
|
// up to 5 bits can be used to complete last character
|
|
if (q > 5) {
|
|
return -10;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
// otherwise, incomplete value is not okay
|
|
if (bit_cnt < Mshift) {
|
|
return -11;
|
|
}
|
|
|
|
// second part
|
|
unsigned r = 0;
|
|
int i;
|
|
for (i = 0; i < Mshift; i++) {
|
|
bit_cnt--;
|
|
if (*bit_pt++) {
|
|
r |= (1 << i);
|
|
}
|
|
}
|
|
|
|
// the value
|
|
*golomb_pt++ = (q << Mshift) | r;
|
|
}
|
|
|
|
return golomb_pt - golomb_start;
|
|
}
|
|
|
|
static void decode_delta(int cnt, unsigned* delta_pt) {
|
|
assert(cnt > 0);
|
|
unsigned* delta_end = delta_pt + cnt;
|
|
unsigned prev = *delta_pt++;
|
|
|
|
while (delta_pt < delta_end) {
|
|
*delta_pt += prev;
|
|
prev = *delta_pt++;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
static int decode_set(const struct set_meta* meta, unsigned* hash_arr) {
|
|
char bit_arr[meta->bit_capacity];
|
|
|
|
int bit_cnt = decode_base62(meta->payload, bit_arr);
|
|
if (bit_cnt < 0) return bit_cnt;
|
|
|
|
int cnt = decode_golomb(bit_cnt, bit_arr, meta->Mshift, hash_arr);
|
|
if (cnt <= 0) return cnt < 0 ? cnt : -12;
|
|
|
|
decode_delta(cnt, hash_arr);
|
|
return cnt;
|
|
}
|
|
|
|
// Special decode_set version with LRU caching.
|
|
static int cache_decode_set(struct set_meta* meta, const unsigned** hash_pt) {
|
|
struct cache_ent {
|
|
char* str;
|
|
int len;
|
|
int cnt;
|
|
unsigned* hash_arr;
|
|
};
|
|
|
|
static int cache_cnt;
|
|
static unsigned cache_arr[CACHE_SIZE];
|
|
static struct cache_ent* ent_arr[CACHE_SIZE];
|
|
|
|
struct cache_ent* ent;
|
|
unsigned fp = meta->str[0] | (meta->str[2] << 8) | (meta->str[3] << 16);
|
|
|
|
int i = 0;
|
|
for (unsigned* cache_pt = cache_arr; cache_pt < cache_arr + cache_cnt; ++cache_pt, ++i) {
|
|
if (fp == *cache_pt) {
|
|
ent = ent_arr[i];
|
|
|
|
if (memcmp(meta->str, ent->str, ent->len + 1) == 0) {
|
|
// hit, move to front
|
|
if (i) {
|
|
memmove(cache_arr + 1, cache_arr, i * sizeof(cache_arr[0]));
|
|
memmove(ent_arr + 1, ent_arr, i * sizeof(ent_arr[0]));
|
|
|
|
cache_arr[0] = fp;
|
|
ent_arr[0] = ent;
|
|
}
|
|
|
|
*hash_pt = ent->hash_arr;
|
|
|
|
return ent->cnt;
|
|
}
|
|
}
|
|
}
|
|
|
|
set_meta_fini(meta);
|
|
|
|
// decode
|
|
int len = meta->len;
|
|
int cnt = meta->value_capacity;
|
|
ent = xmalloc(sizeof(*ent) + len + 1 + (cnt + SENTINELS) * sizeof(unsigned));
|
|
ent->hash_arr = (unsigned*)(ent + 1);
|
|
ent->str = (char*)(ent->hash_arr + cnt + SENTINELS);
|
|
|
|
cnt = ent->cnt = decode_set(meta, ent->hash_arr);
|
|
if (cnt <= 0) {
|
|
_free(ent);
|
|
return cnt;
|
|
}
|
|
|
|
for (i = 0; i < SENTINELS; ++i) {
|
|
ent->hash_arr[cnt + i] = ~0u;
|
|
}
|
|
|
|
memcpy(ent->str, meta->str, len + 1);
|
|
ent->len = len;
|
|
|
|
// insert
|
|
if (cache_cnt < CACHE_SIZE) {
|
|
i = cache_cnt++;
|
|
} else {
|
|
// free last entry
|
|
free(ent_arr[CACHE_SIZE - 1]);
|
|
|
|
// position at midpoint
|
|
i = PIVOT_SIZE;
|
|
memmove(cache_arr + i + 1, cache_arr + i, (CACHE_SIZE - i - 1) * sizeof(cache_arr[0]));
|
|
memmove(ent_arr + i + 1, ent_arr + i, (CACHE_SIZE - i - 1) * sizeof(ent_arr[0]));
|
|
}
|
|
|
|
cache_arr[i] = fp;
|
|
ent_arr[i] = ent;
|
|
*hash_pt = ent->hash_arr;
|
|
|
|
return cnt;
|
|
}
|
|
|
|
// Reduce a set of (bpp + 1) values to a set of bpp values.
|
|
static int downsample_set(int cnt, const unsigned* hash_pt, unsigned* ds_pt, int bpp) {
|
|
unsigned mask = (1 << bpp) - 1;
|
|
|
|
// find the first element with high bit set
|
|
int l = 0;
|
|
int u = cnt;
|
|
while (l < u) {
|
|
int i = (l + u) / 2;
|
|
|
|
if (hash_pt[i] <= mask) {
|
|
l = i + 1;
|
|
} else {
|
|
u = i;
|
|
}
|
|
}
|
|
|
|
// initialize parts
|
|
const unsigned* ds_start = ds_pt;
|
|
const unsigned *v1 = hash_pt + 0, *v1_end = hash_pt + u;
|
|
const unsigned *v2 = hash_pt + u, *v2_end = hash_pt + cnt;
|
|
|
|
// merge v1 and v2 into w
|
|
if (v1 < v1_end && v2 < v2_end) {
|
|
unsigned v1_val = *v1;
|
|
unsigned v2_val = *v2 & mask;
|
|
|
|
while (1) {
|
|
if (v1_val < v2_val) {
|
|
*ds_pt++ = v1_val;
|
|
v1++;
|
|
|
|
if (v1 == v1_end) break;
|
|
|
|
v1_val = *v1;
|
|
} else if (v2_val < v1_val) {
|
|
*ds_pt++ = v2_val;
|
|
v2++;
|
|
|
|
if (v2 == v2_end) break;
|
|
|
|
v2_val = *v2 & mask;
|
|
} else {
|
|
*ds_pt++ = v1_val;
|
|
v1++;
|
|
v2++;
|
|
|
|
if (v1 == v1_end) break;
|
|
if (v2 == v2_end) break;
|
|
|
|
v1_val = *v1;
|
|
v2_val = *v2 & mask;
|
|
}
|
|
}
|
|
}
|
|
|
|
// append what's left
|
|
while (v1 < v1_end) *ds_pt++ = *v1++;
|
|
while (v2 < v2_end) *ds_pt++ = *v2++ & mask;
|
|
|
|
return ds_pt - ds_start;
|
|
}
|
|
|
|
static unsigned* gallop_lower_bound(unsigned* first, const unsigned* last, unsigned value) {
|
|
size_t n = (size_t)(last - first);
|
|
|
|
if (n == 0 || first[0] >= value) {
|
|
return first;
|
|
}
|
|
|
|
size_t lo = 0;
|
|
size_t hi = 1;
|
|
|
|
while (hi < n && first[hi] < value) {
|
|
lo = hi;
|
|
|
|
if (hi > n / 2) {
|
|
hi = n;
|
|
break;
|
|
}
|
|
|
|
hi *= 2;
|
|
}
|
|
|
|
size_t left = lo + 1;
|
|
size_t right = hi < n ? hi + 1 : n;
|
|
|
|
while (left < right) {
|
|
size_t mid = left + (right - left) / 2;
|
|
|
|
if (first[mid] < value)
|
|
left = mid + 1;
|
|
else
|
|
right = mid;
|
|
}
|
|
|
|
return first + left;
|
|
}
|
|
|
|
// main API routine
|
|
int rpmsetcmp(const char* str1, const char* str2) {
|
|
if (strncmp(str1, "set:", 4) == 0) str1 += 4;
|
|
if (strncmp(str2, "set:", 4) == 0) str2 += 4;
|
|
|
|
struct set_meta meta1;
|
|
struct set_meta meta2;
|
|
|
|
if (set_meta_init(str1, &meta1) < 0) return -3;
|
|
if (set_meta_init(str2, &meta2) < 0) return -4;
|
|
|
|
// decode set1
|
|
const unsigned* hash_arr1 = NULL;
|
|
int cnt1 = cache_decode_set(&meta1, &hash_arr1);
|
|
if (cnt1 < 0) return -3;
|
|
unsigned bufA1[cnt1 + SENTINELS];
|
|
unsigned bufB1[cnt1 + SENTINELS];
|
|
|
|
// decode set2
|
|
set_meta_fini(&meta2);
|
|
int cnt2 = meta2.value_capacity;
|
|
unsigned bufA2[cnt2];
|
|
unsigned bufB2[cnt2];
|
|
unsigned* hash_arr2 = bufA2;
|
|
cnt2 = decode_set(&meta2, hash_arr2);
|
|
if (cnt2 < 0) return -4;
|
|
|
|
int bpp1 = meta1.bpp;
|
|
int bpp2 = meta2.bpp;
|
|
int min_bpp = (bpp1 < bpp2) ? bpp1 : bpp2;
|
|
|
|
while (bpp1 > min_bpp) {
|
|
unsigned* pt1 = bufA1;
|
|
if (hash_arr1 == pt1) {
|
|
pt1 = bufB1;
|
|
}
|
|
|
|
bpp1--;
|
|
cnt1 = downsample_set(cnt1, hash_arr1, pt1, bpp1);
|
|
hash_arr1 = pt1;
|
|
}
|
|
|
|
while (bpp2 > min_bpp) {
|
|
unsigned* pt2 = bufA2;
|
|
if (hash_arr2 == pt2) {
|
|
pt2 = bufB2;
|
|
}
|
|
|
|
bpp2--;
|
|
cnt2 = downsample_set(cnt2, hash_arr2, pt2, bpp2);
|
|
hash_arr2 = pt2;
|
|
}
|
|
|
|
// compare
|
|
int ge = 1;
|
|
int le = 1;
|
|
const unsigned* end1 = hash_arr1 + cnt1;
|
|
const unsigned* end2 = hash_arr2 + cnt2;
|
|
|
|
while (hash_arr1 < end1 && hash_arr2 < end2) {
|
|
if (*hash_arr2 < *hash_arr1) {
|
|
ge = 0;
|
|
++hash_arr2;
|
|
} else if (*hash_arr1 == *hash_arr2) {
|
|
++hash_arr1;
|
|
++hash_arr2;
|
|
} else {
|
|
le = 0;
|
|
|
|
hash_arr1 = gallop_lower_bound(hash_arr1, end1, *hash_arr2);
|
|
|
|
if (hash_arr1 == end1) break;
|
|
|
|
if (*hash_arr1 == *hash_arr2) {
|
|
++hash_arr1;
|
|
++hash_arr2;
|
|
} else {
|
|
ge = 0;
|
|
++hash_arr2;
|
|
}
|
|
}
|
|
|
|
if (!ge && !le) break;
|
|
}
|
|
|
|
if (hash_arr1 < end1) {
|
|
le = 0;
|
|
}
|
|
if (hash_arr2 < end2) {
|
|
ge = 0;
|
|
}
|
|
|
|
if (ge && le) {
|
|
return 0;
|
|
} else if (ge) {
|
|
return 1;
|
|
} else if (le) {
|
|
return -1;
|
|
}
|
|
|
|
return -2;
|
|
}
|
|
|
|
// ---
|
|
|
|
#ifdef SELF_TEST
|
|
int main(void) {
|
|
struct set* set1 = set_new();
|
|
set_add(set1, "mama");
|
|
set_add(set1, "myla");
|
|
set_add(set1, "ramu");
|
|
const char* str10 = set_fini(set1, 16);
|
|
fprintf(stderr, "set10=%s\n", str10);
|
|
|
|
int cmp;
|
|
struct set* set2 = set_new();
|
|
set_add(set2, "myla");
|
|
set_add(set2, "mama");
|
|
const char* str20 = set_fini(set2, 16);
|
|
fprintf(stderr, "set20=%s\n", str20);
|
|
cmp = rpmsetcmp(str10, str20);
|
|
assert(cmp == 1);
|
|
|
|
set_add(set2, "ramu");
|
|
const char* str21 = set_fini(set2, 16);
|
|
fprintf(stderr, "set21=%s\n", str21);
|
|
cmp = rpmsetcmp(str10, str21);
|
|
assert(cmp == 0);
|
|
|
|
set_add(set2, "baba");
|
|
const char* str22 = set_fini(set2, 16);
|
|
cmp = rpmsetcmp(str10, str22);
|
|
assert(cmp == -1);
|
|
|
|
set_add(set1, "deda");
|
|
const char* str11 = set_fini(set1, 16);
|
|
cmp = rpmsetcmp(str11, str22);
|
|
assert(cmp == -2);
|
|
|
|
set1 = set_free(set1);
|
|
set2 = set_free(set2);
|
|
str10 = _free(str10);
|
|
str11 = _free(str11);
|
|
str20 = _free(str20);
|
|
str21 = _free(str21);
|
|
str22 = _free(str22);
|
|
|
|
fprintf(stderr, "%s: api test OK\n", __FILE__);
|
|
|
|
return 0;
|
|
}
|
|
#endif
|