Skip to content

Commit af83d6a

Browse files
committedJun 12, 2020
Merge
2 parents 1faed20 + 241f401 commit af83d6a

File tree

9 files changed

+434
-150
lines changed

9 files changed

+434
-150
lines changed
 

‎src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ void MacroAssembler::verify_oop(Register reg, const char* s) {
13301330
stp(rscratch2, lr, Address(pre(sp, -2 * wordSize)));
13311331

13321332
mov(r0, reg);
1333-
mov(rscratch1, (address)b);
1333+
movptr(rscratch1, (uintptr_t)(address)b);
13341334

13351335
// call indirectly to solve generation ordering problem
13361336
lea(rscratch2, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
@@ -1366,7 +1366,7 @@ void MacroAssembler::verify_oop_addr(Address addr, const char* s) {
13661366
} else {
13671367
ldr(r0, addr);
13681368
}
1369-
mov(rscratch1, (address)b);
1369+
movptr(rscratch1, (uintptr_t)(address)b);
13701370

13711371
// call indirectly to solve generation ordering problem
13721372
lea(rscratch2, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));

‎src/hotspot/share/opto/output.cpp

+11-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "code/debugInfoRec.hpp"
3131
#include "compiler/compileBroker.hpp"
3232
#include "compiler/compilerDirectives.hpp"
33+
#include "compiler/disassembler.hpp"
3334
#include "compiler/oopMap.hpp"
3435
#include "gc/shared/barrierSet.hpp"
3536
#include "gc/shared/c2/barrierSetC2.hpp"
@@ -1614,8 +1615,17 @@ void PhaseOutput::fill_buffer(CodeBuffer* cb, uint* blk_starts) {
16141615
}
16151616

16161617
#ifdef ASSERT
1617-
if (n->size(C->regalloc()) < (current_offset-instr_offset)) {
1618+
uint n_size = n->size(C->regalloc());
1619+
if (n_size < (current_offset-instr_offset)) {
1620+
MachNode* mach = n->as_Mach();
16181621
n->dump();
1622+
mach->dump_format(C->regalloc(), tty);
1623+
tty->print_cr(" n_size (%d), current_offset (%d), instr_offset (%d)", n_size, current_offset, instr_offset);
1624+
Disassembler::decode(cb->insts_begin() + instr_offset, cb->insts_begin() + current_offset + 1, tty);
1625+
tty->print_cr(" ------------------- ");
1626+
BufferBlob* blob = this->scratch_buffer_blob();
1627+
address blob_begin = blob->content_begin();
1628+
Disassembler::decode(blob_begin, blob_begin + n_size + 1, tty);
16191629
assert(false, "wrong size of mach node");
16201630
}
16211631
#endif

‎src/java.desktop/windows/native/libawt/java2d/windows/GDIBlitLoops.cpp

+64-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,68 @@ typedef struct tagBitmapheader {
4141
} colors;
4242
} BmiType;
4343

44+
/*
45+
* Some GDI functions functions will fail if they operate on memory which spans
46+
* virtual allocations as used by modern garbage collectors (ie ZGC).
47+
* So if the call to SetDIBitsToDevice fails, we will re-try it on malloced
48+
* memory rather than the pinned Java heap memory.
49+
* Once Microsoft fix the GDI bug, the small performance penalty of this retry
50+
* will be gone.
51+
*/
52+
static void retryingSetDIBitsToDevice(
53+
HDC hdc,
54+
int xDest,
55+
int yDest,
56+
DWORD w,
57+
DWORD h,
58+
int xSrc,
59+
int ySrc,
60+
UINT StartScan,
61+
UINT cLines,
62+
const VOID *lpvBits,
63+
BITMAPINFO *lpbmi,
64+
UINT ColorUse) {
65+
66+
#ifdef DEBUG_PERF
67+
LARGE_INTEGER ts1, ts2;
68+
QueryPerformanceCounter(&ts1);
69+
#endif
70+
71+
int ret =
72+
SetDIBitsToDevice(hdc, xDest, yDest, w, h,
73+
xSrc, ySrc, StartScan, cLines, lpvBits,
74+
lpbmi, ColorUse);
75+
76+
if (ret != 0 || h == 0) {
77+
#ifdef DEBUG_PERF
78+
QueryPerformanceCounter(&ts2);
79+
printf("success time: %zd\n", (ts2.QuadPart-ts1.QuadPart));
80+
#endif
81+
return;
82+
}
83+
84+
size_t size = lpbmi->bmiHeader.biSizeImage;
85+
void* imageData = NULL;
86+
try {
87+
imageData = safe_Malloc(size);
88+
} catch (std::bad_alloc&) {
89+
}
90+
if (imageData == NULL) {
91+
return;
92+
}
93+
memcpy(imageData, lpvBits, size); // this is the most expensive part.
94+
SetDIBitsToDevice(hdc, xDest, yDest, w, h,
95+
xSrc, ySrc, StartScan, cLines, imageData,
96+
lpbmi, ColorUse);
97+
free(imageData);
98+
99+
#ifdef DEBUG_PERF
100+
QueryPerformanceCounter(&ts2);
101+
printf("with retry time: %zd\n", (ts2.QuadPart-ts1.QuadPart));
102+
#endif
103+
104+
};
105+
44106
/*
45107
* Class: sun_java2d_windows_GDIBlitLoops
46108
* Method: nativeBlit
@@ -127,7 +189,6 @@ Java_sun_java2d_windows_GDIBlitLoops_nativeBlit
127189
// then we can do the work much faster. This is due to a constraint
128190
// in the way DIBs are structured and parsed by GDI
129191
jboolean fastBlt = ((srcInfo.scanStride & 0x03) == 0);
130-
131192
bmi.bmiHeader.biSize = sizeof(bmi.bmiHeader);
132193
bmi.bmiHeader.biWidth = srcInfo.scanStride/srcInfo.pixelStride;
133194
// fastBlt copies whole image in one call; else copy line-by-line
@@ -190,15 +251,15 @@ Java_sun_java2d_windows_GDIBlitLoops_nativeBlit
190251
// Could also call StretchDIBits. Testing showed slight
191252
// performance advantage of SetDIBits instead, so since we
192253
// have no need of scaling, might as well use SetDIBits.
193-
SetDIBitsToDevice(hDC, dstx, dsty, width, height,
254+
retryingSetDIBitsToDevice(hDC, dstx, dsty, width, height,
194255
0, 0, 0, height, rasBase,
195256
(BITMAPINFO*)&bmi, DIB_RGB_COLORS);
196257
}
197258
} else {
198259
// Source scanlines not DWORD-aligned - copy each scanline individually
199260
for (int i = 0; i < height; i += 1) {
200261
if (::IsWindowVisible(dstOps->window)) {
201-
SetDIBitsToDevice(hDC, dstx, dsty+i, width, 1,
262+
retryingSetDIBitsToDevice(hDC, dstx, dsty+i, width, 1,
202263
0, 0, 0, 1, rasBase,
203264
(BITMAPINFO*)&bmi, DIB_RGB_COLORS);
204265
rasBase = (void*)((char*)rasBase + srcInfo.scanStride);

‎src/java.desktop/windows/native/libawt/windows/awt_Cursor.cpp

+8-10
Original file line numberDiff line numberDiff line change
@@ -373,23 +373,21 @@ Java_sun_awt_windows_WCustomCursor_createCursorIndirect(
373373

374374
int *cols = SAFE_SIZE_NEW_ARRAY2(int, nW, nH);
375375

376-
jint *intRasterDataPtr = NULL;
376+
/* Copy the raster data because GDI may fail on some Java heap
377+
* allocated memory.
378+
*/
379+
length = env->GetArrayLength(intRasterData);
380+
jint *intRasterDataPtr = new jint[length];
377381
HBITMAP hColor = NULL;
378382
try {
379-
intRasterDataPtr =
380-
(jint *)env->GetPrimitiveArrayCritical(intRasterData, 0);
383+
env->GetIntArrayRegion(intRasterData, 0, length, intRasterDataPtr);
381384
hColor = create_BMP(NULL, (int *)intRasterDataPtr, nSS, nW, nH);
382385
memcpy(cols, intRasterDataPtr, nW*nH*sizeof(int));
383386
} catch (...) {
384-
if (intRasterDataPtr != NULL) {
385-
env->ReleasePrimitiveArrayCritical(intRasterData,
386-
intRasterDataPtr, 0);
387-
}
387+
delete[] intRasterDataPtr;
388388
throw;
389389
}
390-
391-
env->ReleasePrimitiveArrayCritical(intRasterData, intRasterDataPtr, 0);
392-
intRasterDataPtr = NULL;
390+
delete[] intRasterDataPtr;
393391

394392
HCURSOR hCursor = NULL;
395393

‎src/java.desktop/windows/native/libawt/windows/awt_PrintJob.cpp

+41-112
Original file line numberDiff line numberDiff line change
@@ -1739,11 +1739,18 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WEmbeddedFrame_printBand
17391739
// ::PatBlt(hDC, destX+1, destY+1, destWidth-2, destHeight-2, PATCOPY);
17401740
// ::SelectObject(hDC, oldBrush);
17411741

1742+
/* This code is rarely used now. It used to be invoked by Java plugin browser
1743+
* printing. Today embedded frames are used only when a toolkit such as SWT
1744+
* needs to embed
1745+
*/
17421746
TRY;
17431747
jbyte *image = NULL;
17441748
try {
1745-
image = (jbyte *)env->GetPrimitiveArrayCritical(imageArray, 0);
1749+
int length = env->GetArrayLength(imageArray);
1750+
image = new jbyte[length];
17461751
CHECK_NULL(image);
1752+
env->GetByteArrayRegion(imageArray, 0, length, image);
1753+
17471754
struct {
17481755
BITMAPINFOHEADER bmiHeader;
17491756
DWORD* bmiColors;
@@ -1777,13 +1784,11 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WEmbeddedFrame_printBand
17771784
fclose(file);
17781785
#endif //DEBUG_PRINTING
17791786
} catch (...) {
1780-
if (image != NULL) {
1781-
env->ReleasePrimitiveArrayCritical(imageArray, image, 0);
1782-
}
1787+
delete[] image;
17831788
throw;
17841789
}
17851790

1786-
env->ReleasePrimitiveArrayCritical(imageArray, image, 0);
1791+
delete[] image;
17871792

17881793
CATCH_BAD_ALLOC;
17891794
}
@@ -2803,100 +2808,6 @@ static jbyte* reverseDIB(jbyte* imageBits, long srcWidth, long srcHeight,
28032808
return NULL;
28042809
}
28052810

2806-
#if 0
2807-
2808-
/*
2809-
* Class: sun_awt_windows_WPrinterJob
2810-
* Method: drawImageIntRGB
2811-
* Signature: (J[IFFFFFFFFII)V
2812-
*/
2813-
JNIEXPORT void JNICALL Java_sun_awt_windows_WPrinterJob_drawImageIntRGB
2814-
(JNIEnv *env, jobject self,
2815-
jlong printDC, jintArray image,
2816-
jfloat destX, jfloat destY,
2817-
jfloat destWidth, jfloat destHeight,
2818-
jfloat srcX, jfloat srcY,
2819-
jfloat srcWidth, jfloat srcHeight,
2820-
jint srcBitMapWidth, jint srcBitMapHeight) {
2821-
2822-
int result = 0;
2823-
2824-
assert(printDC != NULL);
2825-
assert(image != NULL);
2826-
assert(srcX >= 0);
2827-
assert(srcY >= 0);
2828-
assert(srcWidth > 0);
2829-
assert(srcHeight > 0);
2830-
assert(srcBitMapWidth > 0);
2831-
assert(srcBitMapHeight > 0);
2832-
2833-
2834-
static int alphaMask = 0xff000000;
2835-
static int redMask = 0x00ff0000;
2836-
static int greenMask = 0x0000ff00;
2837-
static int blueMask = 0x000000ff;
2838-
2839-
struct {
2840-
BITMAPV4HEADER header;
2841-
DWORD masks[256];
2842-
} dib;
2843-
2844-
2845-
2846-
memset(&dib,0,sizeof(dib));
2847-
dib.header.bV4Size = sizeof(dib.header);
2848-
dib.header.bV4Width = srcBitMapWidth;
2849-
dib.header.bV4Height = -srcBitMapHeight; // Top down DIB
2850-
dib.header.bV4Planes = 1;
2851-
dib.header.bV4BitCount = 32;
2852-
dib.header.bV4V4Compression = BI_BITFIELDS;
2853-
dib.header.bV4SizeImage = 0; // It's the default size.
2854-
dib.header.bV4XPelsPerMeter = 0;
2855-
dib.header.bV4YPelsPerMeter = 0;
2856-
dib.header.bV4ClrUsed = 0;
2857-
dib.header.bV4ClrImportant = 0;
2858-
dib.header.bV4RedMask = redMask;
2859-
dib.header.bV4GreenMask = greenMask;
2860-
dib.header.bV4BlueMask = blueMask;
2861-
dib.header.bV4AlphaMask = alphaMask;
2862-
dib.masks[0] = redMask;
2863-
dib.masks[1] = greenMask;
2864-
dib.masks[2] = blueMask;
2865-
dib.masks[3] = alphaMask;
2866-
2867-
jint *imageBits = NULL;
2868-
2869-
try {
2870-
imageBits = (jint *)env->GetPrimitiveArrayCritical(image, 0);
2871-
2872-
if (printDC){
2873-
result = ::StretchDIBits( (HDC)printDC,
2874-
ROUND_TO_LONG(destX),
2875-
ROUND_TO_LONG(destY),
2876-
ROUND_TO_LONG(destWidth),
2877-
ROUND_TO_LONG(destHeight),
2878-
ROUND_TO_LONG(srcX),
2879-
ROUND_TO_LONG(srcY),
2880-
ROUND_TO_LONG(srcWidth),
2881-
ROUND_TO_LONG(srcHeight),
2882-
imageBits,
2883-
(BITMAPINFO *)&dib,
2884-
DIB_RGB_COLORS,
2885-
SRCCOPY);
2886-
2887-
}
2888-
} catch (...) {
2889-
if (imageBits != NULL) {
2890-
env->ReleasePrimitiveArrayCritical(image, imageBits, 0);
2891-
}
2892-
throw;
2893-
}
2894-
2895-
env->ReleasePrimitiveArrayCritical(image, imageBits, 0);
2896-
2897-
}
2898-
#else
2899-
29002811
/*
29012812
* Class: sun_awt_windows_WPrinterJob
29022813
* Method: drawDIBImage
@@ -2991,7 +2902,6 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WPrinterJob_drawDIBImage
29912902
env->ReleasePrimitiveArrayCritical(image, imageBits, 0);
29922903

29932904
}
2994-
#endif
29952905

29962906
/*
29972907
* An utility function to print passed image byte array to
@@ -3059,7 +2969,7 @@ static void doPrintBand(JNIEnv *env, jboolean browserPrinting,
30592969
CATCH_BAD_ALLOC;
30602970

30612971
}
3062-
static FILE* outfile = NULL;
2972+
30632973
static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
30642974
long width, long height) {
30652975
int result = 0;
@@ -3072,6 +2982,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
30722982
/* height could be negative to indicate that this is a top-down DIB */
30732983
// assert(height > 0);
30742984

2985+
if (!printDC || height == 0) {
2986+
return result;
2987+
}
30752988
struct {
30762989
BITMAPINFOHEADER bmiHeader;
30772990
DWORD* bmiColors;
@@ -3099,11 +3012,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
30993012
if (bitMapHeader.bmiHeader.biHeight < 0) {
31003013
jbyte *dibImage = reverseDIB(image, width, height, 24);
31013014
if (dibImage != NULL) {
3102-
bitMapHeader.bmiHeader.biWidth = ROUND_TO_LONG(width);
3103-
bitMapHeader.bmiHeader.biHeight = ROUND_TO_LONG(height);
3104-
3105-
if (printDC){
3106-
result = ::SetDIBitsToDevice(printDC,
3015+
bitMapHeader.bmiHeader.biWidth = ROUND_TO_LONG(width);
3016+
bitMapHeader.bmiHeader.biHeight = ROUND_TO_LONG(height);
3017+
result = ::SetDIBitsToDevice(printDC,
31073018
ROUND_TO_LONG(destX), // left of dest rect
31083019
ROUND_TO_LONG(destY), // top of dest rect
31093020
ROUND_TO_LONG(width), // width of dest rect
@@ -3115,12 +3026,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
31153026
dibImage, // points to the DIB
31163027
(BITMAPINFO *)&bitMapHeader,
31173028
DIB_RGB_COLORS);
3118-
}
3119-
3120-
free (dibImage);
3029+
free (dibImage);
31213030
}
31223031
} else {
3123-
if (printDC){
31243032
result = ::SetDIBitsToDevice(printDC,
31253033
destX, // left of dest rect
31263034
destY, // top of dest rect
@@ -3133,9 +3041,30 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
31333041
image, // points to the DIB
31343042
(BITMAPINFO *)&bitMapHeader,
31353043
DIB_RGB_COLORS);
3136-
}
3044+
if (result == 0) {
3045+
size_t size = width * height * 3; // Always 24bpp, also DWORD aligned.
3046+
void *imageData = NULL;
3047+
try {
3048+
imageData = safe_Malloc(size);
3049+
} catch (std::bad_alloc&) {
3050+
return result;
3051+
}
3052+
memcpy(imageData, image, size);
3053+
result = ::SetDIBitsToDevice(printDC,
3054+
destX, // left of dest rect
3055+
destY, // top of dest rect
3056+
width, // width of dest rect
3057+
height, // height of dest rect
3058+
0, // left of source rect
3059+
0, // top of source rect
3060+
0, // line number of 1st source scan line
3061+
height, // number of source scan lines
3062+
imageData, // points to the DIB
3063+
(BITMAPINFO *)&bitMapHeader,
3064+
DIB_RGB_COLORS);
3065+
free(imageData);
3066+
}
31373067
}
3138-
31393068
return result;
31403069
}
31413070

‎src/java.desktop/windows/native/libawt/windows/awt_TrayIcon.cpp

+8-12
Original file line numberDiff line numberDiff line change
@@ -1001,25 +1001,21 @@ Java_sun_awt_windows_WTrayIconPeer_setNativeIcon(JNIEnv *env, jobject self,
10011001

10021002
delete[] andMaskPtr;
10031003

1004-
jint *intRasterDataPtr = NULL;
1004+
/* Copy the raster data because GDI may fail on some Java heap
1005+
* allocated memory.
1006+
*/
1007+
length = env->GetArrayLength(intRasterData);
1008+
jint *intRasterDataPtr = new jint[length];
10051009
HBITMAP hColor = NULL;
10061010
try {
1007-
intRasterDataPtr = (jint *)env->GetPrimitiveArrayCritical(intRasterData, 0);
1008-
if (intRasterDataPtr == NULL) {
1009-
::DeleteObject(hMask);
1010-
return;
1011-
}
1011+
env->GetIntArrayRegion(intRasterData, 0, length, intRasterDataPtr);
10121012
hColor = AwtTrayIcon::CreateBMP(NULL, (int *)intRasterDataPtr, nSS, nW, nH);
10131013
} catch (...) {
1014-
if (intRasterDataPtr != NULL) {
1015-
env->ReleasePrimitiveArrayCritical(intRasterData, intRasterDataPtr, 0);
1016-
}
1014+
delete[] intRasterDataPtr;
10171015
::DeleteObject(hMask);
10181016
throw;
10191017
}
1020-
1021-
env->ReleasePrimitiveArrayCritical(intRasterData, intRasterDataPtr, 0);
1022-
intRasterDataPtr = NULL;
1018+
delete[] intRasterDataPtr;
10231019

10241020
HICON hIcon = NULL;
10251021

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8240654
27+
* @summary Test painting a large window works
28+
* @key headful
29+
* @requires (os.family == "windows")
30+
* @requires vm.gc.Z
31+
* @run main/othervm -Dsun.java2d.uiScale=1 LargeWindowPaintTest
32+
* @run main/othervm -Dsun.java2d.uiScale=1 -Dsun.java2d.d3d=false LargeWindowPaintTest
33+
* @run main/othervm -XX:+UseZGC -Dsun.java2d.uiScale=1 LargeWindowPaintTest
34+
* @run main/othervm -XX:+UseZGC -Dsun.java2d.uiScale=1 -Dsun.java2d.d3d=false LargeWindowPaintTest
35+
*/
36+
37+
import java.awt.Color;
38+
import java.awt.Frame;
39+
import java.awt.Graphics;
40+
import java.awt.Rectangle;
41+
import java.awt.Robot;
42+
43+
import javax.swing.JFrame;
44+
import javax.swing.JPanel;
45+
import javax.swing.SwingUtilities;
46+
import javax.swing.WindowConstants;
47+
48+
public class LargeWindowPaintTest extends JPanel {
49+
50+
static volatile JFrame frame = null;
51+
static volatile LargeWindowPaintTest comp = null;
52+
static Color color = Color.red;
53+
54+
public static void main(String[] args) throws Exception {
55+
56+
SwingUtilities.invokeAndWait(() -> {
57+
frame = new JFrame("Large Window Paint Test");
58+
frame.add(comp = new LargeWindowPaintTest());
59+
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
60+
frame.setExtendedState(Frame.MAXIMIZED_BOTH);
61+
frame.setVisible(true);
62+
});
63+
64+
Thread.sleep(2000);
65+
Robot robot = new Robot();
66+
robot.setAutoDelay(500);
67+
robot.waitForIdle();
68+
Rectangle r = comp.getBounds();
69+
System.out.println("Component bounds = " + r);
70+
Color c = robot.getPixelColor((int)r.getWidth()-100, (int)r.getHeight()-100);
71+
72+
SwingUtilities.invokeAndWait(() -> frame.dispose());
73+
74+
if (!c.equals(color)) {
75+
throw new RuntimeException("Color was " + c + " expected " + color);
76+
}
77+
}
78+
79+
@Override
80+
protected void paintComponent(Graphics g) {
81+
super.paintComponent(g);
82+
g.setColor(color);
83+
g.fillRect(0, 0, getSize().width, getSize().height);
84+
};
85+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8240654
27+
* @summary Test printing alpha colors - banded printing works with ZGC.
28+
* @key headful printer
29+
* @requires (os.family == "windows")
30+
* @requires vm.gc.Z
31+
* @run main/manual/othervm -XX:+UseZGC -Dsun.java2d.d3d=false AlphaPrintTest
32+
*/
33+
34+
import java.awt.Color;
35+
import java.awt.Dimension;
36+
import java.awt.Frame;
37+
import java.awt.Graphics;
38+
import java.awt.Graphics2D;
39+
import java.awt.GridLayout;
40+
41+
import java.awt.event.ActionEvent;
42+
import java.awt.event.ActionListener;
43+
44+
import java.awt.print.PageFormat;
45+
import java.awt.print.Printable;
46+
import java.awt.print.PrinterException;
47+
import java.awt.print.PrinterJob;
48+
49+
import javax.swing.JButton;
50+
import javax.swing.JFrame;
51+
import javax.swing.JPanel;
52+
import javax.swing.JTextArea;
53+
import javax.swing.SwingUtilities;
54+
import javax.swing.WindowConstants;
55+
56+
public class AlphaPrintTest extends JPanel implements Printable {
57+
58+
static final int W=400, H=600;
59+
60+
static volatile JFrame frame = null;
61+
static volatile AlphaPrintTest comp = null;
62+
static Color color = Color.red;
63+
static volatile boolean passed = false;
64+
static volatile boolean printInvoked = false;
65+
static volatile boolean done = false;
66+
67+
public static void main(String[] args) throws Exception {
68+
69+
SwingUtilities.invokeAndWait(() -> {
70+
frame = new JFrame("Alpha Color Print Test");
71+
frame.setLayout(new GridLayout(1, 2));
72+
frame.add(comp = new AlphaPrintTest());
73+
frame.add(new InstructionPanel());
74+
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
75+
frame.pack();
76+
frame.setVisible(true);
77+
});
78+
79+
while (!done || !printInvoked) {
80+
Thread.sleep(1000);
81+
}
82+
83+
SwingUtilities.invokeAndWait(() -> frame.dispose());
84+
85+
if (!passed) {
86+
throw new RuntimeException("Test failed.");
87+
}
88+
}
89+
90+
@Override
91+
public Dimension getPreferredSize() {
92+
return new Dimension(W, H);
93+
}
94+
95+
96+
@Override
97+
public Dimension getMinimumSize() {
98+
return getPreferredSize();
99+
}
100+
101+
@Override
102+
protected void paintComponent(Graphics g) {
103+
super.paintComponent(g);
104+
paintContent(g);
105+
};
106+
107+
private void paintContent(Graphics g) {
108+
Color c = new Color(255, 0, 0, 240); // not a solid color.
109+
g.setColor(c);
110+
g.drawLine(0, 0, W, H);
111+
g.drawLine(W, 0, 0, H);
112+
113+
for (int i=10; i < 150; i+=10) {
114+
g.drawRect(i, i, W-(i*2), H-(i*2));
115+
}
116+
g.drawString("Alpha Paint Test", W/2-30, H/2);
117+
}
118+
119+
public int print(Graphics g, PageFormat pf, int pageIndex) {
120+
if (pageIndex == 0) {
121+
Graphics2D g2d = (Graphics2D)g;
122+
g2d.translate(pf.getImageableX(), pf.getImageableY());
123+
paintContent(g);
124+
return Printable.PAGE_EXISTS;
125+
}
126+
return Printable.NO_SUCH_PAGE;
127+
}
128+
129+
public void doPrint() {
130+
printInvoked = true;
131+
PrinterJob pj = PrinterJob.getPrinterJob();
132+
pj.setPrintable(this);
133+
if (pj.printDialog()) {
134+
try {
135+
pj.print();
136+
} catch (PrinterException e) {
137+
e.printStackTrace();
138+
done = true;
139+
}
140+
}
141+
}
142+
143+
public void doClose(boolean pass) {
144+
if (printInvoked) {
145+
passed = pass;
146+
done = true;
147+
}
148+
}
149+
}
150+
151+
class InstructionPanel extends JPanel implements ActionListener {
152+
153+
static final String INSTRUCTIONS =
154+
"You must have a printer to peform this test.\n" +
155+
"Press the print button which will bring up a print dialog." +
156+
"Select a suitable printer, and confirm to print. " +
157+
"Examine the printed output. It should closely resemble the rendering in" +
158+
" the panel to the left. If yes, press PASS, else press FAIL";
159+
160+
InstructionPanel() {
161+
GridLayout gl1 = new GridLayout(2, 1);
162+
setLayout(gl1);
163+
JTextArea ta = new JTextArea(INSTRUCTIONS);
164+
ta.setEditable(false);
165+
ta.setLineWrap(true);
166+
ta.setWrapStyleWord(true);
167+
add(ta);
168+
JPanel p = new JPanel();
169+
JButton print = new JButton("Print");
170+
JButton pass = new JButton("PASS");
171+
JButton fail = new JButton("FAIL");
172+
print.addActionListener(this);
173+
pass.addActionListener(this);
174+
fail.addActionListener(this);
175+
p.add(print);
176+
p.add(pass);
177+
p.add(fail);
178+
add(p);
179+
}
180+
@Override
181+
public Dimension getPreferredSize() {
182+
return new Dimension(200, 600);
183+
}
184+
185+
186+
@Override
187+
public Dimension getMinimumSize() {
188+
return getPreferredSize();
189+
}
190+
public void actionPerformed(ActionEvent e) {
191+
String cmd = e.getActionCommand();
192+
switch (cmd) {
193+
case "Print" -> AlphaPrintTest.comp.doPrint();
194+
case "PASS" -> AlphaPrintTest.comp.doClose(true);
195+
case "FAIL" -> AlphaPrintTest.comp.doClose(false);
196+
}
197+
198+
}
199+
200+
}

‎test/jdk/tools/jpackage/macosx/base/SigningCheck.java

+15-10
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,21 @@ private static void validateCertificate(String key) {
8484
}
8585

8686
private static void validateCertificateTrust(String name) {
87-
List<String> result = new Executor()
88-
.setExecutable("security")
89-
.addArguments("dump-trust-settings")
90-
.executeWithoutExitCodeCheckAndGetOutput();
91-
result.stream().forEachOrdered(TKit::trace);
92-
TKit.assertTextStream(name)
93-
.predicate((line, what) -> line.trim().endsWith(what))
94-
.orElseThrow(() -> TKit.throwSkippedException(
95-
"Certifcate not trusted by current user: " + name))
96-
.apply(result.stream());
87+
// Certificates using the default user name must be trusted by user.
88+
// User supplied certs whose trust is set to "Use System Defaults"
89+
// will not be listed as trusted by dump-trust-settings
90+
if (SigningBase.DEV_NAME.equals("jpackage.openjdk.java.net")) {
91+
List<String> result = new Executor()
92+
.setExecutable("security")
93+
.addArguments("dump-trust-settings")
94+
.executeWithoutExitCodeCheckAndGetOutput();
95+
result.stream().forEachOrdered(TKit::trace);
96+
TKit.assertTextStream(name)
97+
.predicate((line, what) -> line.trim().endsWith(what))
98+
.orElseThrow(() -> TKit.throwSkippedException(
99+
"Certifcate not trusted by current user: " + name))
100+
.apply(result.stream());
101+
}
97102
}
98103

99104
}

0 commit comments

Comments
 (0)
Please sign in to comment.