2020-04-14 12:05:03 +10:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
2020-06-09 10:09:45 +10:00
|
|
|
#include <errno.h>
|
2020-04-14 12:05:03 +10:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2020-11-15 10:00:31 +11:00
|
|
|
static int lineno;
|
2020-09-20 23:38:28 +10:00
|
|
|
|
2020-11-15 10:00:31 +11:00
|
|
|
static void emptylines(int n)
|
2020-04-14 12:05:03 +10:00
|
|
|
{
|
2020-11-15 10:00:31 +11:00
|
|
|
for (int i=0; i<64*n; i++) putchar(0);
|
2020-04-14 12:05:03 +10:00
|
|
|
}
|
|
|
|
|
2020-11-15 10:00:31 +11:00
|
|
|
static int getmarker(char *line) // returns -1 on error, blkid otherwise
|
2020-04-14 12:05:03 +10:00
|
|
|
{
|
2020-11-15 10:00:31 +11:00
|
|
|
int blkid;
|
|
|
|
int r = sscanf(line, "( ----- %d )\n", &blkid);
|
|
|
|
if (r == 1) {
|
|
|
|
return blkid;
|
|
|
|
} else {
|
|
|
|
return -1;
|
2020-04-14 12:05:03 +10:00
|
|
|
}
|
2020-11-15 10:00:31 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
static int expectmarker(char *line)
|
|
|
|
{
|
|
|
|
int blkid = getmarker(line);
|
|
|
|
if (blkid < 0) { // could not scan
|
|
|
|
fprintf(
|
|
|
|
stderr, "Error at line %d: expecting block marker\n", lineno);
|
2020-04-14 12:05:03 +10:00
|
|
|
}
|
2020-11-15 10:00:31 +11:00
|
|
|
return blkid;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usage()
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage: blkpack < blk.fs > blkfs\n");
|
2020-09-20 23:38:28 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2020-11-15 10:00:31 +11:00
|
|
|
int prevblkid = -1;
|
|
|
|
int blkid;
|
|
|
|
char *line = NULL;
|
|
|
|
if (argc != 1) {
|
2020-09-20 23:38:28 +10:00
|
|
|
usage();
|
|
|
|
return 1;
|
|
|
|
}
|
2020-11-15 10:00:31 +11:00
|
|
|
lineno = 1;
|
|
|
|
size_t n = 0;
|
|
|
|
ssize_t cnt = getline(&line, &n, stdin);
|
|
|
|
if (cnt <= 0) {
|
|
|
|
fprintf(stderr, "No input\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
while (1) {
|
|
|
|
blkid = expectmarker(line);
|
|
|
|
if (blkid < 0) return 1;
|
|
|
|
if (blkid <= prevblkid) {
|
|
|
|
fprintf(
|
|
|
|
stderr,
|
|
|
|
"Wrong blkid (%d) at line %d: blocks must be ordered\n",
|
|
|
|
blkid, lineno);
|
2020-09-20 23:38:28 +10:00
|
|
|
return 1;
|
|
|
|
}
|
2020-11-15 10:00:31 +11:00
|
|
|
emptylines((blkid-prevblkid-1)*16);
|
|
|
|
int blkline;
|
|
|
|
for (blkline=0; blkline<16; blkline++) {
|
|
|
|
lineno++;
|
|
|
|
cnt = getline(&line, &n, stdin);
|
|
|
|
if (cnt <= 0) break; // EOF
|
|
|
|
if (cnt > 65) {
|
|
|
|
fprintf(stderr, "Line %d too long (blk %d)\n", lineno, blkid);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (getmarker(line) >= 0) break; // we have a marker early
|
|
|
|
line[cnt-1] = '\0'; // remove newline
|
|
|
|
printf("%s", line);
|
|
|
|
// pad line to 64 chars
|
|
|
|
for (int i=cnt-1; i<64; i++) putchar(0);
|
|
|
|
}
|
|
|
|
if (blkline == 16) {
|
|
|
|
lineno++;
|
|
|
|
cnt = getline(&line, &n, stdin);
|
|
|
|
} else {
|
|
|
|
// fill to 16 lines
|
|
|
|
emptylines(16-blkline);
|
|
|
|
}
|
|
|
|
if (cnt <= 0) break; // EOF
|
|
|
|
prevblkid = blkid;
|
2020-09-20 23:38:28 +10:00
|
|
|
}
|
2020-11-15 10:00:31 +11:00
|
|
|
free(line);
|
2020-04-14 12:05:03 +10:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|