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
|
/**********************************************************************
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
** This file is part of Qt Designer.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file COPYING included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
/*
This file is a self-contained interactive indenter for C
derivatives, in particular C++.
The general problem of indenting a C++ program is ill posed. On the
one hand, an indenter has to analyze programs written in a
free-form formal language that is best described in terms of
tokens, not characters, not lines. On the other hand, indentation
applies to lines and white space characters matter, and otherwise
the programs to indent are formally invalid in general, as they are
begin edited.
The approach taken here works line by line. We receive a program
consisting of N lines or more, and we want to compute the
indentation appropriate for the Nth line. Lines beyond the Nth
lines are of no concern to us, so for simplicity we pretend the
program has exactly N lines and we call the Nth line the "bottom
line". Typically, we have to indent the bottom line when it's still
empty, so we concentrate our analysis on the N - 1 lines that
precede.
By inspecting the (N - 1)-th line, the (N - 2)-th line, ...
backwards, we determine the kind of the bottom line and indent it
accordingly.
* The bottom line is a comment line. See
bottomLineStartsInCComment() and
indentWhenBottomLineStartsInCComment().
* The bottom line is a continuation line. See isContinuationLine()
and indentForContinuationLine().
* The bottom line is a standalone line. See
indentForStandaloneLine().
Certain tokens that influence the indentation, notably braces, are
looked for in the lines. This is done by simple string comparison,
without a real tokenizer. Confusing constructs such as comments and
string literals are removed beforehand.
*/
#include <qregexp.h>
#include <qmap.h>
#include <qvariant.h>
#include <kdebug.h>
/*
The indenter avoids getting stuck in almost infinite loops by
imposing arbitrary limits on the number of lines it analyzes when
looking for a construct.
For example, the indenter never considers more than BigRoof lines
backwards when looking for the start of a C-style comment.
*/
static const int SmallRoof = 40;
static const int BigRoof = 400;
/*
The indenter supports a few parameters:
* ppHardwareTabSize is the size of a '\t' in your favorite editor.
* ppIndentSize is the size of an indentation, the "software tab
size".
* ppContinuationIndentSize is the extra indent for a continuation
line, when there is nothing to align against on the previous
line.
* ppCommentOffset is the indentation within a C-style comment,
when it cannot be picked up.
*/
static /*const*/ int ppHardwareTabSize = 8;
static /*const*/ int ppIndentSize = 4;
static /*const*/ int ppContinuationIndentSize = 8;
static /*const*/ int ppCommentOffset = 2;
static QRegExp *literal = 0;
static QRegExp *label = 0;
static QRegExp *inlineCComment = 0;
static QRegExp *braceX = 0;
static QRegExp *iflikeKeyword = 0;
void configureCIndent( const QMap<QString, QVariant>& values )
{
if( values.contains("TabSize") )
ppHardwareTabSize = values[ "TabSize" ].toInt();
if( values.contains("IndentSize") )
ppIndentSize = values[ "IndentSize" ].toInt();
if( values.contains("ContinuationSize") )
ppContinuationIndentSize = values[ "ContinuationSize" ].toInt();
if( values.contains("CommentOffset") )
ppCommentOffset = values[ "CommentOffset" ].toInt();
}
/*
Returns the first non-space character in the string t, or
QChar::null if the string is made only of white space.
*/
static QChar firstNonWhiteSpace( const QString& t )
{
int i = 0;
while ( i < (int) t.length() ) {
if ( !t[i].isSpace() )
return t[i];
i++;
}
return QChar::null;
}
/*
Returns TRUE if string t is made only of white space; otherwise
returns FALSE.
*/
static bool isOnlyWhiteSpace( const QString& t )
{
return firstNonWhiteSpace( t ).isNull();
}
/*
Assuming string t is a line, returns the column number of a given
index. Column numbers and index are identical for strings that don't
contain '\t's.
*/
static int columnForIndex( const QString& t, int index )
{
int col = 0;
if ( index > (int) t.length() )
index = t.length();
for ( int i = 0; i < index; i++ ) {
if ( t[i].latin1() == '\t' ) {
col = ( (col / ppHardwareTabSize) + 1 ) * ppHardwareTabSize;
} else {
col++;
}
}
return col;
}
/*
Returns the indentation size of string t.
*/
static int indentOfLine( const QString& t )
{
return columnForIndex( t, t.find(firstNonWhiteSpace(t)) );
}
/*
Replaces t[k] by ch, unless t[k] is '\t'. Tab characters are better
left alone since they break the "index equals column" rule. No
provisions are taken against '\n' or '\r', which shouldn't occur in
t anyway.
*/
static inline void eraseChar( QString& t, int k, QChar ch )
{
if ( t[k] != '\t' )
t[k] = ch;
}
/*
Removes some nefast constructs from a code line and returns the
resulting line.
*/
static QString trimmedCodeLine( const QString& t )
{
QString trimmed = t;
int k;
/*
Replace character and string literals by X's, since they may
contain confusing characters (such as '{' and ';'). "Hello!" is
replaced by XXXXXXXX. The literals are rigourously of the same
length before and after; otherwise, we would break alignment of
continuation lines.
*/
k = 0;
while ( (k = trimmed.find(*literal, k)) != -1 ) {
for ( int i = 0; i < literal->matchedLength(); i++ )
eraseChar( trimmed, k + i, QChar('X') );
k += literal->matchedLength();
}
/*
Replace inline C-style comments by spaces. Other comments are
handled elsewhere.
*/
k = 0;
while ( (k = trimmed.find(*inlineCComment, k)) != -1 ) {
for ( int i = 0; i < inlineCComment->matchedLength(); i++ )
eraseChar( trimmed, k + i, QChar(' ') );
k += inlineCComment->matchedLength();
}
/*
Replace case and goto labels by spaces, to allow esoteric
alignments:
foo1: foo2: bar1;
bar2;
*/
while ( trimmed.findRev(QChar(':')) != -1 && trimmed.find(*label) != -1 ) {
QString cap1 = label->cap( 1 );
int pos1 = label->pos( 1 );
for ( int i = 0; i < (int) cap1.length(); i++ )
eraseChar( trimmed, pos1 + i, QChar(' ') );
}
/*
Remove C++-style comments.
*/
k = trimmed.find( QString("//") );
if ( k != -1 )
trimmed.truncate( k );
return trimmed;
}
/*
Returns '(' if the last parenthesis is opening, ')' if it is
closing, and QChar::null if there are no parentheses in t.
*/
static inline QChar lastParen( const QString& t )
{
int i = t.length();
while ( i > 0 ) {
i--;
if ( t[i] == QChar('(') || t[i] == QChar(')') )
return t[i];
}
return QChar::null;
}
/*
Returns TRUE if typedIn the same as okayCh or is null; otherwise
returns FALSE.
*/
static inline bool okay( QChar typedIn, QChar okayCh )
{
return typedIn.isNull() || typedIn == okayCh;
}
/*
The "linizer" is a group of functions and variables to iterate
through the source code of the program to indent. The program is
given as a list of strings, with the bottom line being the line to
indent. The actual program might contain extra lines, but those are
uninteresting and not passed over to us.
*/
struct LinizerState
{
QString line;
int braceDepth;
bool leftBraceFollows;
QStringList::ConstIterator iter;
bool inCComment;
bool pendingRightBrace;
};
static QStringList *yyProgram = 0;
static LinizerState *yyLinizerState = 0;
// shorthands
static const QString *yyLine = 0;
static const int *yyBraceDepth = 0;
static const bool *yyLeftBraceFollows = 0;
/*
Saves and restores the state of the global linizer. This enables
backtracking.
*/
#define YY_SAVE() \
LinizerState savedState = *yyLinizerState
#define YY_RESTORE() \
*yyLinizerState = savedState
/*
Advances to the previous line in yyProgram and update yyLine
accordingly. yyLine is cleaned from comments and other damageable
constructs. Empty lines are skipped.
*/
static bool readLine()
{
int k;
yyLinizerState->leftBraceFollows =
( firstNonWhiteSpace(yyLinizerState->line) == QChar('{') );
do {
if ( yyLinizerState->iter == yyProgram->begin() ) {
yyLinizerState->line = QString::null;
return FALSE;
}
--yyLinizerState->iter;
yyLinizerState->line = *yyLinizerState->iter;
yyLinizerState->line = trimmedCodeLine( yyLinizerState->line );
/*
Remove C-style comments that span multiple lines. If the
bottom line starts in a C-style comment, we are not aware
of that and eventually yyLine will contain a slash-aster.
Notice that both if's can be executed, since
yyLinizerState->inCComment is potentially set to FALSE in
the first if. The order of the if's is also important.
*/
if ( yyLinizerState->inCComment ) {
QString slashAster( "/*" );
k = yyLinizerState->line.find( slashAster );
if ( k == -1 ) {
yyLinizerState->line = QString::null;
} else {
yyLinizerState->line.truncate( k );
yyLinizerState->inCComment = FALSE;
}
}
if ( !yyLinizerState->inCComment ) {
QString asterSlash( "*/" );
k = yyLinizerState->line.find( asterSlash );
if ( k != -1 ) {
for ( int i = 0; i < k + 2; i++ )
eraseChar( yyLinizerState->line, i, QChar(' ') );
yyLinizerState->inCComment = TRUE;
}
}
/*
Remove preprocessor directives.
*/
k = 0;
while ( k < (int) yyLinizerState->line.length() ) {
QChar ch = yyLinizerState->line[k];
if ( ch == QChar('#') ) {
yyLinizerState->line = QString::null;
} else if ( !ch.isSpace() ) {
break;
}
k++;
}
/*
Remove trailing spaces.
*/
k = yyLinizerState->line.length();
while ( k > 0 && yyLinizerState->line[k - 1].isSpace() )
k--;
yyLinizerState->line.truncate( k );
/*
'}' increment the brace depth and '{' decrements it and not
the other way around, as we are parsing backwards.
*/
yyLinizerState->braceDepth +=
yyLinizerState->line.contains( QChar('}') ) -
yyLinizerState->line.contains( QChar('{') );
/*
We use a dirty trick for
} else ...
We don't count the '}' yet, so that it's more or less
equivalent to the friendly construct
}
else ...
*/
if ( yyLinizerState->pendingRightBrace )
yyLinizerState->braceDepth++;
yyLinizerState->pendingRightBrace =
( yyLinizerState->line.find(*braceX) == 0 );
if ( yyLinizerState->pendingRightBrace )
yyLinizerState->braceDepth--;
} while ( yyLinizerState->line.isEmpty() );
return TRUE;
}
/*
Resets the linizer to its initial state, with yyLine containing the
line above the bottom line of the program.
*/
static void startLinizer()
{
yyLinizerState->braceDepth = 0;
yyLinizerState->inCComment = FALSE;
yyLinizerState->pendingRightBrace = FALSE;
yyLine = &yyLinizerState->line;
yyBraceDepth = &yyLinizerState->braceDepth;
yyLeftBraceFollows = &yyLinizerState->leftBraceFollows;
yyLinizerState->iter = yyProgram->end();
--yyLinizerState->iter;
yyLinizerState->line = *yyLinizerState->iter;
readLine();
}
/*
Returns TRUE if the start of the bottom line of yyProgram (and
potentially the whole line) is part of a C-style comment; otherwise
returns FALSE.
*/
static bool bottomLineStartsInCComment()
{
QString slashAster( "/*" );
QString asterSlash( "*/" );
/*
We could use the linizer here, but that would slow us down
terribly. We are better to trim only the code lines we need.
*/
QStringList::ConstIterator p = yyProgram->end();
--p; // skip bottom line
for ( int i = 0; i < BigRoof; i++ ) {
if ( p == yyProgram->begin() )
return FALSE;
--p;
if ( (*p).find(slashAster) != -1 ||
(*p).find(asterSlash) != -1 ) {
QString trimmed = trimmedCodeLine( *p );
if ( trimmed.find(slashAster) != -1 ) {
return TRUE;
} else if ( trimmed.find(asterSlash) != -1 ) {
return FALSE;
}
}
}
return FALSE;
}
/*
Returns the recommended indent for the bottom line of yyProgram
assuming that it starts in a C-style comment, a condition that is
tested elsewhere.
Essentially, we're trying to align against some text on the previous
line.
*/
static int indentWhenBottomLineStartsInCComment()
{
int k = yyLine->findRev( QString("/*") );
if ( k == -1 ) {
/*
We found a normal text line in a comment. Align the
bottom line with the text on this line.
*/
return indentOfLine( *yyLine );
} else {
/*
The C-style comment starts on this line. If there is
text on the same line, align with it. Otherwise, align
with the slash-aster plus a given offset.
*/
int indent = columnForIndex( *yyLine, k );
k += 2;
while ( k < (int) yyLine->length() ) {
if ( !(*yyLine)[k].isSpace() )
return columnForIndex( *yyLine, k );
k++;
}
return indent + ppCommentOffset;
}
}
/*
A function called match...() modifies the linizer state. If it
returns TRUE, yyLine is the top line of the matched construct;
otherwise, the linizer is left in an unknown state.
A function called is...() keeps the linizer state intact.
*/
/*
Returns TRUE if the current line (and upwards) forms a braceless
control statement; otherwise returns FALSE.
The first line of the following example is a "braceless control
statement":
if ( x )
y;
*/
static bool matchBracelessControlStatement()
{
int delimDepth = 0;
if ( yyLine->endsWith(QString("else")) )
return TRUE;
if ( !yyLine->endsWith(QChar(')')) )
return FALSE;
for ( int i = 0; i < SmallRoof; i++ ) {
int j = yyLine->length();
while ( j > 0 ) {
j--;
QChar ch = (*yyLine)[j];
switch ( ch.unicode() ) {
case ')':
delimDepth++;
break;
case '(':
delimDepth--;
if ( delimDepth == 0 ) {
if ( yyLine->find(*iflikeKeyword) != -1 ) {
/*
We have
if ( x )
y
"if ( x )" is not part of the statement
"y".
*/
return TRUE;
}
}
if ( delimDepth == -1 ) {
/*
We have
if ( (1 +
2)
and not
if ( 1 +
2 )
*/
return FALSE;
}
break;
case '{':
case '}':
case ';':
/*
We met a statement separator, but not where we
expected it. What follows is probably a weird
continuation line. Be careful with ';' in for,
though.
*/
if ( ch != QChar( ';' ) || delimDepth == 0 )
return FALSE;
}
}
if ( !readLine() )
break;
}
return FALSE;
}
/*
Returns TRUE if yyLine is an unfinished line; otherwise returns
FALSE.
In many places, we'll use the terms "standalone line", "unfinished
line" and "continuation line". The meaning of these should be
evident:
a = b; // standalone line
c = d + // unfinished line
e + // unfinished continuation line
f + // unfinished continuation line
g; // continuation line
*/
static bool isUnfinishedLine()
{
bool unf = FALSE;
YY_SAVE();
if ( yyLine->isEmpty() )
return FALSE;
QChar lastCh = (*yyLine)[(int) yyLine->length() - 1];
if ( QString("{};").find(lastCh) == -1 ) {
/*
It doesn't end with ';' or similar. If it's not "Q_OBJECT"
nor "if ( x )", it must be an unfinished line.
*/
/* qmake ignore Q_OBJECT */
unf = ( yyLine->contains(QString("Q_OBJECT")) == 0 &&
!matchBracelessControlStatement() );
} else if ( lastCh == QChar(';') ) {
if ( lastParen(*yyLine) == QChar('(') ) {
/*
Exception:
for ( int i = 1; i < 10;
*/
unf = TRUE;
} else if ( readLine() && yyLine->endsWith(QChar(';')) &&
lastParen(*yyLine) == QChar('(') ) {
/*
Exception:
for ( int i = 1;
i < 10;
*/
unf = TRUE;
}
}
YY_RESTORE();
return unf;
}
/*
Returns TRUE if yyLine is a continuation line; otherwise returns
FALSE.
*/
static bool isContinuationLine()
{
bool cont = FALSE;
YY_SAVE();
if ( readLine() )
cont = isUnfinishedLine();
YY_RESTORE();
return cont;
}
/*
Returns the recommended indent for the bottom line of yyProgram,
assuming it's a continuation line.
We're trying to align the continuation line against some parenthesis
or other bracked left opened on a previous line, or some interesting
operator such as '='.
*/
static int indentForContinuationLine()
{
int braceDepth = 0;
int delimDepth = 0;
bool leftBraceFollowed = *yyLeftBraceFollows;
for ( int i = 0; i < SmallRoof; i++ ) {
int hook = -1;
int j = yyLine->length();
while ( j > 0 && hook < 0 ) {
j--;
QChar ch = (*yyLine)[j];
switch ( ch.unicode() ) {
case ')':
case ']':
delimDepth++;
break;
case '}':
braceDepth++;
break;
case '(':
case '[':
delimDepth--;
/*
An unclosed delimiter is a good place to align at,
at least for some styles (including Trolltech's).
*/
if ( delimDepth == -1 )
hook = j;
break;
case '{':
braceDepth--;
/*
A left brace followed by other stuff on the same
line is typically for an enum or an initializer.
Such a brace must be treated just like the other
delimiters.
*/
if ( braceDepth == -1 ) {
if ( j < (int) yyLine->length() - 1 ) {
hook = j;
} else {
return 0; // shouldn't happen
}
}
break;
case '=':
/*
An equal sign is a very natural alignment hook
because it's usually the operator with the lowest
precedence in statements it appears in. Case in
point:
int x = 1 +
2;
However, we have to beware of constructs such as
default arguments and explicit enum constant
values:
void foo( int x = 0,
int y = 0 );
And not
void foo( int x = 0,
int y = 0 );
These constructs are caracterized by a ',' at the
end of the unfinished lines or by unbalanced
parentheses.
*/
if ( j == 0 || QString("!=<>").find((*yyLine)[j - 1]) == -1 ) {
if ( braceDepth == 0 && delimDepth == 0 &&
j < (int) yyLine->length() - 1 &&
!yyLine->endsWith(QChar(',')) &&
(yyLine->contains(QChar('(')) ==
yyLine->contains(QChar(')'))) )
hook = j;
}
}
}
if ( hook >= 0 ) {
/*
Yes, we have a delimiter or an operator to align
against! We don't really align against it, but rather
against the following token, if any. In this example,
the following token is "11":
int x = ( 11 +
2 );
If there is no such token, we use a continuation indent:
static QRegExp foo( QString(
"foo foo foo foo foo foo foo foo foo") );
*/
hook++;
while ( hook < (int) yyLine->length() ) {
if ( !(*yyLine)[hook].isSpace() )
return columnForIndex( *yyLine, hook );
hook++;
}
return indentOfLine( *yyLine ) + ppContinuationIndentSize;
}
if ( braceDepth != 0 )
break;
/*
The line's delimiters are balanced. It looks like a
continuation line or something.
*/
if ( delimDepth == 0 ) {
if ( isContinuationLine() || leftBraceFollowed ) {
/*
We have
x = 1 +
2 +
3;
or
int main()
{
The "3;" should fall right under the "2;", and the
"{" under the "int".
*/
return indentOfLine( *yyLine );
} else {
/*
We have
stream << 1 +
2;
We could, but we don't, try to analyze which
operator has precedence over which and so on, in
which case we could give the excellent result
stream << 1 +
2;
(We do have a special trick above for the
assignment operator above, though.)
*/
return indentOfLine( *yyLine ) + ppContinuationIndentSize;
}
}
if ( !readLine() )
break;
}
return 0;
}
/*
Returns the recommended indent for the bottom line of yyProgram if
that line is standalone (or should be indented likewise).
Indenting a standalone line is tricky, mostly because of braceless
control statements. Grossly, we are looking backwards for a special
line, a "hook line", that we can use as a starting point to indent,
and then modify the indentation level according to the braces met
along the way to that hook.
Let's consider a few examples. In all cases, we want to indent the
bottom line.
Example 1:
x = 1;
y = 2;
The hook line is "x = 1;". We met 0 opening braces and 0 closing
braces. Therefore, "y = 2;" inherits the indent of "x = 1;".
Example 2:
if ( x ) {
y;
The hook line is "if ( x ) {". No matter what precedes it, "y;" has
to be indented one level deeper than the hook line, since we met one
opening brace along the way.
Example 3:
if ( a )
while ( b ) {
c;
}
d;
To indent "d;" correctly, we have to go as far as the "if ( a )".
Compare with
if ( a ) {
while ( b ) {
c;
}
d;
Still, we're striving to go back as little as possible to accomodate
people with irregular indentation schemes. A hook line near at hand
is much more reliable than a remote one.
*/
static int indentForStandaloneLine()
{
for ( int i = 0; i < SmallRoof; i++ ) {
if ( !*yyLeftBraceFollows ) {
YY_SAVE();
if ( matchBracelessControlStatement() ) {
/*
The situation is this, and we want to indent "z;":
if ( x &&
y )
z;
yyLine is "if ( x &&".
*/
return indentOfLine( *yyLine ) + ppIndentSize;
}
YY_RESTORE();
}
if ( yyLine->endsWith(QChar(';')) ||
yyLine->contains(QChar('{')) > 0 ) {
/*
The situation is possibly this, and we want to indent
"z;":
while ( x )
y;
z;
We return the indent of "while ( x )". In place of "y;",
any arbitrarily complex compound statement can appear.
*/
if ( *yyBraceDepth > 0 ) {
do {
if ( !readLine() )
break;
} while ( *yyBraceDepth > 0 );
}
LinizerState hookState;
if ( *yyBraceDepth == 0 ) {
while ( isContinuationLine() )
readLine();
hookState = *yyLinizerState;
readLine();
if ( *yyBraceDepth == 0 ) {
do {
if ( !matchBracelessControlStatement() )
break;
hookState = *yyLinizerState;
} while ( readLine() );
}
} else {
hookState = *yyLinizerState;
}
*yyLinizerState = hookState;
while ( isContinuationLine() )
readLine();
/*
Never trust lines containing only '{' or '}', as some
people (Richard Stallman) format them weirdly.
*/
if ( yyLine->stripWhiteSpace().length() > 1 )
return indentOfLine( *yyLine ) - *yyBraceDepth * ppIndentSize;
}
if ( !readLine() )
break;
}
return 0;
}
/*
Constructs global variables used by the indenter.
*/
static void initializeIndenter()
{
literal = new QRegExp( QString("([\"'])(?:\\\\.|[^\\\\])*\\1") );
literal->setMinimal( TRUE );
label = new QRegExp( QString(
"^\\s*((?:case\\b[^:]+|[a-zA-Z_0-9]+):)(?!:)") );
inlineCComment = new QRegExp( QString("/\\*.*\\*/") );
inlineCComment->setMinimal( TRUE );
braceX = new QRegExp( QString("^\\s*\\}\\s*(?:else|catch)\\b") );
iflikeKeyword = new QRegExp( QString("\\b(?:catch|do|for|if|while)\\b") );
yyLinizerState = new LinizerState;
}
/*
Destroys global variables used by the indenter.
*/
static void terminateIndenter()
{
delete literal;
delete label;
delete inlineCComment;
delete braceX;
delete iflikeKeyword;
delete yyLinizerState;
}
/*
Returns the recommended indent for the bottom line of program.
Unless null, typedIn stores the character of yyProgram that
triggered reindentation.
This function works better if typedIn is set properly; it is
slightly more conservative if typedIn is completely wild, and
slighly more liberal if typedIn is always null. The user might be
annoyed by the liberal behavior.
*/
int indentForBottomLine( const QStringList& program, QChar typedIn )
{
if ( program.isEmpty() )
return 0;
initializeIndenter();
yyProgram = new QStringList( program );
startLinizer();
const QString& bottomLine = program.last();
QChar firstCh = firstNonWhiteSpace( bottomLine );
int indent;
if ( bottomLineStartsInCComment() ) {
/*
The bottom line starts in a C-style comment. Indent it
smartly, unless the user has already played around with it,
in which case it's better to leave her stuff alone.
*/
if ( isOnlyWhiteSpace(bottomLine) ) {
indent = indentWhenBottomLineStartsInCComment();
} else {
indent = indentOfLine( bottomLine );
}
} else if ( okay(typedIn, QChar('#')) && firstCh == QChar('#') ) {
/*
Preprocessor directives go flush left.
*/
indent = 0;
} else {
if ( isUnfinishedLine() ) {
indent = indentForContinuationLine();
} else {
indent = indentForStandaloneLine();
}
if ( okay(typedIn, QChar('}')) && firstCh == QChar('}') ) {
/*
A closing brace is one level more to the left than the
code it follows.
*/
indent -= ppIndentSize;
} else if ( okay(typedIn, QChar(':')) ) {
QRegExp caseLabel( QString(
"\\s*(?:case\\b[^:]+|default\\s+):\\s*") );
if ( caseLabel.exactMatch(bottomLine) ) {
/*
Move a case label one level to the left, but only
if the user did not play around with it yet. Some
users have exotic tastes in the matter, and most
users probably are not patient enough to wait for
the final ':' to format their code properly.
We don't attempt the same for goto labels, as the
user might be in the middle of "foo::bar".
*/
if ( indentOfLine(bottomLine) <= indent )
indent -= ppIndentSize;
else
indent = indentOfLine( bottomLine );
}
}
}
delete yyProgram;
terminateIndenter();
return QMAX( 0, indent );
}
#ifdef Q_TEST_YYINDENT
/*
Test driver.
*/
#include <qfile.h>
#include <qtextstream.h>
#include <errno.h>
static QString fileContents( const QString& fileName )
{
QFile f( fileName );
if ( !f.open(IO_ReadOnly) ) {
qWarning( "yyindent error: Cannot open file '%s' for reading: %s",
fileName.latin1(), strerror(errno) );
return QString::null;
}
QTextStream t( &f );
QString contents = t.read();
f.close();
if ( contents.isEmpty() )
qWarning( "yyindent error: File '%s' is empty", fileName.latin1() );
return contents;
}
int main( int argc, char **argv )
{
if ( argc != 2 ) {
qWarning( "usage: yyindent file.cpp" );
return 1;
}
QString code = fileContents( QString(argv[1]) );
QStringList program = QStringList::split( QChar('\n'), code, TRUE );
QStringList p;
QString out;
while ( !program.isEmpty() && program.last().stripWhiteSpace().isEmpty() )
program.remove( program.fromLast() );
QStringList::ConstIterator line = program.begin();
while ( line != program.end() ) {
p.push_back( *line );
QChar typedIn = firstNonWhiteSpace( *line );
if ( p.last().endsWith(QChar(':')) )
typedIn = QChar( ':' );
int indent = indentForBottomLine( p, typedIn );
if ( !(*line).stripWhiteSpace().isEmpty() ) {
for ( int j = 0; j < indent; j++ )
out += QChar( ' ' );
out += (*line).stripWhiteSpace();
}
out += QChar( '\n' );
line++;
}
while ( out.endsWith(QChar('\n')) )
out.truncate( out.length() - 1 );
printf( "%s\n", out.latin1() );
return 0;
}
#endif
|