X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fpo%2Fxlat.C;h=0973f88792bb73d8a7b6ff97d8f6c94594a2ff5b;hb=2ba7e9962ea989863e152373e96a09b00a0b4eb8;hp=7a38f2937956170924c92c0119c44143870e7db9;hpb=3907ea88a7ad3b8281c3911116e0654b92f1a477;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/po/xlat.C b/cinelerra-5.1/po/xlat.C index 7a38f293..0973f887 100644 --- a/cinelerra-5.1/po/xlat.C +++ b/cinelerra-5.1/po/xlat.C @@ -211,7 +211,9 @@ static inline int bputs(uint8_t *bp, FILE *fp) if( !fp ) return 0; fputs((const char*)bp, fp); fputc('\n',fp); - return 1; + int n = 1; + while( *bp ) if( *bp++ == '\n' ) ++n; + return n; } static inline int bput(uint8_t *bp, FILE *fp) { @@ -455,7 +457,7 @@ void scan_po(FILE *ifp, FILE *ofp) while( bgets(ibfr, sizeof(ibfr), ifp) ) { if( !prefix_is(ibfr, "msgid ") ) { if( nocmts && ibfr[0] == '#' ) continue; - bputs(ibfr, ofp); ++no; + no += bputs(ibfr, ofp); continue; } uint8_t str[MX_STR]; xlat2(&ibfr[6], str); @@ -464,10 +466,10 @@ void scan_po(FILE *ifp, FILE *ofp) fprintf(stderr, "file truncated line %d: %s", no, ibfr); exit(1); } - bputs(ibfr, ofp); ++no; + no += bputs(ibfr, ofp); while( tbfr[0] == '"' ) { - bputs(tbfr, ofp); ++no; + no += bputs(tbfr, ofp); xlat2(&tbfr[0], str); key.append((const char*)str); if( !bgets(tbfr, sizeof(tbfr), ifp) ) { fprintf(stderr, "file truncated line %d: %s", no, ibfr); @@ -490,26 +492,26 @@ void scan_po(FILE *ifp, FILE *ofp) if( it == trans.end() || it->first.compare(key) ) { fprintf(stderr, "no trans line %d: %s\n", no, ibfr); xlat3(key.c_str(), &tbfr[7]); - bputs(tbfr, ofp); ++no; - bputs((uint8_t*)"#msgstr \"\"", ofp); ++no; + no += bputs(tbfr, ofp); + no += bputs((uint8_t*)"#msgstr \"\"", ofp); } else if( !it->second.ok ) { fprintf(stderr, "bad fmt line %d: %s\n", no, ibfr); xlat3(it->first.c_str(), &tbfr[7]); - bputs(tbfr, ofp); ++no; + no += bputs(tbfr, ofp); xlat3(it->second.c_str(), str); bput((uint8_t*)"#msgstr ", ofp); - bputs(str, ofp); ++no; + no += bputs(str, ofp); } else { xlat3(it->second.c_str(), &tbfr[7]); - bputs(tbfr, ofp); ++no; + no += bputs(tbfr, ofp); } } if( ifp != stdin ) fclose(ifp); } -void list_po(FILE *ifp, FILE *ofp) +void list_po(FILE *ifp, FILE *ofp, int xeqx = 0, int nnul = 0) { int no = 0; int dup = 0, nul = 0; @@ -546,8 +548,15 @@ void list_po(FILE *ifp, FILE *ofp) xlat2(&tbfr[0], str); txt.append((const char*)str); ++no; } - if( !txt.size() ) { ++nul; continue; } - if( !key.compare(txt) ) { ++dup; continue; } + if( nnul && !txt.size() ) { + ++nul; + if( nnul > 0 ) continue; + } + else if( xeqx && !key.compare(txt) ) { + ++dup; + if( xeqx > 0 ) continue; + } + else if( nnul < 0 || xeqx < 0 ) continue; xlat4(key.c_str(), str); fprintf(ofp, "%s,", (char *)str); xlat4(txt.c_str(), str); @@ -558,9 +567,11 @@ void list_po(FILE *ifp, FILE *ofp) static void usage(const char *av0) { - printf("test csv %s csv < data.csv\n",av0); - printf("test po %s po < data.po\n",av0); - printf("get strings %s key < xgettext.po\n",av0); + printf("list csv %s csv < data.csv > data.po\n",av0); + printf("list po %s po < data.po > data.csv\n",av0); + printf("list po %s dups < data.po\n",av0); + printf("list po %s nodups < data.po\n",av0); + printf("get strings %s key < xgettext.po\n",av0); printf("gen xlation %s xlat xgettext.po xlat.csv\n",av0); printf("gen xlation %s xlat - text,xlat ... < xgettext.po\n",av0); exit(1); @@ -577,12 +588,24 @@ int main(int ac, char **av) if( !strcmp(av[1],"csv") ) { // test csv load(stdin, 0); for( Trans::iterator it = trans.begin(); it!=trans.end(); ++it ) { - uint8_t str[MX_STR]; xlat3(it->second.c_str(), str); - printf("key = \"%s\", val = %s\n", it->first.c_str(), (char *)str); + uint8_t str1[MX_STR]; xlat3(it->first.c_str(), str1); + printf("msgid %s\n", (char *)str1); + uint8_t str2[MX_STR]; xlat3(it->second.c_str(), str2); + printf("msgstr %s\n\n", (char *)str2); } return 0; } + if( !strcmp(av[1],"dups") ) { // test po + list_po(stdin, stdout, -1, -1); + return 0; + } + + if( !strcmp(av[1],"nodups") ) { // test po + list_po(stdin, stdout, 1, 1); + return 0; + } + if( !strcmp(av[1],"po") ) { // test po list_po(stdin, stdout); return 0;