1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/* This file is part of PODIFF.
Copyright (C) 2011-2020 Sergey Poznyakoff
PODIFF is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
PODIFF is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this PODIFF. If not, see <http://www.gnu.org/licenses/>. */
%{
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include "podiff.h"
#include "y.tab.h"
static struct txtacc *acc;
struct list *msgtrans_list;
const char *file_name;
unsigned line_no;
%}
%x STR FLG
%%
"#, " { BEGIN(FLG); }
#~.*\n { line_no++; return OLDTRANS; }
"#"\n |
#[^~,\n].*\n { line_no++;
if (!strchr(".:|", yytext[1]) && keep_comments_option) {
txtacc_grow(acc, yytext, yyleng-1);
yylval.string = txtacc_finish(acc, 0);
return COMMENT;
}
}
<INITIAL,FLG>[ \t\f][ \t\f]* ;
<FLG>\n { BEGIN(INITIAL); line_no++; }
<FLG>, ;
<FLG>fuzzy return FUZZY;
<FLG>[a-zA-Z_][-a-zA-Z_0-9]* {
txtacc_grow(acc, yytext, yyleng);
yylval.string = txtacc_finish(acc, 0);
return FLAG;
}
<FLG>. /* skip bad character */;
msgctxt return MSGCTXT;
msgid return MSGID;
msgid_plural return MSGID_PLURAL;
msgstr return MSGSTR;
[0-9][0-9]* { yylval.number = atoi(yytext); return NUMBER; }
/* Quoted strings */
\"[^\\"\n]*\" { txtacc_grow(acc, yytext+1, yyleng-2);
yylval.string = txtacc_finish(acc, 0);
return STRING; }
\"[^\\"\n]*\\. { BEGIN(STR);
if (yytext[yyleng-1] == 'n') {
txtacc_grow(acc, yytext+1, yyleng-3);
txtacc_grow(acc, "\n", 1);
} else
txtacc_grow(acc, yytext+1, yyleng-1); }
<STR>[^\\"\n]*\\. { if (yytext[yyleng-1] == 'n') {
txtacc_grow(acc, yytext, yyleng-2);
txtacc_grow(acc, "\n", 1);
} else
txtacc_grow(acc, yytext, yyleng); }
<STR>[^\\"\n]*\" { txtacc_grow(acc, yytext, yyleng - 1);
yylval.string = txtacc_finish(acc, 0);
BEGIN(INITIAL);
return STRING; }
\n line_no++;
. return yytext[0];
%%
int
yywrap()
{
return 1;
}
void
parse_error(const char *fmt, ...)
{
va_list ap;
fprintf(stderr, "%s:%u: ", file_name, line_no);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fputc('\n', stderr);
}
void
parse_error_at_line(unsigned line, const char *fmt, ...)
{
va_list ap;
fprintf(stderr, "%s:%u: ", file_name, line);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fputc('\n', stderr);
}
struct list *
parse_po(const char *file)
{
struct po_entry *ent;
struct msgtrans *link;
FILE *fp = fopen(file, "r");
if (!fp) {
error("cannot open file %s: %s", file, strerror(errno));
exit(1);
}
yyrestart(fp);
if (!acc)
acc = txtacc_create();
file_name = file;
line_no = 1;
if (yyparse())
exit(3);
fclose(fp);
return msgtrans_list;
}
|