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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
|
// #define POXML_DEBUG
#include "parser.h"
#include <iostream>
#include <stdlib.h>
#include <assert.h>
#include <QDebug>
#include <QFile>
#include <QRegularExpression>
#include <QTextStream>
#include <QXmlStreamReader>
using namespace std;
static int countRev( const QString & str, QChar ch, int idx ) {
const int strLength = str.length();
if ( idx < 0 )
idx += strLength;
else if ( idx >= strLength )
idx = strLength;
int count = 0;
for ( int i = 0 ; i <= idx ; ++i )
count += ( str[i] == ch );
return count;
}
static const char *singletags[] = {"beginpage","imagedata", "colspec", "spanspec",
"anchor", "xref", "area",
"footnoteref", "void", "inlinegraphic",
"glosssee", "graphic", "xi:include",
nullptr};
static const char *cuttingtags[] = {"bridgehead", "trans_comment", "para", "title", "term",
"entry", "contrib", "keyword", "example",
"note", "footnote", "caution",
"informalexample", "remark", "comment",
"imageobject", "varlistentry", "thead",
"tbody", "tgroup", "row", "screenshot", "screeninfo",
"variablelist", "procedure", "step",
"task", "taskrelated", "taskprerequisites", "tasksummary",
"holder", "listitem", "important",
"author", "itemizedlist", "orderedlist",
"caption", "textobject", "mediaobject",
"tip", "glossdef", "inlinemediaobject",
"simplelist", "member", "glossentry",
"areaspec", "corpauthor", "indexterm",
"calloutlist", "callout", "subtitle",
"table", "part", "xi:fallback", "primary",
"secondary", "chapter", "sect1", "sect2",
"figure", "informalfigure", "abstract", "sect3", "sect", "sect4",
"warning", "preface", "authorgroup", "keywordset",
"informaltable", "qandaentry", "question", "answer",
"othercredit", "affiliation", "qandaset",
"cmdsynopsis", "funcsynopsis", "funcsynopsisinfo" ,
"epigraph", "attribution", "glossary", "chapterinfo",
"glossdiv", "blockquote", "simplesect", "section",
"qandadiv", "refsect1", "refmeta", "formalpara",
"refentry", "refnamediv", "refpurpose", "refentrytitle",
"refmiscinfo", "refsect2", "refsect3", "refsect1info",
"refsect2info", "refsect3info", "refsection", "refsectioninfo",
"refsynopsisdiv", "refsysnopsisdivinfo", "remark",
"revdescription", "glossentry", "partinfo",
"segmentedlist", "segtitle", "seg", "seglistitem", "screenco",
"titleabbrev", "date", "authorinitials", "holder", "releaseinfo",
nullptr};
static const char *literaltags[] = {"literallayout", "synopsis", "screen",
"programlisting", nullptr};
void StructureParser::startDocument()
{
infos_reg = QRegularExpression(QStringLiteral("\\s*poxml_line=\"(\\d+)\" poxml_col=\"(\\d+)\""));
do_not_split_reg = QRegularExpression(QStringLiteral("\\s*condition=\"do-not-split\""));
message = QString();
inside = 0;
}
bool StructureParser::isCuttingTag(const QString &qName)
{
int index = 0;
while (cuttingtags[index]) {
if (QLatin1String(cuttingtags[index]) == qName)
return true;
index++;
}
return isLiteralTag(qName);
}
bool StructureParser::isSingleTag(QStringView qName)
{
int index = 0;
while (singletags[index]) {
if (QLatin1String(singletags[index]) == qName)
return true;
index++;
}
return false;
}
bool StructureParser::isLiteralTag(const QString &qName)
{
int index = 0;
while (literaltags[index]) {
if (QLatin1String(literaltags[index]) == qName)
return true;
index++;
}
return false;
}
void StructureParser::skippedEntity ( QStringView name )
{
if (inside)
message += QString::fromLatin1("&%1;").arg(name);
}
void StructureParser::startElement( int lineNumber, int columnNumber, QStringView qName, const QXmlStreamAttributes & attr )
{
const QString tname = qName.toString().toLower();
bool first = false;
if (isCuttingTag(tname)) {
if (!inside) {
message = QString();
list.pc.increasePara();
startline = lineNumber;
startcol = columnNumber;
first = true;
}
inside++;
}
if (inside)
{
QString tmp = QLatin1Char('<') + tname;
for (int i = 0; i < attr.length(); i++) {
tmp += QString::fromLatin1(" %1=\"%2\"").arg(attr[i].qualifiedName(), attr[i].value());
}
tmp += QString::fromLatin1(" poxml_line=\"%1\"").arg(lineNumber);
tmp += QString::fromLatin1(" poxml_col=\"%1\"").arg(columnNumber);
if (isSingleTag(qName))
tmp += QString::fromLatin1("/>");
else
tmp += QLatin1Char('>');
message += tmp;
if (first)
startcol -= message.length();
}
if (tname == QLatin1String("anchor") || QStringView(tname).left(4) == QLatin1String("sect") || tname == QLatin1String("chapter"))
if (!attr.value("id").isEmpty()) list.pc.addAnchor(attr.value("id").toString());
}
bool StructureParser::isClosure(const QString &message)
{
assert(message.at(0) == QLatin1Char('<'));
int endindex = 1;
while (!message.at(endindex).isSpace() && message.at(endindex) != QLatin1Char('>'))
endindex++;
QString tag = message.mid(1, endindex - 1);
return closureTag(message, tag);
}
bool StructureParser::closureTag(const QString& message, const QString &tag)
{
#ifdef POXML_DEBUG
qDebug("closureTag %s %s", qPrintable(message), qPrintable(tag));
#endif
int inside = 0;
int index = 0;
const int messageLength = message.length();
while (true)
{
int nextclose = message.indexOf(QRegularExpression(QString::fromLatin1("</%1[\\s>]").arg(tag)), index);
int nextstart = message.indexOf(QRegularExpression(QString::fromLatin1("<%1[>\\s]").arg(tag)), index);
// qDebug("finding %d %d %d %d", nextstart, nextclose, index, inside);
if (nextclose == -1) {
#ifdef POXML_DEBUG
qDebug("ending on no close anymore %d %d %d %d", (!inside && index >= messageLength), inside, index, messageLength);
#endif
return !inside && index >= messageLength;
}
if (nextstart == -1)
nextstart = messageLength + 1;
if (nextstart < nextclose) {
inside++;
index = nextstart + 1;
index = message.indexOf(QLatin1Char('>'), index);
index++;
} else {
inside--;
index = nextclose + 1;
index = message.indexOf(QLatin1Char('>'), index);
index++;
if (!inside) {
#ifdef POXML_DEBUG
qDebug("ending on exit %d", index >= messageLength);
#endif
return index >= messageLength;
}
}
}
}
void StructureParser::descape(QString &message)
{
int index = 0;
stripWhiteSpace( message );
int inside = 0;
bool lastws = false;
while (index < message.length()) {
switch (message.at(index).toLatin1()) {
case '\n':
case '\t':
case '\r':
if (!inside)
message[index] = QLatin1Char(' ');
case ' ':
if (!inside && lastws)
message[index] = QLatin1Char('\010');
lastws = true;
break;
case '<': {
int endindex = index+1;
while (endindex < message.length() && !message.at(endindex).isSpace() &&
message.at(endindex) != QLatin1Char('>'))
endindex++;
QString tag = message.mid(index + 1, endindex - index - 1);
if (tag.at(0) == QLatin1Char('/')) {
if (isLiteralTag(tag.mid(1)))
inside--;
} else
if (isLiteralTag(tag))
inside++;
break;
}
default:
lastws = false;
}
index++;
}
message.remove(QLatin1Char('\010'));
}
bool StructureParser::formatMessage(MsgBlock &msg) const
{
#ifdef POXML_DEBUG
qDebug("formatMessage %s", qPrintable(msg.msgid));
#endif
int offset = 0;
bool changed = false;
bool recurse = true;
if (msg.msgid.isEmpty())
return true;
for (int index = 0; msg.msgid.at(index) == QLatin1Char(' '); index++, offset++)
;
stripWhiteSpace( msg.msgid );
// removing starting single tags
for (int index = 0; singletags[index]; index++)
{
int slen = strlen(singletags[index]);
if (!msg.msgid.isEmpty() &&
msg.msgid.at(0) == QLatin1Char('<') && QStringView(msg.msgid).mid(1, slen) == QLatin1String(singletags[index]) &&
!msg.msgid.at( slen + 1 ).isLetterOrNumber() )
{
#ifdef POXML_DEBUG
qDebug("removing single tag %s", singletags[index]);
#endif
int strindex = slen + 1;
strindex = msg.msgid.indexOf(QLatin1Char('>'), strindex);
msg.msgid = msg.msgid.mid(strindex + 1);
changed = true;
offset += strindex + 1;
for (int index = 0; index < msg.msgid.length() && msg.msgid.at(index) == QLatin1Char(' '); index++, offset++)
;
stripWhiteSpace( msg.msgid );
}
}
while (msg.msgid.right(2) == QStringLiteral("/>") && msg.msgid.startsWith(QLatin1Char('<')))
{
int strindex = msg.msgid.length() - 2;
strindex = msg.msgid.lastIndexOf(QLatin1Char('<'), strindex);
msg.msgid = msg.msgid.left(strindex);
stripWhiteSpace( msg.msgid ); // only removed space at the end
changed = true;
}
for (int index = 0; index < msg.msgid.length() && msg.msgid.at(index) == QLatin1Char(' '); index++, offset++)
;
stripWhiteSpace( msg.msgid );
while (true) {
if (msg.msgid.isEmpty() || msg.msgid.at(0) != QLatin1Char('<'))
break;
if (msg.msgid.at(msg.msgid.length() - 1) != QLatin1Char('>'))
break;
int strindex = 1;
while (msg.msgid.at(strindex) != QLatin1Char(' ') && msg.msgid.at(strindex) != QLatin1Char('>'))
strindex++;
QString starttag = msg.msgid.mid(1, strindex - 1);
int endindex = msg.msgid.length() - 2;
while (msg.msgid.at(endindex) != QLatin1Char('<') && msg.msgid.at(endindex + 1) != QLatin1Char('/'))
endindex--;
#ifdef POXML_DEBUG
qDebug("endIndex %d", endindex);
#endif
strindex = endindex;
QString orig = msg.msgid;
QString endtag = msg.msgid.mid(endindex + 2, msg.msgid.length() - (endindex + 2) - 1);
QString endtag_attr = endtag.mid(endtag.indexOf(QLatin1Char(' ')), endtag.length());
endtag.remove(infos_reg);
if (endtag == starttag) {
if (!closureTag(msg.msgid, starttag))
break;
// removing start/end tags
msg.msgid = msg.msgid.left(endindex);
strindex = msg.msgid.indexOf(QLatin1Char('>'), 0);
QString attr = msg.msgid.left(strindex);
QString real_attr = attr.mid(starttag.length() + 1);
const int real_attr_infos_reg_pos = infos_reg.match(real_attr).capturedStart();
if (real_attr_infos_reg_pos >= 0) {
real_attr = real_attr.left(real_attr_infos_reg_pos);
}
msg.msgid = msg.msgid.mid(strindex + 1);
msg.attrs = real_attr;
offset += strindex + 1;
for (int index = 0; index < msg.msgid.length() && msg.msgid.at(index) == QLatin1Char(' '); index++, offset++)
;
stripWhiteSpace( msg.msgid );
msg.tag = starttag;
if (const auto match = infos_reg.match(attr); match.hasMatch()) {
msg.lines.first().start_line = match.capturedView(1).toInt();
msg.lines.first().start_col = match.capturedView(2).toInt();
#ifdef POXML_DEBUG
qDebug("col %s %s %d", qPrintable(attr), qPrintable(msg.msgid), msg.lines.first().start_col);
#endif
offset = 0;
if (const auto match = infos_reg.match(endtag_attr); match.hasMatch()) {
msg.lines.first().end_line = match.capturedView(1).toInt();
msg.lines.first().end_col = match.capturedView(2).toInt() + 1;
}
}
if (do_not_split_reg.match(attr).hasMatch()) {
msg.do_not_split = true;
break;
}
changed = true;
} else
break;
}
#ifdef POXML_DEBUG
qDebug("formatMessage result %s %d %d", qPrintable(msg.msgid), changed && recurse, msg.lines.first().start_col);
#endif
msg.lines.first().offset += offset;
if (msg.do_not_split)
recurse = false;
if (changed && recurse)
formatMessage(msg);
return !recurse; // indicates an abort
}
MsgList StructureParser::splitMessage(const MsgBlock &mb)
{
MsgList result;
MsgBlock msg1 = mb;
MsgBlock msg2 = mb;
QString message = mb.msgid;
#ifdef POXML_DEBUG
qDebug("splitMessage %s", qPrintable(message));
#endif
if (!message.isEmpty() && message.at(0) == QLatin1Char('<')) {
int endindex = 1;
while (!message.at(endindex).isSpace() && message.at(endindex) != QLatin1Char('>'))
endindex++;
QString tag = message.mid(1, endindex - 1);
const int tagLength = tag.length();
if (closureTag(message, tag))
goto error;
if (isCuttingTag(tag))
{
// if the message starts with a cutting tag, this tag has to
// end in between. We split both messages and format them
int strindex = endindex;
strindex++;
int inside = 1;
while (true) {
#ifdef POXML_DEBUG
qDebug("inside %s %d", qPrintable(message.mid(strindex, 35)), inside);
#endif
// the exception for poxml_* attributes is made in the closing tag
int closing_index = message.indexOf(QRegularExpression(QString::fromLatin1("</%1[\\s>]").arg(tag)),
strindex);
int starting_index = message.indexOf(QRegularExpression(QString::fromLatin1("<%1[\\s>]").arg(tag)),
strindex);
#ifdef POXML_DEBUG
qDebug("index1 %d %d %d", closing_index, starting_index, strindex);
#endif
// when a new start was found, we set the start_index after the next match
// (and set strindex to it later - increasing inside)
if (starting_index != -1) {
starting_index += tagLength + 1;
starting_index = message.indexOf(QLatin1Char('>'), starting_index);
starting_index++;
}
#ifdef POXML_DEBUG
qDebug("index %d %d %d", closing_index, starting_index, strindex);
#endif
assert(closing_index != -1);
closing_index += 3 + tagLength;
while (message.at(closing_index - 1) != QLatin1Char('>'))
closing_index++;
if (starting_index == -1) {
strindex = closing_index;
#ifdef POXML_DEBUG
qDebug("set strindex %d", strindex);
#endif
inside--;
if (!inside)
break;
continue;
}
if (closing_index < starting_index)
{
strindex = closing_index;
inside--;
} else {
strindex = starting_index;
inside++;
}
if (!inside)
break;
}
#ifdef POXML_DEBUG
qDebug("split into %s -AAAAAANNNNNNDDDDDD- %s", qPrintable(message.left(strindex)), qPrintable(message.mid(strindex)));
#endif
msg1.msgid = message.left(strindex);
bool leave = formatMessage(msg1);
msg2.msgid = message.mid(strindex);
msg2.lines.first().offset += strindex;
leave = leave & formatMessage(msg2);
if (msg1.lines.first().end_line > msg2.lines.first().start_line ||
(msg1.lines.first().end_line == msg2.lines.first().start_line &&
msg1.lines.first().end_col > msg2.lines.first().start_col))
{
msg2.lines.first().start_line = msg1.lines.first().end_line;
msg2.lines.first().start_col = msg1.lines.first().end_col - 1;
}
#ifdef POXML_DEBUG
qDebug("splited %d-%d(%s) and %d-%d(%s)", msg1.lines.first().end_line,msg1.lines.first().end_col,
qPrintable(msg1.msgid),
msg2.lines.first().start_line,msg2.lines.first().start_col, qPrintable(msg2.msgid));
#endif
if (leave) {
result.append(msg1);
result.append(msg2);
return result;
}
result = splitMessage(msg1);
result += splitMessage(msg2);
return result;
}
}
if (!message.isEmpty() && message.at(message.length() - 1 ) == QLatin1Char('>'))
{
int endindex = message.length() - 1;
while (endindex >= 0 && (message.at(endindex) != QLatin1Char('<') || message.at(endindex + 1) != QLatin1Char('/')))
endindex--;
QString tag = message.mid(endindex + 2, message.length() - endindex - 3);
const int indexOfSpace = tag.indexOf(QLatin1Char(' '));
if (indexOfSpace > 0 ) {
tag = tag.left(indexOfSpace);
}
#ifdef POXML_DEBUG
qDebug("behind tag %s", qPrintable(tag));
#endif
if (isCuttingTag(tag))
{
// if the message ends with a cutting tag, this tag has to
// start in between. We split both messages and format them
int strindex = endindex;
int inside = 1;
while (true) {
#ifdef POXML_DEBUG
qDebug("inside %s %d", qPrintable(message.mid(strindex, 35)), inside);
#endif
int closing_index = message.lastIndexOf(QRegularExpression(QString::fromLatin1("</%1[\\s>]").arg(tag)),
strindex - 1);
int starting_index = message.lastIndexOf(QRegularExpression(QString::fromLatin1("<%1[\\s>]").arg(tag)),
strindex - 1);
#ifdef POXML_DEBUG
qDebug("index1 %d %d %d", closing_index, starting_index, strindex);
#endif
if (starting_index == -1) {
assert(inside == 1);
break;
}
if (closing_index > starting_index)
{
strindex = closing_index;
inside++;
} else {
strindex = starting_index;
inside--;
}
if (!inside)
break;
}
#ifdef POXML_DEBUG
qDebug("split2 into \"%s\" -AAAAAANNNNNNNNNDDDDDDDDDDD- \"%s\"", qPrintable(message.left(strindex)), qPrintable(message.mid(strindex)));
#endif
msg1.msgid = message.left(strindex);
formatMessage(msg1);
msg2.msgid = message.mid(strindex);
msg2.lines.first().offset += strindex;
formatMessage(msg2);
if (msg1.lines.first().end_line > msg2.lines.first().start_line ||
(msg1.lines.first().end_line == msg2.lines.first().start_line &&
msg1.lines.first().end_col > msg2.lines.first().start_col))
{
msg1.lines.first().end_line = msg2.lines.first().start_line;
msg1.lines.first().end_col = msg2.lines.first().start_col - 1;
}
#ifdef POXML_DEBUG
qDebug("splited %d-%d(%s) and %d-%d(%s)", msg1.lines.first().end_line,msg1.lines.first().end_col,
qPrintable(msg1.msgid),
msg2.lines.first().start_line,msg2.lines.first().start_col, qPrintable(msg2.msgid));
#endif
result = splitMessage(msg1);
result += splitMessage(msg2);
return result;
}
}
error:
result.append(mb);
return result;
}
void StructureParser::endElement( int lineNumber, int columnNumber, QStringView qName)
{
const QString tname = qName.toString().toLower();
// qDebug("endElement %s - %s %d", qPrintable(tname), qPrintable(message), inside);
if (inside) {
if (!isSingleTag(qName)) {
message += QString::fromLatin1("</%1 poxml_line=\"%2\" poxml_col=\"%3\">").arg(tname).arg(lineNumber).arg(columnNumber);
}
}
if (isCuttingTag(tname)) {
inside--;
if (!inside) {
MsgBlock m;
descape(message);
m.msgid = message;
BlockInfo bi;
bi.start_line = startline;
bi.start_col = startcol;
bi.end_line = lineNumber;
bi.end_col = columnNumber + 1;
if (m.lines.isEmpty()) bi.offset = 0;
else bi.offset = m.lines.first().offset;
m.lines.append(bi);
formatMessage(m);
MsgList messages = splitMessage(m);
for (MsgList::Iterator it = messages.begin();
it != messages.end(); ++it)
{
#ifdef POXML_DEBUG
qDebug("parser '%s' %d '%s' %d:%d", qPrintable((*it).msgid), (*it).lines.first().offset, qPrintable(message.mid((*it).lines.first().offset, 15)), (*it).lines.first().start_line, (*it).lines.first().start_col);
#endif
// if the remaining text still starts with a tag, the poxml_ info
// is most probably more correct
if (!(*it).msgid.isEmpty() && (*it).msgid.at(0) == QLatin1Char('<') && isClosure((*it).msgid)) {
if (const auto match = infos_reg.match((*it).msgid); match.hasMatch()) {
(*it).lines.first().start_line = match.capturedView(1).toInt();
(*it).lines.first().start_col = match.capturedView(2).toInt();;
(*it).lines.first().offset = 0;
}
}
(*it).msgid.remove(infos_reg);
if (!(*it).msgid.isEmpty())
list.append(*it);
}
}
}
}
void StructureParser::comment ( QStringView c )
{
if (c.left(7) != QLatin1String(" TRANS:"))
return;
assert(false);
}
QString StructureParser::escapeLiterals( const QString &_contents) {
QString contents = _contents;
contents.replace(QChar::fromLatin1('\n'), QString::fromLatin1("&POXML_LINEFEED;"));
contents.replace(QChar::fromLatin1('<'), QString::fromLatin1("&POXML_LT;"));
contents.replace(QChar::fromLatin1('>'), QString::fromLatin1("&POXML_GT;"));
contents.replace(QChar::fromLatin1('\t'), QString::fromLatin1(" "));
contents.replace(QChar::fromLatin1(' '), QString::fromLatin1("&POXML_SPACE;"));
return contents;
}
QString StructureParser::descapeLiterals( const QString &_contents) {
QString contents = _contents;
contents.replace(QLatin1String("&POXML_LINEFEED;"), QLatin1String("\n"));
contents.replace(QLatin1String("&POXML_LT;"), QLatin1String("<"));
contents.replace(QLatin1String("&POXML_GT;"), QLatin1String(">"));
contents.replace(QLatin1String("&POXML_SPACE;"), QLatin1String(" "));
contents.replace(QLatin1String("!POXML_AMP!"), QLatin1String("&"));
return contents;
}
void StructureParser::stripWhiteSpace( QString &contents)
{
contents = contents.trimmed();
bool changed;
do {
changed = false;
if (contents.startsWith(QLatin1String("&POXML_LINEFEED;"))) {
contents = contents.mid(strlen("&POXML_LINEFEED;"));
changed = true;
}
if (contents.startsWith(QLatin1String("&POXML_SPACE;"))) {
contents = contents.mid(strlen("&POXML_SPACE;"));
changed = true;
}
if (contents.endsWith(QLatin1String("&POXML_LINEFEED;"))) {
contents.chop(strlen("&POXML_LINEFEED;"));
changed = true;
}
if (contents.endsWith(QLatin1String("&POXML_SPACE;"))) {
contents.chop(strlen("&POXML_SPACE;"));
changed = true;
}
} while (changed);
}
void StructureParser::cleanupTags( QString &contents )
{
contents.replace(QChar::fromLatin1('&'), QString::fromLatin1("!POXML_AMP!"));
for (int index = 0; literaltags[index]; index++) {
const QRegularExpression start(QString::fromLatin1("<%1[\\s>]").arg(QString::fromLatin1(literaltags[index])));
const QRegularExpression end(QString::fromLatin1("</%1[\\s>]").arg(QString::fromLatin1(literaltags[index])));
int strindex = 0;
while (true) {
strindex = contents.indexOf(start, strindex);
if (strindex < 0)
break;
strindex = contents.indexOf(QLatin1Char('>'), strindex);
strindex++; // one more
int endindex = contents.indexOf(end, strindex);
QString part = contents.mid(strindex, endindex - strindex);
QString newpart = escapeLiterals(part);
contents.replace(strindex, part.length(), newpart);
// this assumes that literal tags to not overlap
strindex = strindex + newpart.length();
}
}
const QRegularExpression unclosed(QStringLiteral("</(\\w*)\\s\\s*>"));
int index = 0;
while (true) {
const auto match = unclosed.match(contents, index );
if (!match.hasMatch())
break;
index = match.capturedStart();
QString tag = match.captured(1);
contents.replace(index, match.capturedLength(), QString::fromLatin1("</%1>").arg(tag));
}
const QRegularExpression start(QStringLiteral("<((\\s*[^<>\\s])*)\\s\\s*(/*)>"), QRegularExpression::InvertedGreedinessOption);
index = -1;
while (true) {
const auto match = start.match(contents, index + 1);
if (!match.hasMatch())
break;
index = match.capturedStart();
QString tag = match.captured(1);
QString cut = match.capturedTexts().last();
// qDebug("UNCLO %s %d -%s- -%s-", qPrintable(start.cap(0)), index, qPrintable(tag), qPrintable(cut));
contents.replace(index, match.capturedLength(), QString::fromLatin1("<%1%2>").arg(tag, cut));
}
const QRegularExpression singletag(QStringLiteral("<(\\w*)\\s([^><]*)/>"));
index = -1;
while (true) {
const auto match = singletag.match(contents, index + 1);
if (!match.hasMatch())
break;
index = match.capturedStart();
const QString tag = match.captured(1);
if (!StructureParser::isSingleTag(tag)) {
contents.replace(index, match.capturedLength(), QString::fromLatin1("<%1 %2></%3>").arg(tag, match.captured(2), tag));
}
}
const QRegularExpression trans_comment(QStringLiteral("<!-- TRANS:([^<>]*)-->"));
index = -1;
while (true) {
const auto match = trans_comment.match(contents, index + 1);
if (!match.hasMatch())
break;
index = match.capturedStart();
QString msgid = match.captured(1);
contents.replace(index, match.capturedLength(), QString::fromLatin1("<trans_comment>%1</trans_comment>").arg(msgid));
}
#ifdef POXML_DEBUG
qDebug("final %s", qPrintable(contents));
#endif
}
static bool removeEmptyTag( QString &contents, const QString & tag)
{
// qDebug("cont %s %s", qPrintable(contents), qPrintable(tag));
const QRegularExpression empty(QString::fromLatin1("<%1[^>]*>[\\s\n]+</%2\\s*>").arg(tag, tag));
int strindex = 0;
while (true) {
const auto match = empty.match(contents, strindex);
if (!match.hasMatch())
break;
strindex = match.capturedStart();
qDebug("found empty tag %s", qPrintable(tag));
contents.replace(strindex, match.capturedLength(), QLatin1Char(' '));
strindex++;
return true;
}
return false;
}
void StructureParser::removeEmptyTags( QString &contents )
{
bool removed;
do {
removed = false;
for (int index = 0; cuttingtags[index]; index++) {
if (removeEmptyTag(contents, QLatin1String(cuttingtags[index]))) {
removed = true;
break;
}
}
// as glossterm has two different semantics, it's likely
// to break something when it's cuttingtag
if (removeEmptyTag(contents, QLatin1String("glossterm")))
removed = true;
} while (removed);
}
void StructureParser::characters(QStringView ch)
{
if (inside && !ch.isEmpty())
message += ch;
}
static MsgList parseContents(const QString &contents)
{
QXmlStreamReader xmlReader(contents);
StructureParser handler;
bool foundDtd = false;
while (!xmlReader.atEnd()) {
const QXmlStreamReader::TokenType token = xmlReader.readNext();
switch (token) {
case QXmlStreamReader::StartDocument:
handler.startDocument();
break;
case QXmlStreamReader::EndDocument:
// Nothing
break;
case QXmlStreamReader::Comment:
handler.comment(xmlReader.text());
break;
case QXmlStreamReader::DTD:
foundDtd = true;
break;
case QXmlStreamReader::StartElement:
handler.startElement(xmlReader.lineNumber(), xmlReader.columnNumber(), xmlReader.qualifiedName(), xmlReader.attributes());
break;
case QXmlStreamReader::EndElement:
handler.endElement(xmlReader.lineNumber(), xmlReader.columnNumber(), xmlReader.qualifiedName());
break;
case QXmlStreamReader::Characters:
handler.characters(xmlReader.text());
break;
case QXmlStreamReader::EntityReference:
handler.skippedEntity(xmlReader.name());
break;
case QXmlStreamReader::Invalid:
// QXmlStreamReader is annoying and won't accept custom entities like &POXML_LINEFEED;
// unless the file has a DTD, so if we fail parsing, inject a DTD into the XML contents and parse again
if (!foundDtd) {
const QRegularExpression xmlDeclarationRegExp(QStringLiteral("^.*<\\?xml.*?\\?>"));
const QRegularExpressionMatch match = xmlDeclarationRegExp.match(contents);
const QString fakeDTD = QStringLiteral("<!DOCTYPE fake PUBLIC \"fake\" \"fake\" []>");
if (match.hasMatch()) {
const QString xmlDeclaration = match.captured(0);
return parseContents(xmlDeclaration + fakeDTD + contents.mid(xmlDeclaration.indexOf(xmlDeclaration) + xmlDeclaration.length()));
} else {
return parseContents(fakeDTD + contents);
}
}
qWarning() << "Invalid token found" << xmlReader.errorString() << xmlReader.lineNumber() << xmlReader.columnNumber() << contents;
break;
case QXmlStreamReader::ProcessingInstruction:
// Nothing
break;
default:
qWarning() << "unexpected token" << token;
}
}
return handler.getList();
}
MsgList parseXML(const char *filename)
{
QFile xmlFile(QFile::decodeName(filename));
xmlFile.open(QIODevice::ReadOnly);
QByteArray ccontents = xmlFile.readAll();
xmlFile.close();
QString contents = QString::fromUtf8( ccontents );
StructureParser::cleanupTags(contents);
MsgList english;
{
// find internal entities that start with "i18n-", and extract
// their replacement texts:
const QRegularExpression rx( QStringLiteral("<!ENTITY\\s+([^\\s]+)\\s+([\"'])") );
for ( int index = 0 ;; ) {
const auto match = rx.match(contents, index);
if (!match.hasMatch()) {
break;
}
index = match.capturedStart();
const QString name = match.captured( 1 );
const QChar delim = match.captured( 2 ).at( 0 );
const int start = index;
index = contents.indexOf( delim, index + match.capturedLength() );
index = contents.indexOf( QLatin1Char('>'), index );
if ( !name.startsWith( QLatin1String("i18n-") ) )
continue;
const QString entity = contents.mid( start, index - start + 1 );
MsgBlock block;
block.tag = QStringLiteral("!ENTITY");
BlockInfo bi;
bi.start_line = countRev( contents, QLatin1Char('\n'), index ) + 1;
bi.start_col = start - contents.lastIndexOf( QLatin1Char('\n'), start ) - 1;
bi.end_line = bi.start_line + entity.count( QLatin1Char('\n') );
bi.end_col = index - contents.lastIndexOf( QLatin1Char('\n'), index ) + 1;
#ifdef POXML_DEBUG
qDebug( "ENTITY %s @ i:%d l:%d c:%d->l:%d c:%d", qPrintable( name ),
index, bi.start_line, bi.start_col, bi.end_line, bi.end_col );
#endif
block.lines.push_back( bi );
block.msgid = entity;
english.push_back( block );
}
}
// Remove all entity definitions now:
while (true) {
int index = contents.indexOf(QStringLiteral("<!ENTITY"));
if (index < 0)
break;
int inside = 0;
int endindex = index + 1;
QString replacement;
while (contents.at(endindex) != QLatin1Char('>') || inside)
{
switch (contents.at(endindex).toLatin1()) {
case '<':
inside++; break;
case '>':
inside--; break;
case '\n':
replacement += QLatin1Char('\n');
break;
default:
break;
}
endindex++;
}
endindex++;
contents.replace(index, endindex - index, replacement);
}
english += parseContents(contents);
bool changed = false;
do {
changed = false;
QMap<QString, QString> msgids;
for (MsgList::Iterator it = english.begin();
it != english.end(); it++)
{
QMap<QString,QString>::Iterator found = msgids.find((*it).msgid);
if ((*it).msgid.length() < 4) {
(*it).msgid = QString::fromLatin1("<%1>%2</%3>").arg((*it).tag, (*it).msgid, (*it).tag);
changed = true;
break;
}
if (found != msgids.end()) {
if (found.value() != (*it).tag) {
#ifdef POXML_DEBUG
qDebug("same msgid for '%s' and '%s'", qPrintable(found.value()), qPrintable((*it).tag));
#endif
changed = true;
QString msgid = (*it).msgid;
for (MsgList::Iterator it2 = english.begin();
it2 != english.end(); it2++)
{
if ((*it2).msgid == msgid)
(*it2).msgid = QString::fromLatin1("<%1%2>%3</%4>").arg((*it2).tag, (*it2).attrs, msgid, (*it2).tag);
}
break;
}
} else {
msgids.insert((*it).msgid, (*it).tag);
}
}
} while (changed);
// Remove any single word command block since
// it does not make sense to translate a command line command
{
MsgList::Iterator it = english.begin();
while (it != english.end())
{
if ((*it).tag == QLatin1String("command"))
{
bool hasSpaces = false;
for (int i = 0; !hasSpaces && i < (*it).msgid.length(); ++i)
hasSpaces = (*it).msgid[i].isSpace();
if (!hasSpaces)
it = english.erase(it);
else
++it;
}
else
{
++it;
}
}
}
return english;
}
|