2014-03-22 15:02:48 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2020-09-18 19:20:14 +00:00
|
|
|
* @file ptimec.c
|
2014-03-22 15:02:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
const char *PRELUDE = "\
|
|
|
|
#include <time.h>\n\
|
|
|
|
#include <sys/types.h>\n\
|
|
|
|
#include \"ptimec.hh\"\n\
|
|
|
|
\n\
|
|
|
|
";
|
|
|
|
|
|
|
|
char *escape_char(char ch)
|
|
|
|
{
|
|
|
|
static char charstr[4];
|
|
|
|
|
|
|
|
if (ch == '\'') {
|
|
|
|
strcpy(charstr, "\\'");
|
|
|
|
} else {
|
|
|
|
charstr[0] = ch;
|
|
|
|
charstr[1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return charstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
|
2014-11-12 05:18:55 +00:00
|
|
|
fputs(PRELUDE, stdout);
|
2014-03-22 15:02:48 +00:00
|
|
|
for (int lpc = 1; lpc < argc; lpc++) {
|
2022-06-04 02:17:00 +00:00
|
|
|
const char* arg = argv[lpc];
|
2014-03-22 15:02:48 +00:00
|
|
|
|
2022-06-04 02:17:00 +00:00
|
|
|
printf(
|
2022-07-07 17:05:06 +00:00
|
|
|
"// %s\n"
|
2022-06-04 02:17:00 +00:00
|
|
|
"bool ptime_f%d(struct exttm *dst, const char *str, off_t &off, "
|
|
|
|
"ssize_t len) {\n"
|
|
|
|
" dst->et_flags = 0;\n"
|
|
|
|
" // log_debug(\"ptime_f%d\");\n",
|
2022-07-07 17:05:06 +00:00
|
|
|
arg,
|
2022-06-04 02:17:00 +00:00
|
|
|
lpc,
|
|
|
|
lpc);
|
2014-03-22 15:02:48 +00:00
|
|
|
for (int index = 0; arg[index]; arg++) {
|
|
|
|
if (arg[index] == '%') {
|
|
|
|
switch (arg[index + 1]) {
|
2022-06-04 02:17:00 +00:00
|
|
|
case 'a':
|
|
|
|
case 'Z':
|
|
|
|
if (arg[index + 2]) {
|
|
|
|
printf(
|
|
|
|
" if (!ptime_upto('%s', str, off, len)) "
|
|
|
|
"return false;\n",
|
|
|
|
escape_char(arg[index + 2]));
|
|
|
|
} else {
|
|
|
|
printf(
|
|
|
|
" if (!ptime_upto_end(str, off, len)) "
|
|
|
|
"return false;\n");
|
|
|
|
}
|
|
|
|
arg += 1;
|
|
|
|
break;
|
|
|
|
case '@':
|
|
|
|
printf(
|
|
|
|
" if (!ptime_at(dst, str, off, len)) return "
|
|
|
|
"false;\n");
|
|
|
|
arg += 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf(
|
|
|
|
" if (!ptime_%c(dst, str, off, len)) return "
|
|
|
|
"false;\n",
|
|
|
|
arg[index + 1]);
|
2014-03-22 15:02:48 +00:00
|
|
|
arg += 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf(" if (!ptime_char('%s', str, off, len)) return false;\n",
|
|
|
|
escape_char(arg[index]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(" return true;\n");
|
|
|
|
printf("}\n\n");
|
|
|
|
}
|
2016-08-19 05:15:35 +00:00
|
|
|
for (int lpc = 1; lpc < argc; lpc++) {
|
|
|
|
const char *arg = argv[lpc];
|
|
|
|
|
|
|
|
printf("void ftime_f%d(char *dst, off_t &off_inout, size_t len, const struct exttm &tm) {\n",
|
|
|
|
lpc);
|
|
|
|
for (int index = 0; arg[index]; arg++) {
|
|
|
|
if (arg[index] == '%') {
|
|
|
|
switch (arg[index + 1]) {
|
|
|
|
case '@':
|
|
|
|
printf(" ftime_at(dst, off_inout, len, tm);\n");
|
|
|
|
arg += 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf(" ftime_%c(dst, off_inout, len, tm);\n",
|
|
|
|
arg[index + 1]);
|
|
|
|
arg += 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf(" ftime_char(dst, off_inout, len, '%s');\n",
|
|
|
|
escape_char(arg[index]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(" dst[off_inout] = '\\0';\n");
|
|
|
|
printf("}\n\n");
|
|
|
|
}
|
2014-03-22 15:02:48 +00:00
|
|
|
|
|
|
|
printf("struct ptime_fmt PTIMEC_FORMATS[] = {\n");
|
|
|
|
for (int lpc = 1; lpc < argc; lpc++) {
|
2016-08-19 05:15:35 +00:00
|
|
|
printf(" { \"%s\", ptime_f%d, ftime_f%d },\n", argv[lpc], lpc, lpc);
|
2014-03-22 15:02:48 +00:00
|
|
|
}
|
|
|
|
printf("\n");
|
2021-02-14 07:08:40 +00:00
|
|
|
printf(" { nullptr, nullptr, nullptr }\n");
|
2014-03-22 15:02:48 +00:00
|
|
|
printf("};\n");
|
|
|
|
|
|
|
|
printf("const char *PTIMEC_FORMAT_STR[] = {\n");
|
|
|
|
for (int lpc = 1; lpc < argc; lpc++) {
|
|
|
|
printf(" \"%s\",\n", argv[lpc]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
2021-02-14 07:08:40 +00:00
|
|
|
printf(" nullptr\n");
|
2014-03-22 15:02:48 +00:00
|
|
|
printf("};\n");
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|