Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
/ jdk13u-dev Public archive

Commit

Permalink
8241829: Cleanup the code for PrinterJob on windows
Browse files Browse the repository at this point in the history
Backport-of: a62b24f
  • Loading branch information
Yuri Nesterenko committed May 19, 2021
1 parent 32036b2 commit 5650831
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 76 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 2020, 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
Expand All @@ -25,10 +25,10 @@

package sun.print;

import java.security.AccessController;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;

import javax.print.DocFlavor;
import javax.print.MultiDocPrintService;
import javax.print.PrintService;
Expand Down Expand Up @@ -120,13 +120,6 @@ public PrintServiceLookupProvider() {
if (win32PrintLUS == null) {
win32PrintLUS = this;

String osName = AccessController.doPrivileged(
new sun.security.action.GetPropertyAction("os.name"));
// There's no capability for Win98 to refresh printers.
// See "OpenPrinter" for more info.
if (osName != null && osName.startsWith("Windows 98")) {
return;
}
// start the local printer listener thread
Thread thr = new Thread(null, new PrinterChangeListener(),
"PrinterListener", 0, false);
Expand Down Expand Up @@ -356,29 +349,10 @@ public synchronized PrintService getDefaultPrintService() {
return defaultPrintService;
}

class PrinterChangeListener implements Runnable {
long chgObj;
PrinterChangeListener() {
chgObj = notifyFirstPrinterChange(null);
}

private final class PrinterChangeListener implements Runnable {
@Override
public void run() {
if (chgObj != -1) {
while (true) {
// wait for configuration to change
if (notifyPrinterChange(chgObj) != 0) {
try {
refreshServices();
} catch (SecurityException se) {
break;
}
} else {
notifyClosePrinterChange(chgObj);
break;
}
}
}
notifyLocalPrinterChange(); // busy loop in the native code
}
}

Expand Down Expand Up @@ -446,8 +420,6 @@ public void run() {

private native String getDefaultPrinterName();
private native String[] getAllPrinterNames();
private native long notifyFirstPrinterChange(String printer);
private native void notifyClosePrinterChange(long chgObj);
private native int notifyPrinterChange(long chgObj);
private native void notifyLocalPrinterChange();
private native String[] getRemotePrintersNames();
}
69 changes: 26 additions & 43 deletions src/java.desktop/windows/native/libawt/windows/WPrinterJob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,28 +185,20 @@ Java_sun_print_PrintServiceLookupProvider_getRemotePrintersNames(JNIEnv *env,
return getPrinterNames(env, PRINTER_ENUM_CONNECTIONS);
}

JNIEXPORT void JNICALL
Java_sun_print_PrintServiceLookupProvider_notifyLocalPrinterChange(JNIEnv *env,
jobject peer)
{
jclass cls = env->GetObjectClass(peer);
CHECK_NULL(cls);
jmethodID refresh = env->GetMethodID(cls, "refreshServices", "()V");
CHECK_NULL(refresh);

JNIEXPORT jlong JNICALL
Java_sun_print_PrintServiceLookupProvider_notifyFirstPrinterChange(JNIEnv *env,
jobject peer,
jstring printer) {
HANDLE hPrinter;

LPTSTR printerName = NULL;
if (printer != NULL) {
printerName = (LPTSTR)JNU_GetStringPlatformChars(env,
printer,
NULL);
JNU_ReleaseStringPlatformChars(env, printer, printerName);
}

// printerName - "Win NT/2K/XP: If NULL, it indicates the local printer
// server" - MSDN. Win9x : OpenPrinter returns 0.
BOOL ret = OpenPrinter(printerName, &hPrinter, NULL);
if (!ret) {
return (jlong)-1;
LPTSTR printerName = NULL; // NULL indicates the local printer server
if (!::OpenPrinter(printerName, &hPrinter, NULL)) {
return;
}

// PRINTER_CHANGE_PRINTER = PRINTER_CHANGE_ADD_PRINTER |
// PRINTER_CHANGE_SET_PRINTER |
// PRINTER_CHANGE_DELETE_PRINTER |
Expand All @@ -215,32 +207,23 @@ Java_sun_print_PrintServiceLookupProvider_notifyFirstPrinterChange(JNIEnv *env,
PRINTER_CHANGE_PRINTER,
0,
NULL);
return (chgObj == INVALID_HANDLE_VALUE) ? (jlong)-1 : (jlong)chgObj;
}



JNIEXPORT void JNICALL
Java_sun_print_PrintServiceLookupProvider_notifyClosePrinterChange(JNIEnv *env,
jobject peer,
jlong chgObject) {
FindClosePrinterChangeNotification((HANDLE)chgObject);
}

if (chgObj != INVALID_HANDLE_VALUE) {
BOOL keepMonitoring;
do {
keepMonitoring = FALSE;
if (WaitForSingleObject(chgObj, INFINITE) == WAIT_OBJECT_0) {
DWORD dwChange;
keepMonitoring = FindNextPrinterChangeNotification(
chgObj, &dwChange, NULL, NULL);
}
if (keepMonitoring) {
env->CallVoidMethod(peer, refresh);
}
} while (keepMonitoring && !env->ExceptionCheck());

JNIEXPORT jint JNICALL
Java_sun_print_PrintServiceLookupProvider_notifyPrinterChange(JNIEnv *env,
jobject peer,
jlong chgObject) {
DWORD dwChange;

DWORD ret = WaitForSingleObject((HANDLE)chgObject, INFINITE);
if (ret == WAIT_OBJECT_0) {
return(FindNextPrinterChangeNotification((HANDLE)chgObject,
&dwChange, NULL, NULL));
} else {
return 0;
FindClosePrinterChangeNotification(chgObj);
}
::ClosePrinter(hPrinter);
}


Expand Down
48 changes: 48 additions & 0 deletions test/jdk/java/awt/print/PrintServicesSecurityManager.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* Copyright (c) 2020, 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.util.Arrays;

import javax.print.PrintServiceLookup;

/*
* @test
* @bug 8241829
*/
public final class PrintServicesSecurityManager {

public static void main(String[] args) throws InterruptedException {
System.setSecurityManager(new SecurityManager());
test();
Thread.sleep(3000); // to be sure the pooling thread started
test();
}

private static void test() {
Object[] services = PrintServiceLookup.lookupPrintServices(null, null);
if (services.length != 0) {
System.err.println("services = " + Arrays.toString(services));
throw new RuntimeException("The array of Services must be empty");
}
}
}

1 comment on commit 5650831

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.