mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
119 lines
2.1 KiB
C
119 lines
2.1 KiB
C
/* kmfl_compiler.c
|
|
* Copyright (C) 2005 SIL International
|
|
*
|
|
* This file is part of KMFL compiler.
|
|
*
|
|
*/
|
|
#include "config.h"
|
|
|
|
const char * KMFL_VERSION= VERSION;
|
|
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <ctype.h>
|
|
#include <sys/stat.h>
|
|
#include <setjmp.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <io.h>
|
|
#include <conio.h>
|
|
#include "getopt.h"
|
|
#define strcasecmp _stricmp
|
|
#define rindex strrchr
|
|
#define seek _lseek
|
|
#define DIRDELIM '\\'
|
|
char *GetInputFile(void);
|
|
#else
|
|
#include <getopt.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#define O_BINARY 0
|
|
#define DIRDELIM '/'
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
#include <kmflcomp.h>
|
|
const char * usagemsg=
|
|
"usage: kmflcomp [OPTION...] file\n" \
|
|
" -d debug\n" \
|
|
" -f force compilation\n" \
|
|
" -h print this help message\n" \
|
|
" -V verbose\n" \
|
|
" -v print program version\n" \
|
|
" -y yydebug\n";
|
|
|
|
void usage(void)
|
|
{
|
|
fprintf(stderr, "kmflcomp version %s\n", KMFL_VERSION);
|
|
fprintf(stderr, "%s", usagemsg);
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int opt,nopt=0;
|
|
void * keyboard_buffer;
|
|
unsigned long keyboard_buffer_size;
|
|
int errcode;
|
|
char *fname="(stdin)";
|
|
|
|
while((opt=getopt(argc,argv,"dfhVvy"))!=EOF)
|
|
{
|
|
switch (opt)
|
|
{
|
|
case 'd':
|
|
opt_debug=1;
|
|
break;
|
|
case 'f':
|
|
opt_force=1;
|
|
break;
|
|
case 'h':
|
|
usage();
|
|
break;
|
|
case 'V':
|
|
opt_verbose = 1;
|
|
break;
|
|
case 'v':
|
|
fprintf(stderr, "kmflcomp version %s\n", KMFL_VERSION);
|
|
exit(0);
|
|
case 'y':
|
|
yydebug = 1;
|
|
break;
|
|
}
|
|
nopt++;
|
|
}
|
|
|
|
if(argc > nopt+1)
|
|
fname=argv[argc-1];
|
|
else
|
|
usage();
|
|
|
|
#ifdef _WIN32
|
|
else if(!(fname=GetInputFile())) exit(0);
|
|
#endif
|
|
|
|
// Set warnings level
|
|
if(opt_verbose)
|
|
errlimit = warnlimit = 1000;
|
|
|
|
errcode = setjmp(fatal_error_buf);
|
|
|
|
if (errcode == 0)
|
|
{
|
|
keyboard_buffer_size = compile_keyboard_to_buffer(fname, &keyboard_buffer);
|
|
|
|
write_keyboard(fname, keyboard_buffer, keyboard_buffer_size);
|
|
free(keyboard_buffer);
|
|
|
|
#ifdef _WIN32
|
|
if(opt_debug) getch();
|
|
#endif
|
|
|
|
exit(errcount);
|
|
} else {
|
|
exit(errcode);
|
|
}
|
|
}
|