-
Notifications
You must be signed in to change notification settings - Fork 7
/
rng.c
116 lines (100 loc) · 2.25 KB
/
rng.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define RANDOM_H_IMPLEMENTATION
#include <cauldron/random.h>
#include "extra.h"
/*
* Example:
* ./rng <name> | ./testu01 SmallCrush
* ./rng <name> | ./RNG_test stdin
*/
#define BUFSIZE (1024*1024)
void *buffer;
void *bufferend;
#define RANDOM_X16(type, func, rand) \
MAKE_RNG(func, type, rand, 16)
#define RANDOM_X32(type, func, rand) \
MAKE_RNG(func, type, rand, 32)
#define RANDOM_X64(type, func, rand) \
MAKE_RNG(func, type, rand, 64)
#define MAKE_RNG(func, type, rand, n) \
static void \
run_##func(void) \
{ \
type rng; \
rand(&rng); \
while (1) { \
uint##n##_t *p = buffer; \
while ((void*)p < bufferend) \
*p++ = func(&rng); \
fwrite(buffer, 1, BUFSIZE, stdout); \
} \
}
#include <cauldron/random-xmacros.h>
#include "extra-xmacros.h"
#undef MAKE_RNG
static void
run_trng_write(void)
{
while (1) {
trng_write(buffer, BUFSIZE);
fwrite(buffer, 1, BUFSIZE, stdout);
}
}
static struct {
char *name;
void (*rng)(void);
} rngs[] = {
#undef RANDOM_X16
#undef RANDOM_X32
#undef RANDOM_X64
#define RANDOM_X16(type, func, rand) { #func, run_##func },
#define RANDOM_X32(type, func, rand)
#define RANDOM_X64(type, func, rand)
#include <cauldron/random-xmacros.h>
#include "extra-xmacros.h"
#undef RANDOM_X16
#undef RANDOM_X32
#undef RANDOM_X64
#define RANDOM_X16(type, func, rand)
#define RANDOM_X32(type, func, rand) { #func, run_##func },
#define RANDOM_X64(type, func, rand)
#include <cauldron/random-xmacros.h>
#include "extra-xmacros.h"
#undef RANDOM_X16
#undef RANDOM_X32
#undef RANDOM_X64
#define RANDOM_X16(type, func, rand)
#define RANDOM_X32(type, func, rand)
#define RANDOM_X64(type, func, rand) { #func, run_##func },
#include <cauldron/random-xmacros.h>
#include "extra-xmacros.h"
};
static void list(void)
{
size_t i;
for (i = 0; i < sizeof rngs / sizeof *rngs; ++i)
puts(rngs[i].name);
}
int
main(int argc, char **argv)
{
size_t i;
char *name = argv[1];
(void)argc;
buffer = malloc(BUFSIZE);
bufferend = (void*)((char*)buffer + BUFSIZE);
if (!name) {
list();
return EXIT_FAILURE;
}
for (i = 0; i < sizeof rngs / sizeof *rngs; ++ i) {
if (strcmp(name, rngs[i].name) == 0) {
rngs[i].rng();
return EXIT_SUCCESS;
}
}
list();
return EXIT_FAILURE;
}