TextPosnBase.java 34.7 KB
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
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.text;

import com.adobe.xfa.text.TextAttr;
import com.adobe.xfa.text.TextBreakIterator;
import com.adobe.xfa.text.TextCharProp;
import com.adobe.xfa.text.TextDisplay;
import com.adobe.xfa.text.TextEmbed;
import com.adobe.xfa.text.TextField;
import com.adobe.xfa.text.TextMarker;
import com.adobe.xfa.text.TextMarkupBase;
import com.adobe.xfa.text.TextNullFrame;
import com.adobe.xfa.text.TextRange;
import com.adobe.xfa.text.TextStream;
import com.adobe.xfa.text.TextStreamIterator;
import com.adobe.xfa.ut.UnitSpan;
import java.util.List;

public class TextPosnBase
extends TextMarkupBase {
    public static final int POSN_AFTER = 0;
    public static final int POSN_BEFORE = 1;
    public static final int AFFINITY_AFTER = 0;
    public static final int AFFINITY_BEFORE = 1;
    public static final int WORD_MODE_LEGACY = 0;
    public static final int WORD_MODE_ALGORITHMIC = 1;
    public static final int WORD_MODE_LOCALE_SENSITIVE = 2;
    private static final int WHITE_SPACE_SPACE = 0;
    private static final int WHITE_SPACE_TEXT = 1;
    private static final int WHITE_SPACE_BREAK = 2;
    private static final int WHITE_SPACE_NOT_FOUND = 3;
    private static final int NW_START = 0;
    private static final int NW_START_BREAK = 1;
    private static final int NW_START_WORD = 2;
    private static final int NW_SPACES = 3;
    private static final int NW_DONE = 4;
    private static final int PW_START = 0;
    private static final int PW_START_SPACES = 1;
    private static final int PW_WORD = 2;
    private static final int PW_BREAK = 3;
    private static final int PW_DONE = 4;
    private static final int WB_SPACE = 0;
    private static final int WB_LETTER = 1;
    private static final int WB_OTHER = 2;
    TextStream mpoStream;
    int mnMajor;
    int mnMinor;
    int mnIndex;
    boolean mbIsBeforePosition;
    boolean mbIsPrevAffinity;
    boolean mbIsRTL;
    boolean mbIsMarkerPosition;
    boolean mbIsInvalid;
    boolean mbTightenPending;
    UnitSpan mpoTarget;
    private static final int[][] geLegacyNextWordState = new int[][]{{3, 2, 1}, {3, 4, 4}, {3, 2, 4}, {3, 4, 4}};
    private static final int[][] geLegacyPrevWordState = new int[][]{{1, 2, 3}, {1, 2, 3}, {4, 2, 4}};
    private static final boolean[][] gbWordBreak = new boolean[][]{{false, true, true}, {false, false, true}, {false, true, false}, {false, false, false}, {true, false, true}, {true, true, false}};

    public TextPosnBase() {
        this.initialize();
    }

    public TextPosnBase(TextPosnBase oSource) {
        this.initialize();
        this.copy(oSource);
    }

    public TextPosnBase(TextStream poNewStream, int nNewIndex, int eNewPosn) {
        if (this.initWithStream(poNewStream, eNewPosn)) {
            this.mpoStream.posnUpdateStreamLoc(this, nNewIndex);
        }
    }

    public TextPosnBase(TextStream poNewStream, int nNewIndex) {
        if (this.initWithStream(poNewStream, 0)) {
            this.mpoStream.posnUpdateStreamLoc(this, nNewIndex);
        }
    }

    public TextPosnBase(TextStream poNewStream) {
        if (this.initWithStream(poNewStream, 0)) {
            this.mpoStream.posnFirst(this);
        }
    }

    public void associate(TextStream poNewStream, int nNewIndex, int eNewPosn) {
        this.doAssociate(poNewStream, nNewIndex, eNewPosn);
    }

    public void associate(TextStream poNewStream, int nNewIndex) {
        this.doAssociate(poNewStream, nNewIndex, 0);
    }

    public void associate(TextStream poNewStream) {
        this.cleanupTarget();
        if (this.initWithStream(poNewStream, 0)) {
            this.mpoStream.posnFirst(this);
        }
    }

    public int index() {
        return this.mnIndex;
    }

    public void index(int nNewIndex) {
        if (this.mpoStream != null && nNewIndex != this.mnIndex) {
            this.mpoStream.posnUpdateStreamLoc(this, nNewIndex);
        }
    }

    public int position() {
        return this.mbIsBeforePosition ? 1 : 0;
    }

    public void position(int ePosition) {
        this.mbIsBeforePosition = ePosition == 1;
    }

    public int affinity() {
        return this.mbIsPrevAffinity ? 1 : 0;
    }

    public void affinity(int eAffinity) {
        this.mbIsPrevAffinity = eAffinity == 1;
    }

    public boolean isRTL() {
        return this.mbIsRTL;
    }

    public void setRTL(boolean bRTL) {
        this.mbIsRTL = bRTL;
    }

    public void enumerateMarkers(List<TextMarker> oMarkers, boolean bPositionMarkers, boolean bRangeMarkers) {
        if (this.mpoStream != null) {
            this.mpoStream.rangeEnumMarker(this, this, oMarkers, bPositionMarkers, bRangeMarkers, false);
        }
    }

    public void first(boolean bVisual) {
        if (this.mpoStream != null) {
            this.mpoStream.posnFirst(this);
        }
        if (bVisual) {
            this.start(true);
        }
    }

    public void first() {
        this.first(false);
    }

    public void last(boolean bVisual) {
        if (this.mpoStream != null) {
            this.mpoStream.posnUpdateStreamLoc(this, this.mpoStream.posnCount());
        }
        if (bVisual) {
            this.end(true);
        }
    }

    public void last() {
        this.last(false);
    }

    public int next(boolean bTestOnly) {
        return this.next(0, bTestOnly);
    }

    public int next(int eNullFrameMode) {
        return this.next(eNullFrameMode, false);
    }

    public int next() {
        return this.next(false);
    }

    public int next(int eNullFrameMode, boolean bTestOnly) {
        int[] result = this.nextData(eNullFrameMode, bTestOnly);
        if (result == null) {
            return 0;
        }
        return result[0];
    }

    public int[] nextData(boolean bTestOnly) {
        return this.nextData(0, bTestOnly);
    }

    public int prev(boolean bTestOnly) {
        return this.prev(0, bTestOnly);
    }

    public int prev(int eNullFrameMode) {
        return this.prev(eNullFrameMode, false);
    }

    public int prev() {
        return this.prev(false);
    }

    public int prev(int eNullFrameMode, boolean bTestOnly) {
        int[] result = this.prevData(eNullFrameMode, bTestOnly);
        if (result == null) {
            return 0;
        }
        return result[0];
    }

    public int[] prevData(boolean bTestOnly) {
        return this.prevData(0, bTestOnly);
    }

    public int nextChar(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return 0;
        }
        return this.mpoStream.posnNextChar(this, bTestOnly);
    }

    public int nextChar() {
        return this.nextChar(false);
    }

    public int prevChar(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return 0;
        }
        return this.mpoStream.posnPrevChar(this, bTestOnly);
    }

    public int prevChar() {
        return this.nextChar(false);
    }

    public TextField nextField(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnNextField(this, bTestOnly);
    }

    public TextField nextField() {
        return this.nextField(false);
    }

    public TextField prevField(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnPrevField(this, bTestOnly);
    }

    public TextField prevField() {
        return this.prevField(false);
    }

    public TextEmbed nextEmbed(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnNextEmbed(this, bTestOnly);
    }

    public TextEmbed nextEmbed() {
        return this.nextEmbed(false);
    }

    public TextEmbed prevEmbed(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnPrevEmbed(this, bTestOnly);
    }

    public TextEmbed prevEmbed() {
        return this.prevEmbed(false);
    }

    public TextAttr nextAttr(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnNextAttr(this, bTestOnly);
    }

    public TextAttr nextAttr() {
        return this.nextAttr(false);
    }

    public TextAttr prevAttr(boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnPrevAttr(this, bTestOnly);
    }

    public TextAttr prevAttr() {
        return this.prevAttr(false);
    }

    public boolean nextUserPosn(boolean bVisual) {
        int[] result = this.nextUserPosnTypeData(bVisual);
        return result != null && result[0] != 0;
    }

    public boolean nextUserPosn() {
        return this.nextUserPosn(false);
    }

    public boolean prevUserPosn(boolean bVisual) {
        int[] result = this.prevUserPosnTypeData(bVisual);
        return result != null && result[0] != 0;
    }

    public boolean prevUserPosn() {
        return this.prevUserPosn(false);
    }

    public int nextUserPosnType(boolean bVisual) {
        return this.nextUserPosnType(0, bVisual);
    }

    public int nextUserPosnType() {
        return this.nextUserPosnType(false);
    }

    public int nextUserPosnType(int eNullFrameMode) {
        return this.nextUserPosnType(eNullFrameMode, false);
    }

    public int nextUserPosnType(int eNullFrameMode, boolean bVisual) {
        int[] result = this.nextUserPosnTypeData(eNullFrameMode, bVisual);
        if (result == null) {
            return 0;
        }
        return result[0];
    }

    public int[] nextUserPosnTypeData(boolean bVisual) {
        return this.nextUserPosnTypeData(0, bVisual);
    }

    public int prevUserPosnType(boolean bVisual) {
        return this.prevUserPosnType(0, bVisual);
    }

    public int prevUserPosnType() {
        return this.prevUserPosnType(false);
    }

    public int prevUserPosnType(int eNullFrameMode) {
        return this.prevUserPosnType(eNullFrameMode, false);
    }

    public int prevUserPosnType(int eNullFrameMode, boolean bVisual) {
        int[] result = this.prevUserPosnTypeData(eNullFrameMode, bVisual);
        if (result == null) {
            return 0;
        }
        return result[0];
    }

    public int[] prevUserPosnTypeData(boolean bVisual) {
        return this.prevUserPosnTypeData(0, bVisual);
    }

    public boolean nextWord(boolean bVisual, int eWordMode) {
        if (eWordMode == 0) {
            int eItem;
            boolean bMoved = false;
            int eState = 0;
            while ((eItem = this.nextUserPosnWhiteSpace(bVisual)) != 3) {
                if ((eState = geLegacyNextWordState[eState][eItem]) == 4) {
                    this.prevUserPosn(bVisual);
                    break;
                }
                bMoved = true;
            }
            return bMoved;
        }
        return this.algorithmicMoveWord(true, false, bVisual);
    }

    public boolean nextWord(boolean bVisual) {
        return this.prevWord(bVisual, 0);
    }

    public boolean nextWord() {
        return this.prevWord(false, 0);
    }

    public boolean prevWord(boolean bVisual, int eWordMode) {
        if (eWordMode == 0) {
            int eItem;
            boolean bMoved = false;
            int eState = 0;
            while ((eItem = this.prevUserPosnWhiteSpace(bVisual)) != 3) {
                bMoved = true;
                if ((eState = geLegacyPrevWordState[eState][eItem]) == 4) {
                    this.nextUserPosn(bVisual);
                    break;
                }
                if (eState != 3) continue;
                break;
            }
            return bMoved;
        }
        return this.algorithmicMoveWord(false, false, bVisual);
    }

    public boolean prevWord(boolean bVisual) {
        return this.prevWord(bVisual, 0);
    }

    public boolean prevWord() {
        return this.prevWord(false, 0);
    }

    public boolean nextLine() {
        if (this.display() == null) {
            return false;
        }
        if (!this.down()) {
            if (!this.nextUserPosn()) {
                return false;
            }
            this.last();
        } else {
            this.start();
        }
        this.tighten(false);
        return true;
    }

    public boolean prevLine() {
        if (this.display() == null) {
            return false;
        }
        TextPosnBase oTemp = new TextPosnBase(this);
        if (!this.prevUserPosn()) {
            return false;
        }
        oTemp.start();
        if (this.lte(oTemp)) {
            this.start();
        } else {
            this.copyFrom(oTemp);
        }
        this.tighten(false);
        return true;
    }

    public boolean nextPara() {
        return this.nextPara(0);
    }

    public boolean prevPara() {
        return this.prevPara(0);
    }

    public void wordStart(int eWordMode) {
        if (eWordMode == 0) {
            boolean bMoved = false;
            int eItem = this.prevUserPosnWhiteSpace();
            while (eItem == 1) {
                bMoved = true;
                eItem = this.prevUserPosnWhiteSpace();
            }
            if (eItem == 0 || eItem == 2 && bMoved) {
                this.nextUserPosn();
            }
        } else {
            this.algorithmicMoveWord(false, true, false);
        }
    }

    public void wordStart() {
        this.wordEnd(0);
    }

    public void wordEnd(int eWordMode) {
        if (eWordMode == 0) {
            boolean bMoved = false;
            int eItem = this.nextUserPosnWhiteSpace();
            while (eItem == 1) {
                bMoved = true;
                eItem = this.nextUserPosnWhiteSpace();
            }
            if (eItem == 0 || eItem == 2 && bMoved) {
                this.prevUserPosn();
            }
        } else {
            this.algorithmicMoveWord(true, true, false);
        }
    }

    public void wordEnd() {
        this.wordEnd(0);
    }

    public void paraStart() {
        int eItem = this.prevUserPosnType();
        while (eItem != 0 && eItem != 5) {
            eItem = this.prevUserPosnType();
        }
        if (eItem == 5) {
            this.nextUserPosn();
        }
    }

    public void paraEnd() {
        int eItem = this.nextUserPosnType();
        while (eItem != 0 && eItem != 5) {
            eItem = this.nextUserPosnType();
        }
        if (eItem == 5) {
            this.prevUserPosn();
        }
    }

    public boolean up() {
        TextDisplay poDisplay = this.display();
        if (poDisplay == null) {
            return false;
        }
        TextPosnBase oResult = new TextPosnBase();
        UnitSpan newTarget = poDisplay.caretUp(this, this.mpoTarget, oResult);
        if (newTarget == null) {
            return false;
        }
        this.copy(oResult);
        this.tighten(this.isAtStart());
        this.mpoTarget = newTarget;
        return true;
    }

    public boolean down() {
        TextDisplay poDisplay = this.display();
        if (poDisplay == null) {
            return false;
        }
        TextPosnBase oResult = new TextPosnBase();
        UnitSpan newTarget = poDisplay.caretDown(this, this.mpoTarget, oResult);
        if (newTarget == null) {
            return false;
        }
        this.copy(oResult);
        this.tighten(this.isAtStart());
        this.mpoTarget = newTarget;
        return true;
    }

    public boolean start(boolean bVisual) {
        TextDisplay poDisplay = this.display();
        if (poDisplay == null) {
            return false;
        }
        TextPosnBase oResult = new TextPosnBase();
        if (!poDisplay.caretStartEnd(this, false, bVisual, oResult)) {
            return false;
        }
        this.copy(oResult);
        this.tighten(false);
        return true;
    }

    public boolean start() {
        return this.start(false);
    }

    public boolean end(boolean bVisual) {
        TextDisplay poDisplay = this.display();
        if (poDisplay == null) {
            return false;
        }
        TextPosnBase oResult = new TextPosnBase();
        if (!poDisplay.caretStartEnd(this, true, bVisual, oResult)) {
            return false;
        }
        this.copy(oResult);
        this.tighten(false);
        return true;
    }

    public boolean end() {
        return this.end(false);
    }

    public boolean isAtStart(boolean bCheckFirstLineOnly) {
        TextDisplay poDisplay = this.display();
        if (poDisplay == null) {
            return false;
        }
        return false;
    }

    public boolean isAtStart() {
        return this.isAtStart(false);
    }

    public void tighten(boolean bSkipAhead) {
        if (bSkipAhead) {
            int eItem = this.next(1, true);
            while (eItem != 0 && !TextPosnBase.isUserPosnType(eItem)) {
                this.next();
                eItem = this.next(1, true);
            }
        } else {
            int eItem = this.prev(1, true);
            while (eItem != 0 && !TextPosnBase.isUserPosnType(eItem)) {
                this.prev();
                eItem = this.prev(1, true);
            }
            if (this.index() == 0) {
                this.tighten(true);
            }
        }
    }

    public int charPosition() {
        int cChar;
        TextPosnBase oPos = new TextPosnBase(this);
        int nResult = -1;
        do {
            ++nResult;
        } while ((cChar = oPos.prevChar()) != 0);
        return nResult;
    }

    public TextPosnBase charPosition(int nIndex) {
        TextPosnBase poResult = new TextPosnBase(this);
        int nCurrent = nIndex;
        if (nCurrent >= 0) {
            while (nCurrent > 0 && poResult.nextChar() != 0) {
                --nCurrent;
            }
        } else {
            while (nCurrent < 0 && poResult.prevChar() != 0) {
                ++nCurrent;
            }
        }
        return poResult;
    }

    public TextRange charRange(int lStart, int lLength) {
        TextPosnBase oStart = this.charPosition(lStart);
        TextRange poResult = new TextRange(this.mpoStream, oStart.index(), oStart.index());
        TextPosnBase oEnd = this.charPosition(lStart + lLength);
        poResult.end(oEnd.index());
        return poResult;
    }

    public void insert(char cInsert) {
        if (this.mpoStream != null) {
            this.mpoStream.posnInsert(this, cInsert);
        }
    }

    public void insert(String sInsert) {
        if (this.mpoStream != null) {
            this.mpoStream.posnInsert(this, sInsert);
        }
    }

    public void insert(TextStream oInsert) {
        if (this.mpoStream != null) {
            this.mpoStream.posnInsert(this, oInsert);
        }
    }

    public TextField insert(TextField poField) {
        if (this.mpoStream == null) {
            return null;
        }
        TextPosnBase oAnchor = new TextPosnBase(this);
        oAnchor.position(1);
        this.mpoStream.posnInsert(this, poField);
        return oAnchor.nextField(true);
    }

    public TextEmbed insert(TextEmbed poEmbed) {
        if (this.mpoStream == null) {
            return null;
        }
        TextPosnBase oAnchor = new TextPosnBase(this);
        oAnchor.position(1);
        this.mpoStream.posnInsert(this, poEmbed);
        return oAnchor.nextEmbed(true);
    }

    public void insertPara() {
        if (this.mpoStream != null) {
            this.mpoStream.posnInsertPara(this);
        }
    }

    public TextMarker insert(TextMarker poMarker) {
        return this.mpoStream == null ? null : this.mpoStream.posnMarker(this, poMarker);
    }

    public void deleteAhead(int nDelete, boolean bRaw) {
        if (this.mpoStream == null) {
            return;
        }
        if (!bRaw) {
            this.tighten(true);
            TextPosnBase oEnd = new TextPosnBase(this.stream(), this.index() + nDelete);
            TextPosnBase oBack = new TextPosnBase(oEnd);
            while (oBack.isCombiningChar(false)) {
                oBack.tighten(true);
                if (!oBack.lte(this)) continue;
            }
            if (oBack.gt(this)) {
                while (oEnd.isCombiningChar(true)) {
                }
                oEnd.tighten(false);
                nDelete = oEnd.index() - this.index();
            }
        }
        this.mpoStream.posnDelete(this, nDelete, bRaw);
        if (!bRaw) {
            this.tighten(this.isAtStart());
        }
    }

    public void deleteAhead(int nDelete) {
        this.deleteAhead(nDelete, false);
    }

    public void deleteAhead() {
        this.deleteAhead(1, false);
    }

    public void deleteBack(int nDelete, boolean bRaw) {
        if (this.mpoStream == null) {
            return;
        }
        int nActual = nDelete;
        if (bRaw) {
            if (nActual > this.mnIndex) {
                nActual = this.mnIndex;
            }
            this.index(this.mnIndex - nActual);
        } else {
            int nLeft;
            for (nLeft = nDelete; nLeft > 0 && this.prevUserPosn(); --nLeft) {
            }
            nActual -= nLeft;
        }
        this.deleteAhead(nActual, bRaw);
    }

    public void deleteBack(int nDelete) {
        this.deleteBack(nDelete, false);
    }

    public void deleteBack() {
        this.deleteBack(1, false);
    }

    @Override
    public TextAttr attributePtr() {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnAttrPtr(this);
    }

    public TextAttr attribute() {
        TextAttr poAttr = this.attributePtr();
        if (poAttr == null) {
            return TextAttr.defaultAttr(false);
        }
        return poAttr;
    }

    public void attribute(TextAttr oNewAttr, boolean bRaw) {
        if (this.mpoStream != null) {
            this.mpoStream.posnAttr(this, oNewAttr, bRaw);
        }
    }

    public final void attribute(TextAttr oNewAttr) {
        this.attribute(oNewAttr, false);
    }

    public void setKeyboard() {
    }

    public void copyFrom(TextPosnBase oSource) {
        this.copy(oSource);
    }

    public boolean equals(Object object) {
        if (this == object) {
            return true;
        }
        if (object == null) {
            return false;
        }
        if (object.getClass() != this.getClass()) {
            return false;
        }
        TextPosnBase posn = (TextPosnBase)object;
        return this.mpoStream == posn.mpoStream && this.mnIndex == posn.mnIndex;
    }

    public int hashCode() {
        int hash = 97;
        hash = hash * 31 ^ this.mpoStream.hashCode();
        hash = hash * 31 ^ this.mnIndex;
        return hash;
    }

    public boolean notEqual(TextPosnBase oCompare) {
        return !this.equals(oCompare);
    }

    public boolean lt(TextPosnBase oCompare) {
        return this.mnIndex < oCompare.mnIndex;
    }

    public boolean lte(TextPosnBase oCompare) {
        return this.mnIndex <= oCompare.mnIndex;
    }

    public boolean gt(TextPosnBase oCompare) {
        return this.mnIndex > oCompare.mnIndex;
    }

    public boolean gte(TextPosnBase oCompare) {
        return this.mnIndex >= oCompare.mnIndex;
    }

    @Override
    public void para() {
        this.insertPara();
    }

    @Override
    public void field(TextField poField) {
        this.insert(poField);
    }

    @Override
    public void text(String sText) {
        this.insert(sText);
    }

    @Override
    public void attr(TextAttr oAttr) {
        this.attribute(oAttr);
    }

    @Override
    public boolean legacyPositioning() {
        return this.mpoStream == null ? false : this.mpoStream.hasLegacyPositioning();
    }

    @Override
    public void marker(TextMarker poMarker) {
        this.insert(poMarker);
    }

    @Override
    public TextMarker markerStart(TextMarker poMarker) {
        return this.mpoStream == null ? null : this.mpoStream.posnMarkerStart(this, poMarker);
    }

    @Override
    public void markerEnd(TextMarker poMarker) {
        if (this.mpoStream != null) {
            this.mpoStream.posnMarkerEnd(this, poMarker);
        }
    }

    boolean isSamePosition(TextPosnBase oCompare) {
        return this.mpoStream == oCompare.mpoStream && this.mnIndex == oCompare.mnIndex;
    }

    public TextStream stream() {
        return this.mpoStream;
    }

    boolean isMarkerPosition() {
        return this.mbIsMarkerPosition;
    }

    void insertNullFrame(TextNullFrame poNullFrame) {
        if (this.mpoStream != null) {
            this.mpoStream.posnInsertNullFrame(this, poNullFrame);
        }
    }

    void removeNullFrame() {
        if (this.mpoStream != null) {
            this.mpoStream.posnRemoveNullFrame(this);
        }
    }

    void invalidate(boolean bTighten) {
        this.mbIsInvalid = true;
        this.mbTightenPending = bTighten;
    }

    void testValid() {
        if (this.mbIsInvalid) {
            this.validate();
        }
    }

    char charMove(boolean bForward, boolean bVisual) {
        int[] result = bForward ? this.nextUserPosnTypeData(bVisual) : this.prevUserPosnTypeData(bVisual);
        return result != null && result[0] != 0 ? (char)result[1] : '\u0000';
    }

    int major() {
        this.testValid();
        return this.mnMajor;
    }

    int minor() {
        this.testValid();
        return this.mnMinor;
    }

    void copyData(TextPosnBase oSource) {
        if (this.mpoStream == oSource.mpoStream) {
            if (this.mpoStream != null) {
                this.copySameStream(oSource);
            }
        } else if (this.mpoStream != null) {
            this.index(oSource.index());
        }
    }

    int[] nextData(int eNullFrameMode, boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnNext(this, eNullFrameMode, bTestOnly);
    }

    int[] prevData(int eNullFrameMode, boolean bTestOnly) {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.posnPrev(this, eNullFrameMode, bTestOnly);
    }

    boolean nextPara(int eNullFrameMode) {
        int eItem = this.nextUserPosnType(eNullFrameMode);
        while (eItem != 0 && eItem != 5) {
            eItem = this.nextUserPosnType(eNullFrameMode);
        }
        return eItem == 5;
    }

    boolean prevPara(int eNullFrameMode) {
        boolean bMoved = false;
        int eItem = this.prevUserPosnType(eNullFrameMode);
        while (!(eItem == 0 || eItem == 5 && bMoved)) {
            bMoved = true;
            eItem = this.prevUserPosnType(eNullFrameMode);
        }
        if (eItem != 0) {
            this.nextUserPosn();
        }
        return bMoved;
    }

    int[] nextUserPosnTypeData(int eNullFrameMode, boolean bVisual) {
        if (bVisual) {
            return this.visualMoveData(true);
        }
        int[] result = this.nextData(eNullFrameMode, false);
        while (result != null && result[0] != 0 && !TextPosnBase.isUserPosnType(result[0])) {
            result = this.nextData(eNullFrameMode, false);
        }
        if (result == null) {
            return null;
        }
        int eReturn = result[0];
        int c = result[1];
        if (eReturn == 5 || eReturn == 2 && c == 10) {
            int[] skipAttrResult = this.nextData(eNullFrameMode, true);
            while (skipAttrResult != null && skipAttrResult[0] != 0 && !TextPosnBase.isUserPosnType(skipAttrResult[0])) {
                this.next(eNullFrameMode);
                skipAttrResult = this.nextData(eNullFrameMode, true);
            }
        } else if (eReturn != 2 || c < 12352 || c > 12543 || this.display() != null) {
            // empty if block
        }
        switch (eReturn) {
            case 5: {
                c = 10;
                break;
            }
            default: {
                c = 65532;
            }
        }
        result[0] = eReturn;
        result[1] = c;
        return result;
    }

    int[] prevUserPosnTypeData(int eNullFrameMode, boolean bVisual) {
        if (bVisual) {
            return this.visualMoveData(true);
        }
        int[] result = this.prevData(eNullFrameMode, false);
        while (result != null && result[0] != 0 && !TextPosnBase.isUserPosnType(result[0])) {
            result = this.prevData(eNullFrameMode, false);
        }
        if (result == null) {
            return null;
        }
        int eReturn = result[0];
        int c = result[1];
        if (eReturn != 5 && (eReturn != 2 || c != 10)) {
            if (eReturn != 2 || c != 12441 && c != 12442 || this.display() != null) {
                // empty if block
            }
            int[] skipAttrResult = this.prevData(eNullFrameMode, true);
            while (skipAttrResult != null && skipAttrResult[0] != 0 && !TextPosnBase.isUserPosnType(skipAttrResult[0])) {
                this.prev(eNullFrameMode);
                skipAttrResult = this.prevData(eNullFrameMode, true);
            }
            if (this.mnIndex == 0) {
                this.first();
            }
        }
        eReturn = result[0];
        c = (char)result[1];
        switch (eReturn) {
            case 5: {
                c = 10;
                break;
            }
            default: {
                c = 65532;
            }
        }
        result[0] = eReturn;
        result[1] = c;
        return result;
    }

    void setMarkerPosition(boolean bIsMarkerPosition) {
        this.mbIsMarkerPosition = bIsMarkerPosition;
    }

    private void doAssociate(TextStream poNewStream, int nNewIndex, int eNewPosn) {
        this.cleanupTarget();
        if (this.initWithStream(poNewStream, eNewPosn)) {
            this.mpoStream.posnUpdateStreamLoc(this, nNewIndex);
        }
    }

    private void copy(TextPosnBase oSource) {
        this.mpoStream = oSource.mpoStream;
        this.copySameStream(oSource);
    }

    private void copySameStream(TextPosnBase oSource) {
        this.mnMajor = oSource.mnMajor;
        this.mnMinor = oSource.mnMinor;
        this.mnIndex = oSource.mnIndex;
        this.mbIsBeforePosition = oSource.mbIsBeforePosition;
        this.mbIsPrevAffinity = oSource.mbIsPrevAffinity;
        this.mbIsRTL = oSource.mbIsRTL;
        this.mbIsMarkerPosition = oSource.mbIsMarkerPosition;
        this.mbIsInvalid = oSource.mbIsInvalid;
        this.mbTightenPending = oSource.mbTightenPending;
        this.cleanupTarget();
        if (oSource.mpoTarget != null) {
            this.mpoTarget = oSource.mpoTarget;
        }
    }

    private TextDisplay display() {
        if (this.mpoStream == null) {
            return null;
        }
        return this.mpoStream.display();
    }

    private void initialize() {
        this.mpoStream = null;
        this.mnMajor = 0;
        this.mnMinor = 0;
        this.mnIndex = 0;
        this.mbIsBeforePosition = false;
        this.mbIsPrevAffinity = false;
        this.mbIsRTL = false;
        this.mbIsMarkerPosition = false;
        this.mbIsInvalid = false;
        this.mbTightenPending = false;
        this.mpoTarget = null;
    }

    private boolean initWithStream(TextStream poNewStream, int eNewPosn) {
        this.initialize();
        this.position(eNewPosn);
        if (poNewStream == null) {
            return false;
        }
        this.mpoStream = poNewStream;
        return true;
    }

    void cleanup() {
        this.cleanupTarget();
        this.initialize();
    }

    void cleanupTarget() {
        this.mpoTarget = null;
    }

    private int[] visualMoveData(boolean bRight) {
        if (this.display() == null) {
            return null;
        }
        return null;
    }

    private void validate() {
        int nIndex = this.mnIndex;
        this.mnIndex = 0;
        this.mnMajor = 0;
        this.mnMinor = 0;
        if (this.mpoStream != null) {
            this.mpoStream.posnUpdateStreamLoc(this, nIndex);
        }
        if (this.mbTightenPending) {
            this.tighten(false);
            this.mbTightenPending = false;
        }
        this.mbIsInvalid = false;
    }

    private int nextUserPosnWhiteSpace(boolean bVisual) {
        int eItem = this.nextUserPosnType(bVisual);
        switch (eItem) {
            case 0: {
                return 3;
            }
            case 2: {
                return Character.isWhitespace((char)this.prevChar(true)) ? 0 : 1;
            }
            case 5: {
                return 0;
            }
        }
        return 2;
    }

    private int nextUserPosnWhiteSpace() {
        return this.nextUserPosnWhiteSpace(false);
    }

    private int prevUserPosnWhiteSpace(boolean bVisual) {
        int eItem = this.prevUserPosnType(bVisual);
        switch (eItem) {
            case 0: {
                return 3;
            }
            case 2: {
                return Character.isWhitespace((char)this.nextChar(true)) ? 0 : 1;
            }
            case 5: {
                return 0;
            }
        }
        return 2;
    }

    private int prevUserPosnWhiteSpace() {
        return this.prevUserPosnWhiteSpace(false);
    }

    private boolean algorithmicMoveWord(boolean bNext, boolean bLimitOnly, boolean bVisual) {
        int nIndex = this.index();
        char c = this.charMove(bNext, bVisual);
        if (c == '\u0000') {
            return false;
        }
        int eData = TextCharProp.getCharProperty(c);
        int nPrev = TextPosnBase.propertyToNextWordBreak(eData);
        this.index(nIndex);
        boolean bMoved = false;
        TextStreamIterator oStreamIterator = new TextStreamIterator(this, bNext, bVisual);
        TextBreakIterator poBreakIterator = TextBreakIterator.createWordInstance(oStreamIterator);
        int nRowOffset = bNext ? 0 : 3;
        nIndex = poBreakIterator.next();
        while (nIndex != Integer.MAX_VALUE) {
            bMoved = true;
            this.index(nIndex);
            c = this.charMove(bNext, bVisual);
            if (c == '\u0000') break;
            eData = TextCharProp.getCharProperty(c);
            int nNext = TextPosnBase.propertyToNextWordBreak(eData);
            if (bLimitOnly ? nPrev != nNext : gbWordBreak[nPrev + nRowOffset][nNext]) break;
            nPrev = nNext;
            nIndex = poBreakIterator.next();
        }
        if (nIndex != Integer.MAX_VALUE) {
            this.index(nIndex);
        }
        return bMoved;
    }

    private boolean isCombiningChar(boolean bForward) {
        int eItem;
        boolean bIsCombining = false;
        int n = eItem = bForward ? this.nextUserPosnType(1) : this.prevUserPosnType(1);
        if (eItem != 0) {
            int eBreak;
            int c;
            if (eItem == 2 && TextCharProp.getBreakClass(eBreak = TextCharProp.getCharProperty(c = bForward ? this.prevChar(true) : this.nextChar(true))) == 8) {
                bIsCombining = true;
            }
            if (!bIsCombining) {
                if (bForward) {
                    this.prevUserPosnType(1);
                } else {
                    this.nextUserPosnType(1);
                }
            }
        }
        return bIsCombining;
    }

    private static int propertyToNextWordBreak(int eData) {
        if (TextCharProp.getBreakClass(eData) == 31) {
            return 0;
        }
        if (TextCharProp.isWordEdge(eData)) {
            return 1;
        }
        return 2;
    }

    private static boolean isUserPosnType(int eItem) {
        return eItem != 1;
    }
}