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
|
/*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Path2D;
import java.awt.geom.PathIterator;
import java.awt.image.BufferedImage;
import java.awt.image.DataBufferInt;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Locale;
import java.util.Random;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Handler;
import java.util.logging.LogRecord;
import java.util.logging.Logger;
import javax.imageio.IIOImage;
import javax.imageio.ImageIO;
import javax.imageio.ImageWriteParam;
import javax.imageio.ImageWriter;
import javax.imageio.stream.ImageOutputStream;
/**
* @test
* @bug 8191814
* @summary Verifies that Marlin rendering generates the same
* images with and without clipping optimization with all possible
* stroke (cap/join) and/or dashes or fill modes (EO rules)
* for paths made of either 9 lines, 4 quads, 2 cubics (random)
* Note: Use the argument -slow to run more intensive tests (too much time)
*
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine ClipShapeTest -poly
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine ClipShapeTest -poly -doDash
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine ClipShapeTest -cubic
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine ClipShapeTest -cubic -doDash
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.DMarlinRenderingEngine ClipShapeTest -poly
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.DMarlinRenderingEngine ClipShapeTest -poly -doDash
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.DMarlinRenderingEngine ClipShapeTest -cubic
* @run main/othervm/timeout=300 -Dsun.java2d.renderer=sun.java2d.marlin.DMarlinRenderingEngine ClipShapeTest -cubic -doDash
*/
public final class ClipShapeTest {
static boolean TX_SCALE = false;
static boolean TX_SHEAR = false;
static final boolean TEST_STROKER = true;
static final boolean TEST_FILLER = true;
// complementary tests in slow mode:
static boolean USE_DASHES = false;
static boolean USE_VAR_STROKE = false;
static int NUM_TESTS = 5000;
static final int TESTW = 100;
static final int TESTH = 100;
// shape settings:
static ShapeMode SHAPE_MODE = ShapeMode.NINE_LINE_POLYS;
static int THRESHOLD_DELTA;
static long THRESHOLD_NBPIX;
static final boolean SHAPE_REPEAT = true;
// dump path on console:
static final boolean DUMP_SHAPE = true;
static final boolean SHOW_DETAILS = false; // disabled
static final boolean SHOW_OUTLINE = true;
static final boolean SHOW_POINTS = true;
static final boolean SHOW_INFO = false;
static final int MAX_SHOW_FRAMES = 10;
static final int MAX_SAVE_FRAMES = 100;
// use fixed seed to reproduce always same polygons between tests
static final boolean FIXED_SEED = false;
static final double RAND_SCALE = 3.0;
static final double RANDW = TESTW * RAND_SCALE;
static final double OFFW = (TESTW - RANDW) / 2.0;
static final double RANDH = TESTH * RAND_SCALE;
static final double OFFH = (TESTH - RANDH) / 2.0;
static enum ShapeMode {
TWO_CUBICS,
FOUR_QUADS,
FIVE_LINE_POLYS,
NINE_LINE_POLYS,
FIFTY_LINE_POLYS,
MIXED
}
static final long SEED = 1666133789L;
// Fixed seed to avoid any difference between runs:
static final Random RANDOM = new Random(SEED);
static final File OUTPUT_DIR = new File(".");
static final AtomicBoolean isMarlin = new AtomicBoolean();
static final AtomicBoolean isClipRuntime = new AtomicBoolean();
static {
Locale.setDefault(Locale.US);
// FIRST: Get Marlin runtime state from its log:
// initialize j.u.l Looger:
final Logger log = Logger.getLogger("sun.java2d.marlin");
log.addHandler(new Handler() {
@Override
public void publish(LogRecord record) {
final String msg = record.getMessage();
if (msg != null) {
// last space to avoid matching other settings:
if (msg.startsWith("sun.java2d.renderer ")) {
isMarlin.set(msg.contains("MarlinRenderingEngine"));
}
if (msg.startsWith("sun.java2d.renderer.clip.runtime.enable")) {
isClipRuntime.set(msg.contains("true"));
}
}
final Throwable th = record.getThrown();
// detect any Throwable:
if (th != null) {
System.out.println("Test failed:\n" + record.getMessage());
th.printStackTrace(System.out);
throw new RuntimeException("Test failed: ", th);
}
}
@Override
public void flush() {
}
@Override
public void close() throws SecurityException {
}
});
// enable Marlin logging & internal checks:
System.setProperty("sun.java2d.renderer.log", "true");
System.setProperty("sun.java2d.renderer.useLogger", "true");
// disable static clipping setting:
System.setProperty("sun.java2d.renderer.clip", "false");
System.setProperty("sun.java2d.renderer.clip.runtime.enable", "true");
// enable subdivider:
System.setProperty("sun.java2d.renderer.clip.subdivider", "true");
// disable min length check: always subdivide curves at clip edges
System.setProperty("sun.java2d.renderer.clip.subdivider.minLength", "-1");
// If any curve, increase curve accuracy:
// curve length max error:
System.setProperty("sun.java2d.renderer.curve_len_err", "1e-4");
// quad max error:
System.setProperty("sun.java2d.renderer.quad_dec_d2", "5e-4");
// cubic min/max error:
System.setProperty("sun.java2d.renderer.cubic_dec_d2", "1e-3");
System.setProperty("sun.java2d.renderer.cubic_inc_d1", "1e-4"); // or disabled ~ 1e-6
}
/**
* Test
* @param args
*/
public static void main(String[] args) {
boolean runSlowTests = false;
for (String arg : args) {
if ("-slow".equals(arg)) {
System.out.println("slow: enabled.");
runSlowTests = true;
} else if ("-doScale".equals(arg)) {
System.out.println("doScale: enabled.");
TX_SCALE = true;
} else if ("-doShear".equals(arg)) {
System.out.println("doShear: enabled.");
TX_SHEAR = true;
} else if ("-doDash".equals(arg)) {
System.out.println("doDash: enabled.");
USE_DASHES = true;
} else if ("-doVarStroke".equals(arg)) {
System.out.println("doVarStroke: enabled.");
USE_VAR_STROKE = true;
}
// shape mode:
else if (arg.equalsIgnoreCase("-poly")) {
SHAPE_MODE = ShapeMode.NINE_LINE_POLYS;
} else if (arg.equalsIgnoreCase("-bigpoly")) {
SHAPE_MODE = ShapeMode.FIFTY_LINE_POLYS;
} else if (arg.equalsIgnoreCase("-quad")) {
SHAPE_MODE = ShapeMode.FOUR_QUADS;
} else if (arg.equalsIgnoreCase("-cubic")) {
SHAPE_MODE = ShapeMode.TWO_CUBICS;
} else if (arg.equalsIgnoreCase("-mixed")) {
SHAPE_MODE = ShapeMode.MIXED;
}
}
System.out.println("Shape mode: " + SHAPE_MODE);
// adjust image comparison thresholds:
switch(SHAPE_MODE) {
case TWO_CUBICS:
// Define uncertainty for curves:
THRESHOLD_DELTA = 32; // / 256
THRESHOLD_NBPIX = 128; // / 10000
break;
case FOUR_QUADS:
case MIXED:
// Define uncertainty for quads:
// curve subdivision causes curves to be smaller
// then curve offsets are different (more accurate)
THRESHOLD_DELTA = 64; // 64 / 256
THRESHOLD_NBPIX = 256; // 256 / 10000
break;
default:
// Define uncertainty for lines:
// float variant have higher uncertainty
THRESHOLD_DELTA = 8;
THRESHOLD_NBPIX = 8;
}
System.out.println("THRESHOLD_DELTA: "+THRESHOLD_DELTA);
System.out.println("THRESHOLD_NBPIX: "+THRESHOLD_NBPIX);
if (runSlowTests) {
NUM_TESTS = 10000; // or 100000 (very slow)
USE_DASHES = true;
USE_VAR_STROKE = true;
}
System.out.println("ClipShapeTests: image = " + TESTW + " x " + TESTH);
int failures = 0;
final long start = System.nanoTime();
try {
// TODO: test affine transforms ?
if (TEST_STROKER) {
final float[][] dashArrays = (USE_DASHES) ?
// small
// new float[][]{new float[]{1f, 2f}}
// normal
new float[][]{new float[]{13f, 7f}}
// large (prime)
// new float[][]{new float[]{41f, 7f}}
// none
: new float[][]{null};
System.out.println("dashes: " + Arrays.deepToString(dashArrays));
final float[] strokeWidths = (USE_VAR_STROKE)
? new float[5] :
new float[]{10f};
int nsw = 0;
if (USE_VAR_STROKE) {
for (float width = 0.1f; width < 110f; width *= 5f) {
strokeWidths[nsw++] = width;
}
} else {
nsw = 1;
}
System.out.println("stroke widths: " + Arrays.toString(strokeWidths));
// Stroker tests:
for (int w = 0; w < nsw; w++) {
final float width = strokeWidths[w];
for (float[] dashes : dashArrays) {
for (int cap = 0; cap <= 2; cap++) {
for (int join = 0; join <= 2; join++) {
failures += paintPaths(new TestSetup(SHAPE_MODE, false, width, cap, join, dashes));
failures += paintPaths(new TestSetup(SHAPE_MODE, true, width, cap, join, dashes));
}
}
}
}
}
if (TEST_FILLER) {
// Filler tests:
failures += paintPaths(new TestSetup(SHAPE_MODE, false, Path2D.WIND_NON_ZERO));
failures += paintPaths(new TestSetup(SHAPE_MODE, true, Path2D.WIND_NON_ZERO));
failures += paintPaths(new TestSetup(SHAPE_MODE, false, Path2D.WIND_EVEN_ODD));
failures += paintPaths(new TestSetup(SHAPE_MODE, true, Path2D.WIND_EVEN_ODD));
}
} catch (IOException ioe) {
throw new RuntimeException(ioe);
}
System.out.println("main: duration= " + (1e-6 * (System.nanoTime() - start)) + " ms.");
if (!isMarlin.get()) {
throw new RuntimeException("Marlin renderer not used at runtime !");
}
if (!isClipRuntime.get()) {
throw new RuntimeException("Marlin clipping not enabled at runtime !");
}
if (failures != 0) {
throw new RuntimeException("Clip test failures : " + failures);
}
}
static int paintPaths(final TestSetup ts) throws IOException {
final long start = System.nanoTime();
if (FIXED_SEED) {
// Reset seed for random numbers:
RANDOM.setSeed(SEED);
}
System.out.println("paintPaths: " + NUM_TESTS
+ " paths (" + SHAPE_MODE + ") - setup: " + ts);
final boolean fill = !ts.isStroke();
final Path2D p2d = new Path2D.Double(ts.windingRule);
final BufferedImage imgOn = newImage(TESTW, TESTH);
final Graphics2D g2dOn = initialize(imgOn, ts);
final BufferedImage imgOff = newImage(TESTW, TESTH);
final Graphics2D g2dOff = initialize(imgOff, ts);
final BufferedImage imgDiff = newImage(TESTW, TESTH);
final DiffContext globalCtx = new DiffContext("All tests");
int nd = 0;
try {
final DiffContext testCtx = new DiffContext("Test");
BufferedImage diffImage;
for (int n = 0; n < NUM_TESTS; n++) {
genShape(p2d, ts);
// Runtime clip setting OFF:
paintShape(p2d, g2dOff, fill, false);
// Runtime clip setting ON:
paintShape(p2d, g2dOn, fill, true);
/* compute image difference if possible */
diffImage = computeDiffImage(testCtx, imgOn, imgOff, imgDiff, globalCtx);
final String testName = "Setup_" + ts.id + "_test_" + n;
if (diffImage != null) {
nd++;
final double ratio = (100.0 * testCtx.histPix.count) / testCtx.histAll.count;
System.out.println("Diff ratio: " + testName + " = " + trimTo3Digits(ratio) + " %");
if (nd < MAX_SHOW_FRAMES) {
if (SHOW_DETAILS) {
paintShapeDetails(g2dOff, p2d);
paintShapeDetails(g2dOn, p2d);
}
if (nd < MAX_SAVE_FRAMES) {
if (DUMP_SHAPE) {
dumpShape(p2d);
}
saveImage(imgOff, OUTPUT_DIR, testName + "-off.png");
saveImage(imgOn, OUTPUT_DIR, testName + "-on.png");
saveImage(diffImage, OUTPUT_DIR, testName + "-diff.png");
}
}
}
}
} finally {
g2dOff.dispose();
g2dOn.dispose();
if (nd != 0) {
System.out.println("paintPaths: " + NUM_TESTS + " paths - "
+ "Number of differences = " + nd
+ " ratio = " + (100f * nd) / NUM_TESTS + " %");
}
globalCtx.dump();
}
System.out.println("paintPaths: duration= " + (1e-6 * (System.nanoTime() - start)) + " ms.");
return nd;
}
private static void paintShape(final Path2D p2d, final Graphics2D g2d,
final boolean fill, final boolean clip) {
reset(g2d);
setClip(g2d, clip);
if (fill) {
g2d.fill(p2d);
} else {
g2d.draw(p2d);
}
}
private static Graphics2D initialize(final BufferedImage img,
final TestSetup ts) {
final Graphics2D g2d = (Graphics2D) img.getGraphics();
g2d.setRenderingHint(RenderingHints.KEY_RENDERING,
RenderingHints.VALUE_RENDER_QUALITY);
g2d.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL,
RenderingHints.VALUE_STROKE_PURE);
if (ts.isStroke()) {
g2d.setStroke(createStroke(ts));
}
g2d.setColor(Color.GRAY);
// Test scale
if (TX_SCALE) {
g2d.scale(1.2, 1.2);
}
// Test shear
if (TX_SHEAR) {
g2d.shear(0.1, 0.2);
}
return g2d;
}
private static void reset(final Graphics2D g2d) {
// Disable antialiasing:
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_OFF);
g2d.setBackground(Color.WHITE);
g2d.clearRect(0, 0, TESTW, TESTH);
}
private static void setClip(final Graphics2D g2d, final boolean clip) {
// Enable antialiasing:
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
// Enable or Disable clipping:
System.setProperty("sun.java2d.renderer.clip.runtime", (clip) ? "true" : "false");
}
static void genShape(final Path2D p2d, final TestSetup ts) {
p2d.reset();
final int end = (SHAPE_REPEAT) ? 2 : 1;
for (int p = 0; p < end; p++) {
p2d.moveTo(randX(), randY());
switch (ts.shapeMode) {
case MIXED:
case FIFTY_LINE_POLYS:
case NINE_LINE_POLYS:
case FIVE_LINE_POLYS:
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
if (ts.shapeMode == ShapeMode.FIVE_LINE_POLYS) {
// And an implicit close makes 5 lines
break;
}
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
p2d.lineTo(randX(), randY());
if (ts.shapeMode == ShapeMode.NINE_LINE_POLYS) {
// And an implicit close makes 9 lines
break;
}
if (ts.shapeMode == ShapeMode.FIFTY_LINE_POLYS) {
for (int i = 0; i < 41; i++) {
p2d.lineTo(randX(), randY());
}
// And an implicit close makes 50 lines
break;
}
case TWO_CUBICS:
p2d.curveTo(randX(), randY(), randX(), randY(), randX(), randY());
p2d.curveTo(randX(), randY(), randX(), randY(), randX(), randY());
if (ts.shapeMode == ShapeMode.TWO_CUBICS) {
break;
}
case FOUR_QUADS:
p2d.quadTo(randX(), randY(), randX(), randY());
p2d.quadTo(randX(), randY(), randX(), randY());
p2d.quadTo(randX(), randY(), randX(), randY());
p2d.quadTo(randX(), randY(), randX(), randY());
if (ts.shapeMode == ShapeMode.FOUR_QUADS) {
break;
}
default:
}
if (ts.closed) {
p2d.closePath();
}
}
}
static final float POINT_RADIUS = 2f;
static final float LINE_WIDTH = 1f;
static final Stroke OUTLINE_STROKE = new BasicStroke(LINE_WIDTH);
static final int COLOR_ALPHA = 128;
static final Color COLOR_MOVETO = new Color(255, 0, 0, COLOR_ALPHA);
static final Color COLOR_LINETO_ODD = new Color(0, 0, 255, COLOR_ALPHA);
static final Color COLOR_LINETO_EVEN = new Color(0, 255, 0, COLOR_ALPHA);
static final Ellipse2D.Float ELL_POINT = new Ellipse2D.Float();
private static void paintShapeDetails(final Graphics2D g2d, final Shape shape) {
final Stroke oldStroke = g2d.getStroke();
final Color oldColor = g2d.getColor();
setClip(g2d, false);
if (SHOW_OUTLINE) {
g2d.setStroke(OUTLINE_STROKE);
g2d.setColor(COLOR_LINETO_ODD);
g2d.draw(shape);
}
final float[] coords = new float[6];
float px, py;
int nMove = 0;
int nLine = 0;
int n = 0;
for (final PathIterator it = shape.getPathIterator(null); !it.isDone(); it.next()) {
int type = it.currentSegment(coords);
switch (type) {
case PathIterator.SEG_MOVETO:
if (SHOW_POINTS) {
g2d.setColor(COLOR_MOVETO);
}
break;
case PathIterator.SEG_LINETO:
case PathIterator.SEG_QUADTO:
case PathIterator.SEG_CUBICTO:
if (SHOW_POINTS) {
g2d.setColor((nLine % 2 == 0) ? COLOR_LINETO_ODD : COLOR_LINETO_EVEN);
}
nLine++;
break;
case PathIterator.SEG_CLOSE:
continue;
default:
System.out.println("unsupported segment type= " + type);
continue;
}
px = coords[0];
py = coords[1];
if (SHOW_INFO) {
System.out.println("point[" + (n++) + "|seg=" + type + "]: " + px + " " + py);
}
if (SHOW_POINTS) {
ELL_POINT.setFrame(px - POINT_RADIUS, py - POINT_RADIUS,
POINT_RADIUS * 2f, POINT_RADIUS * 2f);
g2d.fill(ELL_POINT);
}
}
if (SHOW_INFO) {
System.out.println("Path moveTo=" + nMove + ", lineTo=" + nLine);
System.out.println("--------------------------------------------------");
}
g2d.setStroke(oldStroke);
g2d.setColor(oldColor);
}
private static void dumpShape(final Shape shape) {
final float[] coords = new float[6];
for (final PathIterator it = shape.getPathIterator(null); !it.isDone(); it.next()) {
final int type = it.currentSegment(coords);
switch (type) {
case PathIterator.SEG_MOVETO:
System.out.println("p2d.moveTo(" + coords[0] + ", " + coords[1] + ");");
break;
case PathIterator.SEG_LINETO:
System.out.println("p2d.lineTo(" + coords[0] + ", " + coords[1] + ");");
break;
case PathIterator.SEG_QUADTO:
System.out.println("p2d.quadTo(" + coords[0] + ", " + coords[1] + ", " + coords[2] + ", " + coords[3] + ");");
break;
case PathIterator.SEG_CUBICTO:
System.out.println("p2d.curveTo(" + coords[0] + ", " + coords[1] + ", " + coords[2] + ", " + coords[3] + ", " + coords[4] + ", " + coords[5] + ");");
break;
case PathIterator.SEG_CLOSE:
System.out.println("p2d.closePath();");
break;
default:
System.out.println("// Unsupported segment type= " + type);
}
}
System.out.println("--------------------------------------------------");
}
static double randX() {
return RANDOM.nextDouble() * RANDW + OFFW;
}
static double randY() {
return RANDOM.nextDouble() * RANDH + OFFH;
}
private static BasicStroke createStroke(final TestSetup ts) {
return new BasicStroke(ts.strokeWidth, ts.strokeCap, ts.strokeJoin, 10.0f, ts.dashes, 0.0f);
}
private final static class TestSetup {
static final AtomicInteger COUNT = new AtomicInteger();
final int id;
final ShapeMode shapeMode;
final boolean closed;
// stroke
final float strokeWidth;
final int strokeCap;
final int strokeJoin;
final float[] dashes;
// fill
final int windingRule;
TestSetup(ShapeMode shapeMode, final boolean closed,
final float strokeWidth, final int strokeCap, final int strokeJoin, final float[] dashes) {
this.id = COUNT.incrementAndGet();
this.shapeMode = shapeMode;
this.closed = closed;
this.strokeWidth = strokeWidth;
this.strokeCap = strokeCap;
this.strokeJoin = strokeJoin;
this.dashes = dashes;
this.windingRule = Path2D.WIND_NON_ZERO;
}
TestSetup(ShapeMode shapeMode, final boolean closed, final int windingRule) {
this.id = COUNT.incrementAndGet();
this.shapeMode = shapeMode;
this.closed = closed;
this.strokeWidth = 0f;
this.strokeCap = this.strokeJoin = -1; // invalid
this.dashes = null;
this.windingRule = windingRule;
}
boolean isStroke() {
return this.strokeWidth > 0f;
}
@Override
public String toString() {
if (isStroke()) {
return "TestSetup{id=" + id + ", shapeMode=" + shapeMode + ", closed=" + closed
+ ", strokeWidth=" + strokeWidth + ", strokeCap=" + getCap(strokeCap) + ", strokeJoin=" + getJoin(strokeJoin)
+ ((dashes != null) ? ", dashes: " + Arrays.toString(dashes) : "")
+ '}';
}
return "TestSetup{id=" + id + ", shapeMode=" + shapeMode + ", closed=" + closed
+ ", fill"
+ ", windingRule=" + getWindingRule(windingRule) + '}';
}
private static String getCap(final int cap) {
switch (cap) {
case BasicStroke.CAP_BUTT:
return "CAP_BUTT";
case BasicStroke.CAP_ROUND:
return "CAP_ROUND";
case BasicStroke.CAP_SQUARE:
return "CAP_SQUARE";
default:
return "";
}
}
private static String getJoin(final int join) {
switch (join) {
case BasicStroke.JOIN_MITER:
return "JOIN_MITER";
case BasicStroke.JOIN_ROUND:
return "JOIN_ROUND";
case BasicStroke.JOIN_BEVEL:
return "JOIN_BEVEL";
default:
return "";
}
}
private static String getWindingRule(final int rule) {
switch (rule) {
case PathIterator.WIND_EVEN_ODD:
return "WIND_EVEN_ODD";
case PathIterator.WIND_NON_ZERO:
return "WIND_NON_ZERO";
default:
return "";
}
}
}
// --- utilities ---
private static final int DCM_ALPHA_MASK = 0xff000000;
public static BufferedImage newImage(final int w, final int h) {
return new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB_PRE);
}
public static BufferedImage computeDiffImage(final DiffContext localCtx,
final BufferedImage tstImage,
final BufferedImage refImage,
final BufferedImage diffImage,
final DiffContext globalCtx) {
final int[] aRefPix = ((DataBufferInt) refImage.getRaster().getDataBuffer()).getData();
final int[] aTstPix = ((DataBufferInt) tstImage.getRaster().getDataBuffer()).getData();
final int[] aDifPix = ((DataBufferInt) diffImage.getRaster().getDataBuffer()).getData();
// reset local diff context:
localCtx.reset();
int ref, tst, dg, v;
for (int i = 0, len = aRefPix.length; i < len; i++) {
ref = aRefPix[i];
tst = aTstPix[i];
// grayscale diff:
dg = (r(ref) + g(ref) + b(ref)) - (r(tst) + g(tst) + b(tst));
// max difference on grayscale values:
v = (int) Math.ceil(Math.abs(dg / 3.0));
// TODO: count warnings
if (v <= THRESHOLD_DELTA) {
aDifPix[i] = 0;
} else {
aDifPix[i] = toInt(v, v, v);
localCtx.add(v);
}
globalCtx.add(v);
}
if (!localCtx.isDiff() || (localCtx.histPix.count <= THRESHOLD_NBPIX)) {
return null;
}
localCtx.dump();
return diffImage;
}
static void saveImage(final BufferedImage image, final File resDirectory, final String imageFileName) throws IOException {
final Iterator<ImageWriter> itWriters = ImageIO.getImageWritersByFormatName("PNG");
if (itWriters.hasNext()) {
final ImageWriter writer = itWriters.next();
final ImageWriteParam writerParams = writer.getDefaultWriteParam();
writerParams.setProgressiveMode(ImageWriteParam.MODE_DISABLED);
final File imgFile = new File(resDirectory, imageFileName);
if (!imgFile.exists() || imgFile.canWrite()) {
System.out.println("saveImage: saving image as PNG [" + imgFile + "]...");
imgFile.delete();
// disable cache in temporary files:
ImageIO.setUseCache(false);
final long start = System.nanoTime();
// PNG uses already buffering:
final ImageOutputStream imgOutStream = ImageIO.createImageOutputStream(new FileOutputStream(imgFile));
writer.setOutput(imgOutStream);
try {
writer.write(null, new IIOImage(image, null, null), writerParams);
} finally {
imgOutStream.close();
final long time = System.nanoTime() - start;
System.out.println("saveImage: duration= " + (time / 1000000l) + " ms.");
}
}
}
}
static int r(final int v) {
return (v >> 16 & 0xff);
}
static int g(final int v) {
return (v >> 8 & 0xff);
}
static int b(final int v) {
return (v & 0xff);
}
static int clamp127(final int v) {
return (v < 128) ? (v > -127 ? (v + 127) : 0) : 255;
}
static int toInt(final int r, final int g, final int b) {
return DCM_ALPHA_MASK | (r << 16) | (g << 8) | b;
}
/* stats */
static class StatInteger {
public final String name;
public long count = 0l;
public long sum = 0l;
public long min = Integer.MAX_VALUE;
public long max = Integer.MIN_VALUE;
StatInteger(String name) {
this.name = name;
}
void reset() {
count = 0l;
sum = 0l;
min = Integer.MAX_VALUE;
max = Integer.MIN_VALUE;
}
void add(int val) {
count++;
sum += val;
if (val < min) {
min = val;
}
if (val > max) {
max = val;
}
}
void add(long val) {
count++;
sum += val;
if (val < min) {
min = val;
}
if (val > max) {
max = val;
}
}
public final double average() {
return ((double) sum) / count;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder(128);
toString(sb);
return sb.toString();
}
public final StringBuilder toString(final StringBuilder sb) {
sb.append(name).append("[n: ").append(count);
sb.append("] sum: ").append(sum).append(" avg: ").append(trimTo3Digits(average()));
sb.append(" [").append(min).append(" | ").append(max).append("]");
return sb;
}
}
final static class Histogram extends StatInteger {
static final int BUCKET = 2;
static final int MAX = 20;
static final int LAST = MAX - 1;
static final int[] STEPS = new int[MAX];
static {
STEPS[0] = 0;
STEPS[1] = 1;
for (int i = 2; i < MAX; i++) {
STEPS[i] = STEPS[i - 1] * BUCKET;
}
// System.out.println("Histogram.STEPS = " + Arrays.toString(STEPS));
}
static int bucket(int val) {
for (int i = 1; i < MAX; i++) {
if (val < STEPS[i]) {
return i - 1;
}
}
return LAST;
}
private final StatInteger[] stats = new StatInteger[MAX];
public Histogram(String name) {
super(name);
for (int i = 0; i < MAX; i++) {
stats[i] = new StatInteger(String.format("%5s .. %5s", STEPS[i], ((i + 1 < MAX) ? STEPS[i + 1] : "~")));
}
}
@Override
final void reset() {
super.reset();
for (int i = 0; i < MAX; i++) {
stats[i].reset();
}
}
@Override
final void add(int val) {
super.add(val);
stats[bucket(val)].add(val);
}
@Override
final void add(long val) {
add((int) val);
}
@Override
public final String toString() {
final StringBuilder sb = new StringBuilder(2048);
super.toString(sb).append(" { ");
for (int i = 0; i < MAX; i++) {
if (stats[i].count != 0l) {
sb.append("\n ").append(stats[i].toString());
}
}
return sb.append(" }").toString();
}
}
/**
* Adjust the given double value to keep only 3 decimal digits
* @param value value to adjust
* @return double value with only 3 decimal digits
*/
static double trimTo3Digits(final double value) {
return ((long) (1e3d * value)) / 1e3d;
}
static final class DiffContext {
public final Histogram histAll;
public final Histogram histPix;
DiffContext(String name) {
histAll = new Histogram("All Pixels [" + name + "]");
histPix = new Histogram("Diff Pixels [" + name + "]");
}
void reset() {
histAll.reset();
histPix.reset();
}
void dump() {
if (isDiff()) {
System.out.println("Differences [" + histAll.name + "]:");
System.out.println("Total [all pixels]:\n" + histAll.toString());
System.out.println("Total [different pixels]:\n" + histPix.toString());
} else {
System.out.println("No difference for [" + histAll.name + "].");
}
}
void add(int val) {
histAll.add(val);
if (val != 0) {
histPix.add(val);
}
}
boolean isDiff() {
return histAll.sum != 0l;
}
}
}
|