78 lines
2.3 KiB
C
Raw Normal View History

2021-07-25 10:22:56 +01:00
// Copyright (c) Cesanta Software Limited
// All rights reserved.
// This program is used to pack arbitrary data into a C binary. It takes
// a list of files as an input, and produces a .c data file that contains
// contents of all these files as a collection of byte arrays.
//
// Usage:
// 1. Compile this file:
// cc -o pack pack.c
//
// 2. Convert list of files into single .c:
// ./pack file1.data file2.data > fs.c
//
// 3. In your application code, you can access files using this function:
2021-07-26 09:15:17 +01:00
// const char *mg_unpack(const char *file_name, size_t *size);
2021-07-25 10:22:56 +01:00
//
// 4. Build your app with fs.c:
// cc -o my_app my_app.c fs.c
#include <stdio.h>
#include <stdlib.h>
static const char *code =
2021-07-26 09:15:17 +01:00
"const char *mg_unpack(const char *name, size_t *size) {\n"
2021-07-25 10:22:56 +01:00
" const struct packed_file *p;\n"
2021-07-26 09:15:17 +01:00
" for (p = packed_files; p->name != NULL; p++) {\n"
2021-07-25 10:22:56 +01:00
" if (strcmp(p->name, name) != 0) continue;\n"
" if (size != NULL) *size = p->size - 1;\n"
" return (const char *) p->data;\n"
" }\n"
" return NULL;\n"
"}\n";
int main(int argc, char *argv[]) {
int i, j, ch;
printf("%s", "#include <stddef.h>\n");
printf("%s", "#include <string.h>\n");
printf("%s", "\n");
for (i = 1; i < argc; i++) {
FILE *fp = fopen(argv[i], "rb");
2021-07-25 21:08:02 +01:00
char ascii[12];
2021-07-25 10:22:56 +01:00
if (fp == NULL) exit(EXIT_FAILURE);
2021-07-25 21:08:02 +01:00
printf("static const unsigned char v%d[] = {\n", i);
2021-07-25 10:22:56 +01:00
for (j = 0; (ch = fgetc(fp)) != EOF; j++) {
2021-07-25 21:08:02 +01:00
if (j == (int) sizeof(ascii)) {
printf(" // %.*s\n", j, ascii);
j = 0;
}
2021-07-26 09:05:34 +01:00
ascii[j] = (char) ((ch >= ' ' && ch <= '~' && ch != '\\') ? ch : '.');
2021-07-25 10:22:56 +01:00
printf(" %3u,", ch);
}
// Append zero byte at the end, to make text files appear in memory
// as nul-terminated strings.
2021-07-25 21:08:02 +01:00
// printf(" 0 // %.*s\n", (int) sizeof(ascii), ascii);
printf(" 0 // %.*s\n};\n", j, ascii);
2021-07-25 10:22:56 +01:00
fclose(fp);
}
2021-07-26 09:15:17 +01:00
printf("%s", "\nstatic const struct packed_file {\n");
2021-07-25 10:22:56 +01:00
printf("%s", " const char *name;\n");
printf("%s", " const unsigned char *data;\n");
printf("%s", " size_t size;\n");
2021-07-26 09:15:17 +01:00
printf("%s", "} packed_files[] = {\n");
2021-07-25 10:22:56 +01:00
for (i = 1; i < argc; i++) {
printf(" {\"%s\", v%d, sizeof(v%d) },\n", argv[i], i, i);
}
printf("%s", " {NULL, NULL, 0}\n");
printf("%s", "};\n\n");
printf("%s", code);
return EXIT_SUCCESS;
}