1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
/**
* `main.c' - libbeaufort
*
* copyright (c) 2014 joseph werle <joseph.werle@gmail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <inttypes.h>
#include "murmurhash.h"
static void
usage () {
fprintf(stderr, "usage: murmur [-hV] [options]\n");
}
static void
help () {
fprintf(stderr, "\noptions:\n");
fprintf(stderr, "\n --seed=[seed] hash seed (optional)");
fprintf(stderr, "\n");
}
static char *
read_stdin () {
size_t bsize = 1024;
size_t size = 1;
char buf[bsize];
char *res = (char *) malloc(sizeof(char) * bsize);
char *tmp = NULL;
// memory issue
if (NULL == res) { return NULL; }
// cap
res[0] = '\0';
// read
if (NULL != fgets(buf, bsize, stdin)) {
// store
tmp = res;
// resize
size += (size_t) strlen(buf);
// realloc
res = (char *) realloc(res, size);
// memory issues
if (NULL == res) {
free(tmp);
return NULL;
}
// yield
strcat(res, buf);
return res;
}
free(res);
return NULL;
}
#define isopt(opt, str) (0 == strncmp(opt, str, strlen(str)))
#define setopt(opt, key, var) { \
char tmp = 0; \
size_t len = strlen(key) + 1; \
for (int i = 0; i < len; ++i) { tmp = *opt++; } \
var = opt; \
}
int
main (int argc, char **argv) {
char *buf = NULL;
char *key = NULL;
char *seed = NULL;
uint32_t h = 0;
// parse opts
{
char *opt = NULL;
char tmp = 0;
opt = *argv++; // unused
while ((opt = *argv++)) {
// flags
if ('-' == *opt++) {
switch (*opt++) {
case 'h':
return usage(), help(), 0;
case 'V':
fprintf(stderr, "%s\n", MURMURHASH_VERSION);
return 0;
case '-':
if (isopt(opt, "seed")) {
setopt(opt, "seed", seed);
}
break;
default:
tmp = *opt--;
// error
fprintf(stderr, "unknown option: `%s'\n", opt);
usage();
return 1;
}
}
}
}
if (NULL == seed) {
seed = "0";
}
#define hash(key) murmurhash(key, (uint32_t) strlen(key), (uint32_t) atoi(seed));
if (1 == isatty(0)) { return 1; }
else if (ferror(stdin)) { return 1; }
else {
buf = read_stdin();
if (NULL == buf) { return 1; }
else if (0 == strlen(buf)) { buf = ""; }
h = hash(buf);
printf("%" PRIu32 "\n", h);
do {
key = read_stdin();
if (NULL == key) { break; }
else if (0 == strlen(buf)) { buf = ""; }
h = hash(buf);
printf("%d" PRIu32 "\n", h);
} while (NULL != key);
}
#undef hash
return 0;
}
|