mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 20:59:00 +08:00
c11e5a9383
Fixes: mongoose/mongoose.c:180:8: warning: no previous prototype for ‘mg_dns_parse_name’ [-Wmissing-prototypes] 180 | size_t mg_dns_parse_name(const uint8_t *s, size_t n, size_t ofs, char *dst, | ^~~~~~~~~~~~~~~~~ mongoose/mongoose.c:306:6: warning: no previous prototype for ‘mg_dns_send’ [-Wmissing-prototypes] 306 | void mg_dns_send(struct mg_connection *c, const struct mg_str *name, | ^~~~~~~~~~~ mongoose/mongoose.c:925:6: warning: no previous prototype for ‘mg_http_parse_headers’ [-Wmissing-prototypes] 925 | void mg_http_parse_headers(const char *s, const char *end, | ^~~~~~~~~~~~~~~~~~~~~ mongoose/mongoose.c:1125:7: warning: no previous prototype for ‘mg_http_etag’ [-Wmissing-prototypes] 1125 | char *mg_http_etag(char *buf, size_t len, size_t size, time_t mtime) { | ^~~~~~~~~~~~ mongoose/mongoose.c:2578:6: warning: no previous prototype for ‘mg_sha1_transform’ [-Wmissing-prototypes] 2578 | void mg_sha1_transform(uint32_t state[5], const unsigned char buffer[64]) { | ^~~~~~~~~~~~~~~~~ mongoose/mongoose.c:2976:8: warning: no previous prototype for ‘mg_open_listener’ [-Wmissing-prototypes] 2976 | SOCKET mg_open_listener(const char *url, struct mg_addr *addr) { | ^~~~~~~~~~~~~~~~ Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
89 lines
2.8 KiB
C
89 lines
2.8 KiB
C
// 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:
|
|
// const char *mg_unpack(const char *file_name, size_t *size);
|
|
//
|
|
// 4. Build your app with fs.c:
|
|
// cc -o my_app my_app.c fs.c
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
|
|
static const char *code =
|
|
"const char *mg_unlist(size_t no);\n"
|
|
"const char *mg_unlist(size_t no) {\n"
|
|
" return packed_files[no].name;\n"
|
|
"}\n"
|
|
"const char *mg_unpack(const char *name, size_t *size, time_t *mtime);\n"
|
|
"const char *mg_unpack(const char *name, size_t *size, time_t *mtime) {\n"
|
|
" const struct packed_file *p;\n"
|
|
" for (p = packed_files; p->name != NULL; p++) {\n"
|
|
" if (strcmp(p->name, name) != 0) continue;\n"
|
|
" if (size != NULL) *size = p->size - 1;\n"
|
|
" if (mtime != NULL) *mtime = p->mtime;\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", "#include <time.h>\n");
|
|
printf("%s", "\n");
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
char ascii[12];
|
|
FILE *fp = fopen(argv[i], "rb");
|
|
if (fp == NULL) printf("Cannot open %s\n", argv[i]), exit(EXIT_FAILURE);
|
|
|
|
printf("static const unsigned char v%d[] = {\n", i);
|
|
for (j = 0; (ch = fgetc(fp)) != EOF; j++) {
|
|
if (j == (int) sizeof(ascii)) {
|
|
printf(" // %.*s\n", j, ascii);
|
|
j = 0;
|
|
}
|
|
ascii[j] = (char) ((ch >= ' ' && ch <= '~' && ch != '\\') ? ch : '.');
|
|
printf(" %3u,", ch);
|
|
}
|
|
// Append zero byte at the end, to make text files appear in memory
|
|
// as nul-terminated strings.
|
|
// printf(" 0 // %.*s\n", (int) sizeof(ascii), ascii);
|
|
printf(" 0 // %.*s\n};\n", j, ascii);
|
|
fclose(fp);
|
|
}
|
|
|
|
printf("%s", "\nstatic const struct packed_file {\n");
|
|
printf("%s", " const char *name;\n");
|
|
printf("%s", " const unsigned char *data;\n");
|
|
printf("%s", " size_t size;\n");
|
|
printf("%s", " time_t mtime;\n");
|
|
printf("%s", "} packed_files[] = {\n");
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
struct stat st;
|
|
stat(argv[i], &st);
|
|
printf(" {\"/%s\", v%d, sizeof(v%d), %lu},\n", argv[i], i, i, st.st_mtime);
|
|
}
|
|
printf("%s", " {NULL, NULL, 0, 0}\n");
|
|
printf("%s", "};\n\n");
|
|
printf("%s", code);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|