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 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <rtl/ustrbuf.hxx>
#include <vcl/svapp.hxx>
#include <svtools/htmltokn.h>
#include <comphelper/string.hxx>
#include "css1kywd.hxx"
#include "parcss1.hxx"
// Loop-Check: Um Endlos-Schleifen zu vermeiden, wird in jeder
// Schalife geprueft, ob ein Fortschritt in der Eingabe-Position
// stattgefunden hat
#define LOOP_CHECK
#ifdef LOOP_CHECK
#define LOOP_CHECK_DECL \
xub_StrLen nOldInPos = STRING_MAXLEN;
#define LOOP_CHECK_RESTART \
nOldInPos = STRING_MAXLEN;
#define LOOP_CHECK_CHECK( where ) \
OSL_ENSURE( nOldInPos!=nInPos || cNextCh==(sal_Unicode)EOF, where ); \
if( nOldInPos==nInPos && cNextCh!=(sal_Unicode)EOF ) \
break; \
else \
nOldInPos = nInPos;
#else
#define LOOP_CHECK_DECL
#define LOOP_CHECK_RESTART
#define LOOP_CHECK_CHECK( where )
#endif
const sal_Int32 MAX_LEN = 1024;
void CSS1Parser::InitRead( const String& rIn )
{
nlLineNr = 0;
nlLinePos = 0;
bWhiteSpace = sal_True; // Wenn noch nichts gelesen wurde ist das wie WS
bEOF = sal_False;
eState = CSS1_PAR_WORKING;
nValue = 0.;
aIn = rIn;
nInPos = 0;
cNextCh = GetNextChar();
nToken = GetNextToken();
}
sal_Unicode CSS1Parser::GetNextChar()
{
if( nInPos >= aIn.Len() )
{
bEOF = sal_True;
return (sal_Unicode)EOF;
}
sal_Unicode c = aIn.GetChar( nInPos );
nInPos++;
if( c == '\n' )
{
IncLineNr();
SetLinePos( 1L );
}
else
IncLinePos();
return c;
}
// Diese Funktion realisiert den in
//
// http://www.w3.orh/pub/WWW/TR/WD-css1.html
// bzw. http://www.w3.orh/pub/WWW/TR/WD-css1-960220.html
//
// beschriebenen Scanner fuer CSS1. Es handelt sich um eine direkte
// Umsetzung der dort beschriebenen Lex-Grammatik
//
CSS1Token CSS1Parser::GetNextToken()
{
CSS1Token nRet = CSS1_NULL;
aToken.Erase();
do {
// Merken, ob davor White-Space gelesen wurde
sal_Bool bPrevWhiteSpace = bWhiteSpace;
bWhiteSpace = sal_False;
sal_Bool bNextCh = sal_True;
switch( cNextCh )
{
case '/': // COMMENT | '/'
{
cNextCh = GetNextChar();
if( '*' == cNextCh )
{
// COMMENT
cNextCh = GetNextChar();
sal_Bool bAsterix = sal_False;
while( !(bAsterix && '/'==cNextCh) && !IsEOF() )
{
bAsterix = ('*'==cNextCh);
cNextCh = GetNextChar();
}
}
else
{
// '/'
bNextCh = sal_False;
nRet = CSS1_SLASH;
}
}
break;
case '@': // '@import' | '@XXX'
{
cNextCh = GetNextChar();
if (comphelper::string::isalphaAscii(cNextCh))
{
// den naechsten Identifer scannen
::rtl::OUStringBuffer sTmpBuffer( 32L );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( (comphelper::string::isalnumAscii(cNextCh) ||
'-' == cNextCh) && !IsEOF() );
aToken += String(sTmpBuffer.makeStringAndClear());
// und schauen, ob wir ihn kennen
switch( aToken.GetChar(0) )
{
case 'i':
case 'I':
if( aToken.EqualsIgnoreCaseAscii(sCSS1_import) )
nRet = CSS1_IMPORT_SYM;
break;
// /Feature: PrintExt
case 'p':
case 'P':
if( aToken.EqualsIgnoreCaseAscii(sCSS1_page) )
nRet = CSS1_PAGE_SYM;
break;
// /Feature: PrintExt
}
// Fehlerbehandlung: '@ident' und alles bis
// zu einem Semikolon der dem Ende des folgenden
// Blocks ignorieren
if( CSS1_NULL==nRet )
{
aToken.Erase();
sal_uInt16 nBlockLvl = 0;
sal_Unicode cQuoteCh = 0;
sal_Bool bDone = sal_False, bEscape = sal_False;
while( !bDone && !IsEOF() )
{
sal_Bool bOldEscape = bEscape;
bEscape = sal_False;
switch( cNextCh )
{
case '{':
if( !cQuoteCh && !bOldEscape )
nBlockLvl++;;
break;
case ';':
if( !cQuoteCh && !bOldEscape )
bDone = nBlockLvl==0;
break;
case '}':
if( !cQuoteCh && !bOldEscape )
bDone = --nBlockLvl==0;
break;
case '\"':
case '\'':
if( !bOldEscape )
{
if( cQuoteCh )
{
if( cQuoteCh == cNextCh )
cQuoteCh = 0;
}
else
{
cQuoteCh = cNextCh;
}
}
break;
case '\\':
if( !bOldEscape )
bEscape = sal_True;
break;
}
cNextCh = GetNextChar();
}
}
bNextCh = sal_False;
}
}
break;
case '!': // '!' 'legal' | '!' 'important' | syntax error
{
// White Space ueberlesen
cNextCh = GetNextChar();
while( ( ' ' == cNextCh ||
(cNextCh >= 0x09 && cNextCh <= 0x0d) ) && !IsEOF() )
{
bWhiteSpace = sal_True;
cNextCh = GetNextChar();
}
if( 'i'==cNextCh || 'I'==cNextCh)
{
// den naechsten Identifer scannen
::rtl::OUStringBuffer sTmpBuffer( 32L );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( (comphelper::string::isalnumAscii(cNextCh) ||
'-' == cNextCh) && !IsEOF() );
aToken += String(sTmpBuffer.makeStringAndClear());
if( ('i'==aToken.GetChar(0) || 'I'==aToken.GetChar(0)) &&
aToken.EqualsIgnoreCaseAscii(sCSS1_important) )
{
// '!' 'important'
nRet = CSS1_IMPORTANT_SYM;
}
else
{
// Fehlerbehandlung: '!' ignorieren, IDENT nicht
nRet = CSS1_IDENT;
}
bWhiteSpace = sal_False;
bNextCh = sal_False;
}
else
{
// Fehlerbehandlung: '!' ignorieren
bNextCh = sal_False;
}
}
break;
case '\"':
case '\'': // STRING
{
// \... geht noch nicht!!!
sal_Unicode cQuoteChar = cNextCh;
cNextCh = GetNextChar();
::rtl::OUStringBuffer sTmpBuffer( MAX_LEN );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( cQuoteChar != cNextCh && !IsEOF() );
aToken += String(sTmpBuffer.makeStringAndClear());
nRet = CSS1_STRING;
}
break;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9': // NUMBER | PERCENTAGE | LENGTH
{
// die aktuelle Position retten
xub_StrLen nInPosSave = nInPos;
sal_Unicode cNextChSave = cNextCh;
sal_uInt32 nlLineNrSave = nlLineNr;
sal_uInt32 nlLinePosSave = nlLinePos;
sal_Bool bEOFSave = bEOF;
// erstmal versuchen eine Hex-Zahl zu scannen
::rtl::OUStringBuffer sTmpBuffer( 16 );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( sTmpBuffer.getLength() < 7 &&
( ('0'<=cNextCh && '9'>=cNextCh) ||
('A'<=cNextCh && 'F'>=cNextCh) ||
('a'<=cNextCh && 'f'>=cNextCh) ) &&
!IsEOF() );
if( sTmpBuffer.getLength()==6 )
{
// wir haben eine hexadezimale Farbe gefunden
aToken += String(sTmpBuffer.makeStringAndClear());
nRet = CSS1_HEXCOLOR;
bNextCh = sal_False;
break;
}
// sonst versuchen wir es mit einer Zahl
nInPos = nInPosSave;
cNextCh = cNextChSave;
nlLineNr = nlLineNrSave;
nlLinePos = nlLinePosSave;
bEOF = bEOFSave;
// erstmal die Zahl scannen
sTmpBuffer.setLength( 0L );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( (('0'<=cNextCh && '9'>=cNextCh) || '.'==cNextCh) &&
!IsEOF() );
aToken += String(sTmpBuffer.makeStringAndClear());
nValue = aToken.ToDouble();
// White Space ueberlesen
while( ( ' ' == cNextCh ||
(cNextCh >= 0x09 && cNextCh <= 0x0d) ) && !IsEOF() )
{
bWhiteSpace = sal_True;
cNextCh = GetNextChar();
}
// und nun Schauen, ob es eine Einheit gibt
switch( cNextCh )
{
case '%': // PERCENTAGE
bWhiteSpace = sal_False;
nRet = CSS1_PERCENTAGE;
break;
case 'c':
case 'C': // LENGTH cm | LENGTH IDENT
case 'e':
case 'E': // LENGTH (em | ex) | LENGTH IDENT
case 'i':
case 'I': // LENGTH inch | LENGTH IDENT
case 'p':
case 'P': // LENGTH (pt | px | pc) | LENGTH IDENT
case 'm':
case 'M': // LENGTH mm | LENGTH IDENT
{
// die aktuelle Position retten
xub_StrLen nInPosOld = nInPos;
sal_Unicode cNextChOld = cNextCh;
sal_uLong nlLineNrOld = nlLineNr;
sal_uLong nlLinePosOld = nlLinePos;
sal_Bool bEOFOld = bEOF;
// den naechsten Identifer scannen
String aIdent;
::rtl::OUStringBuffer sTmpBuffer2( 64L );
do {
sTmpBuffer2.append( cNextCh );
cNextCh = GetNextChar();
} while( (comphelper::string::isalnumAscii(cNextCh) ||
'-' == cNextCh) && !IsEOF() );
aIdent += String(sTmpBuffer2.makeStringAndClear());
// Ist es eine Einheit?
const sal_Char *pCmp1 = 0, *pCmp2 = 0, *pCmp3 = 0;
double nScale1 = 1., nScale2 = 1.;
CSS1Token nToken1 = CSS1_LENGTH,
nToken2 = CSS1_LENGTH,
nToken3 = CSS1_LENGTH;
switch( aIdent.GetChar(0) )
{
case 'c':
case 'C':
pCmp1 = sCSS1_UNIT_cm;
nScale1 = (72.*20.)/2.54; // twip
break;
case 'e':
case 'E':
pCmp1 = sCSS1_UNIT_em;
nToken1 = CSS1_EMS;
pCmp2 = sCSS1_UNIT_ex;
nToken2 = CSS1_EMX;
break;
case 'i':
case 'I':
pCmp1 = sCSS1_UNIT_inch;
nScale1 = 72.*20.; // twip
break;
case 'm':
case 'M':
pCmp1 = sCSS1_UNIT_mm;
nScale1 = (72.*20.)/25.4; // twip
break;
case 'p':
case 'P':
pCmp1 = sCSS1_UNIT_pt;
nScale1 = 20.; // twip
pCmp2 = sCSS1_UNIT_pc;
nScale2 = 12.*20.; // twip
pCmp3 = sCSS1_UNIT_px;
nToken3 = CSS1_PIXLENGTH;
break;
}
double nScale = 0.0;
OSL_ENSURE( pCmp1, "Wo kommt das erste Zeichen her?" );
if( aIdent.EqualsIgnoreCaseAscii(pCmp1) )
{
nScale = nScale1;
nRet = nToken1;
}
else if( pCmp2 &&
aIdent.EqualsIgnoreCaseAscii(pCmp2) )
{
nScale = nScale2;
nRet = nToken2;
}
else if( pCmp3 &&
aIdent.EqualsIgnoreCaseAscii(pCmp3) )
{
nScale = 1.; // nScale3
nRet = nToken3;
}
else
{
nRet = CSS1_NUMBER;
}
if( CSS1_LENGTH==nRet && nScale!=1.0 )
nValue *= nScale;
if( nRet == CSS1_NUMBER )
{
nInPos = nInPosOld;
cNextCh = cNextChOld;
nlLineNr = nlLineNrOld;
nlLinePos = nlLinePosOld;
bEOF = bEOFOld;
}
else
{
bWhiteSpace = sal_False;
}
bNextCh = sal_False;
}
break;
default: // NUMBER IDENT
bNextCh = sal_False;
nRet = CSS1_NUMBER;
break;
}
}
break;
case ':': // ':'
// link/visited/active abfangen !!!
nRet = CSS1_COLON;
break;
case '.': // DOT_W_WS | DOT_WO_WS
nRet = bPrevWhiteSpace ? CSS1_DOT_W_WS : CSS1_DOT_WO_WS;
break;
case '+': // '+'
nRet = CSS1_PLUS;
break;
case '-': // '-'
nRet = CSS1_MINUS;
break;
case '{': // '{'
nRet = CSS1_OBRACE;
break;
case '}': // '}'
nRet = CSS1_CBRACE;
break;
case ';': // ';'
nRet = CSS1_SEMICOLON;
break;
case ',': // ','
nRet = CSS1_COMMA;
break;
case '#': // '#'
cNextCh = GetNextChar();
if( ('0'<=cNextCh && '9'>=cNextCh) ||
('a'<=cNextCh && 'f'>=cNextCh) ||
('A'<=cNextCh && 'F'>=cNextCh) )
{
// die aktuelle Position retten
xub_StrLen nInPosSave = nInPos;
sal_Unicode cNextChSave = cNextCh;
sal_uLong nlLineNrSave = nlLineNr;
sal_uLong nlLinePosSave = nlLinePos;
sal_Bool bEOFSave = bEOF;
// erstmal versuchen eine Hex-Zahl zu scannen
::rtl::OUStringBuffer sTmpBuffer( 6L );
do {
sTmpBuffer.append( cNextCh );
cNextCh = GetNextChar();
} while( sTmpBuffer.getLength() < 7 &&
( ('0'<=cNextCh && '9'>=cNextCh) ||
('A'<=cNextCh && 'F'>=cNextCh) ||
('a'<=cNextCh && 'f'>=cNextCh) ) &&
!IsEOF() );
if( sTmpBuffer.getLength()==6 || sTmpBuffer.getLength()==3 )
{
// wir haben eine hexadezimale Farbe gefunden
aToken += String(sTmpBuffer.makeStringAndClear());
nRet = CSS1_HEXCOLOR;
bNextCh = sal_False;
break;
}
// sonst versuchen wir es mit einer Zahl
nInPos = nInPosSave;
cNextCh = cNextChSave;
nlLineNr = nlLineNrSave;
nlLinePos = nlLinePosSave;
bEOF = bEOFSave;
}
nRet = CSS1_HASH;
bNextCh = sal_False;
break;
case ' ':
case '\t':
case '\r':
case '\n': // White-Space
bWhiteSpace = sal_True;
break;
case (sal_Unicode)EOF:
if( IsEOF() )
{
eState = CSS1_PAR_ACCEPTED;
bNextCh = sal_False;
break;
}
// kein break;
default: // IDENT | syntax error
if (comphelper::string::isalphaAscii(cNextCh))
{
// IDENT
sal_Bool bHexColor = sal_True;
// den naechsten Identifer scannen
::rtl::OUStringBuffer sTmpBuffer( 64L );
do {
sTmpBuffer.append( cNextCh );
if( bHexColor )
{
bHexColor = sTmpBuffer.getLength()<7 &&
( ('0'<=cNextCh && '9'>=cNextCh) ||
('A'<=cNextCh && 'F'>=cNextCh) ||
('a'<=cNextCh && 'f'>=cNextCh) );
}
cNextCh = GetNextChar();
} while( (comphelper::string::isalnumAscii(cNextCh) ||
'-' == cNextCh) && !IsEOF() );
aToken += String(sTmpBuffer.makeStringAndClear());
if( bHexColor && sTmpBuffer.getLength()==6 )
{
bNextCh = sal_False;
nRet = CSS1_HEXCOLOR;
break;
}
if( '('==cNextCh &&
( (('u'==aToken.GetChar(0) || 'U'==aToken.GetChar(0)) &&
aToken.EqualsIgnoreCaseAscii(sCSS1_url)) ||
(('r'==aToken.GetChar(0) || 'R'==aToken.GetChar(0)) &&
aToken.EqualsIgnoreCaseAscii(sCSS1_rgb)) ) )
{
sal_uInt16 nNestCnt = 0;
::rtl::OUStringBuffer sTmpBuffer2( 64L );
do {
sTmpBuffer2.append( cNextCh );
switch( cNextCh )
{
case '(': nNestCnt++; break;
case ')': nNestCnt--; break;
}
cNextCh = GetNextChar();
} while( (nNestCnt>1 || ')'!=cNextCh) && !IsEOF() );
sTmpBuffer2.append( cNextCh );
aToken += String(sTmpBuffer2.makeStringAndClear());
bNextCh = sal_True;
nRet = 'u'==aToken.GetChar(0) || 'U'==aToken.GetChar(0)
? CSS1_URL
: CSS1_RGB;
}
else
{
bNextCh = sal_False;
nRet = CSS1_IDENT;
}
}
// Fehlerbehandlung: Zeichen ignorieren
break;
}
if( bNextCh )
cNextCh = GetNextChar();
} while( CSS1_NULL==nRet && IsParserWorking() );
return nRet;
}
// Dies folegenden Funktionen realisieren den in
//
// http://www.w3.orh/pub/WWW/TR/WD-css1.html
// bzw. http://www.w3.orh/pub/WWW/TR/WD-css1-960220.html
//
// beschriebenen Parser fuer CSS1. Es handelt sich um eine direkte
// Umsetzung der dort beschriebenen Grammatik
// stylesheet
// : import* rule*
//
// import
// : IMPORT_SYM url
//
// url
// : STRING
//
void CSS1Parser::ParseStyleSheet()
{
LOOP_CHECK_DECL
// import*
sal_Bool bDone = sal_False;
while( !bDone && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseStyleSheet()/import *" )
switch( nToken )
{
case CSS1_IMPORT_SYM:
// IMPORT_SYM url
// url ueberspringen wir ungeprueft
nToken = GetNextToken();
break;
case CSS1_IDENT: // Look-Aheads
case CSS1_DOT_W_WS:
case CSS1_HASH:
// /Feature: PrintExt
case CSS1_PAGE_SYM:
// /Feature: PrintExt
// rule
bDone = sal_True;
break;
default:
// Fehlerbehandlung: ueberlesen
break;
}
if( !bDone )
nToken = GetNextToken();
}
LOOP_CHECK_RESTART
// rule *
while( IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseStyleSheet()/rule *" )
switch( nToken )
{
case CSS1_IDENT: // Look-Aheads
case CSS1_DOT_W_WS:
case CSS1_HASH:
// /Feature: PrintExt
case CSS1_PAGE_SYM:
// /Feature: PrintExt
// rule
ParseRule();
break;
default:
// Fehlerbehandlung: ueberlesen
nToken = GetNextToken();
break;
}
}
}
// rule
// : selector [ ',' selector ]*
// '{' declaration [ ';' declaration ]* '}'
//
void CSS1Parser::ParseRule()
{
// selector
CSS1Selector *pSelector = ParseSelector();
if( !pSelector )
return;
// Selektor verarbeiten
if( SelectorParsed( pSelector, sal_True ) )
delete pSelector;
LOOP_CHECK_DECL
// [ ',' selector ]*
while( CSS1_COMMA==nToken && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseRule()/selector *" )
// ',' ueberelesen
nToken = GetNextToken();
// selector
pSelector = ParseSelector();
if( !pSelector )
return;
// Selektor verarbeiten
if( SelectorParsed( pSelector, sal_False ) )
delete pSelector;
}
// '{'
if( CSS1_OBRACE != nToken )
return;
nToken = GetNextToken();
// declaration
String aProperty;
CSS1Expression *pExpr = ParseDeclaration( aProperty );
if( !pExpr )
return;
// expression verarbeiten
if( DeclarationParsed( aProperty, pExpr ) )
delete pExpr;
LOOP_CHECK_RESTART
// [ ';' declaration ]*
while( CSS1_SEMICOLON==nToken && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseRule()/declaration *" )
// ';'
nToken = GetNextToken();
// declaration
if( CSS1_IDENT == nToken )
{
CSS1Expression *pExp = ParseDeclaration( aProperty );
if( pExp )
{
// expression verarbeiten
if( DeclarationParsed( aProperty, pExp ) )
delete pExp;
}
}
}
// '}'
if( CSS1_CBRACE == nToken )
nToken = GetNextToken();
}
// selector
// : simple_selector+ [ ':' pseudo_element ]?
//
// simple_selector
// : element_name [ DOT_WO_WS class ]?
// | DOT_W_WS class
// | id_selector
//
// element_name
// : IDENT
//
// class
// : IDENT
//
// id_selector
// : '#' IDENT
//
// pseude_element
// : IDENT
//
CSS1Selector *CSS1Parser::ParseSelector()
{
CSS1Selector *pRoot = 0, *pLast = 0;
sal_Bool bDone = sal_False;
CSS1Selector *pNew = 0;
LOOP_CHECK_DECL
// simple_selector+
while( !bDone && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseSelector()" )
sal_Bool bNextToken = sal_True;
switch( nToken )
{
case CSS1_IDENT:
{
// element_name [ DOT_WO_WS class ]?
// element_name
String aElement = aToken;
CSS1SelectorType eType = CSS1_SELTYPE_ELEMENT;
nToken = GetNextToken();
if( CSS1_DOT_WO_WS == nToken )
{
// DOT_WO_WS
nToken = GetNextToken();
// class
if( CSS1_IDENT == nToken )
{
(aElement += '.') += aToken;
eType = CSS1_SELTYPE_ELEM_CLASS;
}
else
{
// class fehlt
return pRoot;
}
}
else
{
// das war jetzt ein Look-Ahead
bNextToken = sal_False;
}
pNew = new CSS1Selector( eType, aElement );
}
break;
case CSS1_DOT_W_WS:
// DOT_W_WS class
// DOT_W_WS
nToken = GetNextToken();
if( CSS1_IDENT==nToken )
{
// class
pNew = new CSS1Selector( CSS1_SELTYPE_CLASS, aToken );
}
else
{
// class fehlt
return pRoot;
}
break;
case CSS1_HASH:
// '#' id_selector
// '#'
nToken = GetNextToken();
if( CSS1_IDENT==nToken )
{
// id_selector
pNew = new CSS1Selector( CSS1_SELTYPE_ID, aToken );
}
else
{
// id_selector fehlt
return pRoot;
}
break;
// /Feature: PrintExt
case CSS1_PAGE_SYM:
{
// @page
pNew = new CSS1Selector( CSS1_SELTYPE_PAGE, aToken );
}
break;
// /Feature: PrintExt
default:
// wir wissen nicht was kommt, also aufhoehren
bDone = sal_True;
break;
}
// falls ein Selektor angelegt wurd, ihn speichern
if( pNew )
{
OSL_ENSURE( (pRoot!=0) == (pLast!=0),
"Root-Selektor, aber kein Last" );
if( pLast )
pLast->SetNext( pNew );
else
pRoot = pNew;
pLast = pNew;
pNew = 0;
}
if( bNextToken && !bDone )
nToken = GetNextToken();
}
if( !pRoot )
{
// simple_selector fehlt
return pRoot;
}
// [ ':' pseudo_element ]?
if( CSS1_COLON==nToken && IsParserWorking() )
{
// ':' pseudo element
nToken = GetNextToken();
if( CSS1_IDENT==nToken )
{
pLast->SetNext( new CSS1Selector(CSS1_SELTYPE_PSEUDO,aToken) );
nToken = GetNextToken();
}
else
{
// pseudo_element fehlt
return pRoot;
}
}
return pRoot;
}
// declaration
// : property ':' expr prio?
// | /* empty */
//
// expression
// : term [ operator term ]*
//
// term
// : unary_operator?
// [ NUMBER | STRING | PERCENTAGE | LENGTH | EMS | EXS | IDENT |
// HEXCOLOR | URL | RGB ]
//
// operator
// : '/' | ',' | /* empty */
//
// unary_operator
// : '-' | '+'
//
// property
// : ident
//
// das Vorzeichen wird nur fuer numerische Werte (ausser PERCENTAGE)
// beruecksichtigt und wird auf nValue angewendet!
CSS1Expression *CSS1Parser::ParseDeclaration( String& rProperty )
{
CSS1Expression *pRoot = 0, *pLast = 0;
// property
if( CSS1_IDENT != nToken )
{
// property fehlt
return pRoot;
}
rProperty = aToken;
nToken = GetNextToken();
// ':'
if( CSS1_COLON != nToken )
{
// ':' fehlt
return pRoot;
}
nToken = GetNextToken();
// term [operator term]*
// hier sind wir sehr lax, was die Syntax angeht, sollte aber kein
// Problem sein
sal_Bool bDone = sal_False;
sal_Unicode cSign = 0, cOp = 0;
CSS1Expression *pNew = 0;
LOOP_CHECK_DECL
while( !bDone && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseDeclaration()" )
switch( nToken )
{
case CSS1_MINUS:
cSign = '-';
break;
case CSS1_PLUS:
cSign = '+';
break;
case CSS1_NUMBER:
case CSS1_LENGTH:
case CSS1_PIXLENGTH:
case CSS1_EMS:
case CSS1_EMX:
if( '-'==cSign )
nValue = -nValue;
case CSS1_STRING:
case CSS1_PERCENTAGE:
case CSS1_IDENT:
case CSS1_URL:
case CSS1_RGB:
case CSS1_HEXCOLOR:
pNew = new CSS1Expression( nToken, aToken, nValue, cOp );
nValue = 0; // sonst landet das auch im naechsten Ident
cSign = 0;
cOp = 0;
break;
case CSS1_SLASH:
cOp = '/';
cSign = 0;
break;
case CSS1_COMMA:
cOp = ',';
cSign = 0;
break;
default:
bDone = sal_True;
break;
}
// falls ein Expression angelegt wurde, diesen speichern
if( pNew )
{
OSL_ENSURE( (pRoot!=0) == (pLast!=0),
"Root-Selektor, aber kein Last" );
if( pLast )
pLast->SetNext( pNew );
else
pRoot = pNew;
pLast = pNew;
pNew = 0;
}
if( !bDone )
nToken = GetNextToken();
}
if( !pRoot )
{
// term fehlt
return pRoot;
}
// prio?
if( CSS1_IMPORTANT_SYM==nToken )
{
// IMPORTANT_SYM
nToken = GetNextToken();
}
return pRoot;
}
CSS1Parser::CSS1Parser()
: nValue(0)
, eState(CSS1_PAR_ACCEPTED)
, nToken(CSS1_NULL)
{
}
CSS1Parser::~CSS1Parser()
{
}
sal_Bool CSS1Parser::ParseStyleSheet( const String& rIn )
{
String aTmp( rIn );
sal_Unicode c;
while( aTmp.Len() &&
( ' '==(c=aTmp.GetChar(0)) || '\t'==c || '\r'==c || '\n'==c ) )
aTmp.Erase( 0, 1 );
while( aTmp.Len() && ( ' '==(c=aTmp.GetChar( aTmp.Len()-1))
|| '\t'==c || '\r'==c || '\n'==c ) )
aTmp.Erase( aTmp.Len()-1 );
// SGML-Kommentare entfernen
if( aTmp.Len() >= 4 &&
aTmp.CompareToAscii("<!--",4) == COMPARE_EQUAL )
aTmp.Erase( 0, 4 );
if( aTmp.Len() >=3 &&
aTmp.Copy(aTmp.Len()-3).CompareToAscii("-->") == COMPARE_EQUAL )
aTmp.Erase( aTmp.Len()-3 );
if( !aTmp.Len() )
return sal_True;
InitRead( aTmp );
ParseStyleSheet();
return sal_True;
}
sal_Bool CSS1Parser::ParseStyleOption( const String& rIn )
{
if( !rIn.Len() )
return sal_True;
InitRead( rIn );
// fdo#41796: skip over spurious semicolons
while (CSS1_SEMICOLON == nToken)
{
nToken = GetNextToken();
}
String aProperty;
CSS1Expression *pExpr = ParseDeclaration( aProperty );
if( !pExpr )
{
return sal_False;
}
// expression verarbeiten
if( DeclarationParsed( aProperty, pExpr ) )
delete pExpr;
LOOP_CHECK_DECL
// [ ';' declaration ]*
while( CSS1_SEMICOLON==nToken && IsParserWorking() )
{
LOOP_CHECK_CHECK( "Endlos-Schleife in ParseStyleOption()" )
nToken = GetNextToken();
if( CSS1_IDENT==nToken )
{
CSS1Expression *pExp = ParseDeclaration( aProperty );
if( pExp )
{
// expression verarbeiten
if( DeclarationParsed( aProperty, pExp ) )
delete pExp;
}
}
}
return sal_True;
}
bool CSS1Parser::SelectorParsed( CSS1Selector* /* pSelector */, bool /*bFirst*/ )
{
// Selektor loeschen
return true;
}
sal_Bool CSS1Parser::DeclarationParsed( const String& /*rProperty*/,
const CSS1Expression * /* pExpr */ )
{
// Deklaration loeschen
return sal_True;
}
CSS1Selector::~CSS1Selector()
{
delete pNext;
}
CSS1Expression::~CSS1Expression()
{
delete pNext;
}
sal_Bool CSS1Expression::GetURL( String& rURL ) const
{
OSL_ENSURE( CSS1_URL==eType, "CSS1-Ausruck ist keine Farbe URL" );
OSL_ENSURE( aValue.CompareIgnoreCaseToAscii( sCSS1_url, 3 ) ==
COMPARE_EQUAL &&
aValue.Len() > 5 &&
'(' == aValue.GetChar(3) &&
')' == aValue.GetChar(aValue.Len()-1),
"keine gueltiges URL(...)" );
sal_Bool bRet = sal_False;
if( aValue.Len() > 5 )
{
rURL = aValue.Copy( 4, aValue.Len()-5 );
rURL.EraseTrailingChars();
rURL.EraseLeadingChars();
bRet = sal_True;
}
return bRet;
}
sal_Bool CSS1Expression::GetColor( Color &rColor ) const
{
OSL_ENSURE( CSS1_IDENT==eType || CSS1_RGB==eType ||
CSS1_HEXCOLOR==eType || CSS1_STRING==eType,
"CSS1-Ausruck kann keine Farbe sein" );
sal_Bool bRet = sal_False;
sal_uInt32 nColor = SAL_MAX_UINT32;
switch( eType )
{
case CSS1_RGB:
{
sal_uInt8 aColors[3] = { 0, 0, 0 };
OSL_ENSURE( aValue.CompareIgnoreCaseToAscii( sCSS1_rgb, 3 )
== COMPARE_EQUAL &&
aValue.Len() > 5 &&
'(' == aValue.GetChar( 3 ) &&
')' == aValue.GetChar( aValue.Len()-1),
"keine gueltiges RGB(...)" );
String aColorStr( aValue.Copy( 4, aValue.Len()-1 ) );
xub_StrLen nPos = 0;
sal_uInt16 nCol = 0;
while( nCol < 3 && nPos < aColorStr.Len() )
{
sal_Unicode c;
while( nPos < aColorStr.Len() &&
((c=aColorStr.GetChar(nPos)) == ' ' || c == '\t' ||
c == '\n' || c== '\r' ) )
nPos++;
xub_StrLen nEnd = aColorStr.Search( ',', nPos );
String aNumber;
if( STRING_NOTFOUND==nEnd )
{
aNumber = aColorStr.Copy(nPos);
nPos = aColorStr.Len();
}
else
{
aNumber = aColorStr.Copy( nPos, nEnd-nPos );
nPos = nEnd+1;
}
sal_uInt16 nNumber = (sal_uInt16)aNumber.ToInt32();
if( aNumber.Search('%') != STRING_NOTFOUND )
{
if( nNumber > 100 )
nNumber = 100;
nNumber *= 255;
nNumber /= 100;
}
else if( nNumber > 255 )
nNumber = 255;
aColors[nCol] = (sal_uInt8)nNumber;
nCol ++;
}
rColor.SetRed( aColors[0] );
rColor.SetGreen( aColors[1] );
rColor.SetBlue( aColors[2] );
bRet = sal_True; // etwas anderes als eine Farbe kann es nicht sein
}
break;
case CSS1_IDENT:
case CSS1_STRING:
{
String aTmp( aValue );
aTmp.ToUpperAscii();
nColor = GetHTMLColor( aTmp );
bRet = nColor != SAL_MAX_UINT32;
}
if( bRet || CSS1_STRING != eType || !aValue.Len() ||
aValue.GetChar( 0 )!='#' )
break;
case CSS1_HEXCOLOR:
{
// HACK fuer MS-IE: DIe Farbe kann auch in einem String stehen
xub_StrLen nOffset = CSS1_STRING==eType ? 1 : 0;
sal_Bool bDouble = aValue.Len()-nOffset == 3;
xub_StrLen i = nOffset, nEnd = (bDouble ? 3 : 6) + nOffset;
nColor = 0;
for( ; i<nEnd; i++ )
{
sal_Unicode c = (i<aValue.Len() ? aValue.GetChar(i)
: '0' );
if( c >= '0' && c <= '9' )
c -= 48;
else if( c >= 'A' && c <= 'F' )
c -= 55;
else if( c >= 'a' && c <= 'f' )
c -= 87;
else
c = 16;
nColor *= 16;
if( c<16 )
nColor += c;
if( bDouble )
{
nColor *= 16;
if( c<16 )
nColor += c;
}
}
bRet = sal_True;
}
break;
default:
;
}
if( bRet && nColor!=SAL_MAX_UINT32 )
{
rColor.SetRed( (sal_uInt8)((nColor & 0x00ff0000UL) >> 16) );
rColor.SetGreen( (sal_uInt8)((nColor & 0x0000ff00UL) >> 8) );
rColor.SetBlue( (sal_uInt8)(nColor & 0x000000ffUL) );
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|