summary refs log tree commit diff
path: root/mico-store.c
blob: f92d592e7b8a99e3e6c2967fccb4c52ccacc3b57 (plain) (blame)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include <arpa/inet.h>
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include <zip.h>

#define MICO_HEADER "\211MiC\r\n\032\n"

struct event {
	int64_t t;
	double v;
};

struct metric {
	char *key;
	struct event *value;  // array
};

int
timecmp(const void *a, const void *b)
{
        struct event *ea = (struct event *)a;
        struct event *eb = (struct event *)b;

	if (ea->t < eb->t)
		return -1;
	else if (ea->t > eb->t)
		return 1;
	else
		return 0;  // needed?
}

struct bitfile {
        FILE *output;
	char *mem;
	size_t memlen;
	size_t nevents;

        uint64_t bitbuf;        // value of bits in write buffer
        int bitcount;   // number of bits in write buffer
};

static void
putbits1_msb(struct bitfile *bf, int count, uint32_t bits)
{
        assert(count >= 1 && count <= 57);

        bf->bitbuf <<= count;
        bf->bitcount += count;

        bf->bitbuf |= bits;   /* mask? */

        while (bf->bitcount > 8) {
                bf->bitcount -= 8;
                putc_unlocked((bf->bitbuf >> bf->bitcount) & 0xff, bf->output);
        }
}

static void
putbits1_flush(struct bitfile *bf)
{
        for (int i = bf->bitcount + 8; i >= 0; i--)
                putbits1_msb(bf, 1, 0);
        fflush(bf->output);
}

static void
putsigned(struct bitfile *bf, int count, int v)
{
        if (v < 0)
                putbits1_msb(bf, count, (1 << (count - 1)) - (v + 1));
        else
                putbits1_msb(bf, count, v);
}

void
put1(struct bitfile *bf, int64_t v)
{
        if (v == 0) {
                putbits1_msb(bf, 1, 0x0);
                return;
        }
        if (v >= -64 && v <= 63) {
                putbits1_msb(bf, 2, 0x2);
                putsigned(bf, 7, v);
                return;
        }
        if (v >= -256 && v <= 255) {
                putbits1_msb(bf, 3, 0x6);
                putsigned(bf, 9, v);
                return;
        }
        if (v >= -2048 && v <= 2047) {
                putbits1_msb(bf, 4, 0xe);
                putsigned(bf, 12, v);
                return;
        }

        putbits1_msb(bf, 4, 0xf);
        putsigned(bf, 32, v >> 32);
        putbits1_msb(bf, 32, v & 0xffffffff);
}

static struct bitfile ts, vs;
char *filename;
zip_t *zip;

void
reset_stream()
{
	ts = (struct bitfile){ 0 };
	vs = (struct bitfile){ 0 };
	ts.output = open_memstream(&ts.mem, &ts.memlen);
	vs.output = open_memstream(&vs.mem, &vs.memlen);

	fwrite(MICO_HEADER, 1, 8, ts.output);
	fwrite(MICO_HEADER, 1, 8, vs.output);

        putbits1_msb(&ts, 32, 0);
        putbits1_msb(&ts, 32, 0);
        putbits1_msb(&vs, 32, 0);
        putbits1_msb(&vs, 32, 0);
}

#define htonll(x) ((1==htonl(1)) ? (x) : ((uint64_t)htonl((x) & 0xFFFFFFFF) << 32) | htonl((x) >> 32))

void
write_stream(char *name)
{
	putbits1_flush(&ts);
	putbits1_flush(&vs);

	char prefix[255];
	char path[255];
	strcpy(prefix, name);
	char *s = strchr(prefix, '{');
	if (!s) {
		abort();
	}
	*s = '/';
	s = strrchr(prefix, '}');
	if (s)
		*s = 0;

	/* patch in length */
	uint64_t nevents = htonll(ts.nevents);
	memcpy(ts.mem + 8, &nevents, sizeof nevents);
	memcpy(vs.mem + 8, &nevents, sizeof nevents);

	// time_t mtime = metrics[m].value[0].t / 1000;
	snprintf(path, sizeof path, "%s/time.dd", prefix);

	zip_source_t *buft = zip_source_buffer(zip,
	    ts.mem, ts.memlen, 0);
	int jj= zip_file_add(zip, path, buft, ZIP_FL_ENC_UTF_8);
	printf("index of %s = %d\n", path, jj);
	if (jj < 0) {
		printf("error adding file: %s\n", zip_strerror(zip));
	}
	// zip_file_set_mtime(zip, jj, mtime, 0);

	snprintf(path, sizeof path, "%s/data.d", prefix);

	zip_source_t *bufv = zip_source_buffer(zip,
	    vs.mem, vs.memlen, 0);
	jj= zip_file_add(zip, path, bufv, ZIP_FL_ENC_UTF_8);
	printf("index of %s = %d\n", path, jj);
	if (jj < 0) {
		printf("error adding file: %s\n", zip_strerror(zip));
	}
	// zip_file_set_mtime(zip, jj, mtime, 0);

	// note that data must be kept in memory until zip_close
	// actually writes the archive.

	// close and reopen the zip to force write and free all buffers
	zip_close(zip);
	zip = zip_open(filename, 0, 0);
	if (!zip)
		exit(-1);

	free(ts.mem);
	free(vs.mem);
}

int
main(int argc, char *argv[])
{
	char name[255];
	char lastname[255];

	char *line = 0;
	size_t linebuflen = 0;
	ssize_t linelen = 0;

	if (argc < 2) {
		fprintf(stderr, "usage: %s output.zip\n", argv[0]);
		exit(-1);
	}

	filename = argv[1];
        zip = zip_open(filename, ZIP_CREATE | ZIP_TRUNCATE, 0);
        if (!zip)
                exit(-1);

	int64_t t, pt = 0, ppt = 0;
	double v, pv = 0.0;

	while ((linelen = getdelim(&line, &linebuflen, '\n', stdin)) >= 0) {
		char *start = strchr(line, ' ');
		if (!start) break;
		char *start2 = strchr(start+1, ' ');
		if (!start2) break;

		char *eend;
		v = strtod(start, &eend);
		t = strtoll(eend+1, 0, 10);

		if (start - line > (ssize_t)sizeof name) {
			fprintf(stderr, "metric too long: %s\n", line);
			continue;
		}
		memcpy(name, line, start-line);
		name[start-line] = 0;

		if (strcmp(name, lastname) != 0) {
			if (*lastname)
				write_stream(lastname);
			reset_stream();
			pt = ppt = 0;
			pv = 0.0;
		}

		put1(&ts, (t - pt) - (pt - ppt));
		put1(&vs, (int64_t)((v - pv) * 10000));
		ts.nevents++;
		vs.nevents++;

		ppt = pt;
		pt = t;
		pv = v;

		strcpy(lastname, name);
	}

	if (*name)
		write_stream(name);

	zip_close(zip);
}