jdk/src/java.desktop/unix/native/common/awt/CUPSfuncs.c
author prr
Fri, 19 Sep 2014 09:41:05 -0700
changeset 26751 70bac69b37c9
parent 26354 jdk/src/java.desktop/unix/native/common/sun/awt/CUPSfuncs.c@2d04e6c7ed68
child 36470 d5a6c81c5254
permissions -rw-r--r--
8056216: Remove "sun" directory layer from libawt and common Reviewed-by: erikj, ihse, coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
     2
 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <jni.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <jni_util.h>
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    28
#include <jvm_md.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <dlfcn.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include <cups/cups.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include <cups/ppd.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
//#define CUPS_DEBUG
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#ifdef CUPS_DEBUG
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#define DPRINTF(x, y) fprintf(stderr, x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#define DPRINTF(x, y)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
typedef const char* (*fn_cupsServer)(void);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
typedef int (*fn_ippPort)(void);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
typedef http_t* (*fn_httpConnect)(const char *, int);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
typedef void (*fn_httpClose)(http_t *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
typedef char* (*fn_cupsGetPPD)(const char *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
typedef ppd_file_t* (*fn_ppdOpenFile)(const char *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
typedef void (*fn_ppdClose)(ppd_file_t *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
typedef ppd_option_t* (*fn_ppdFindOption)(ppd_file_t *, const char *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
typedef ppd_size_t* (*fn_ppdPageSize)(ppd_file_t *, char *);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
fn_cupsServer j2d_cupsServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
fn_ippPort j2d_ippPort;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
fn_httpConnect j2d_httpConnect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
fn_httpClose j2d_httpClose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
fn_cupsGetPPD j2d_cupsGetPPD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
fn_ppdOpenFile j2d_ppdOpenFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
fn_ppdClose j2d_ppdClose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
fn_ppdFindOption j2d_ppdFindOption;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
fn_ppdPageSize j2d_ppdPageSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * Initialize library functions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * // REMIND : move tab , add dlClose before return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
Java_sun_print_CUPSPrinter_initIDs(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                                         jobject printObj) {
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    69
  void *handle = dlopen(VERSIONED_JNI_LIB_NAME("cups", "2"),
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    70
                        RTLD_LAZY | RTLD_GLOBAL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
  if (handle == NULL) {
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    73
    handle = dlopen(JNI_LIB_NAME("cups"), RTLD_LAZY | RTLD_GLOBAL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    if (handle == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
      return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  j2d_cupsServer = (fn_cupsServer)dlsym(handle, "cupsServer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
  if (j2d_cupsServer == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
  j2d_ippPort = (fn_ippPort)dlsym(handle, "ippPort");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
  if (j2d_ippPort == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  j2d_httpConnect = (fn_httpConnect)dlsym(handle, "httpConnect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
  if (j2d_httpConnect == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
  j2d_httpClose = (fn_httpClose)dlsym(handle, "httpClose");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
  if (j2d_httpClose == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  j2d_cupsGetPPD = (fn_cupsGetPPD)dlsym(handle, "cupsGetPPD");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
  if (j2d_cupsGetPPD == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
  j2d_ppdOpenFile = (fn_ppdOpenFile)dlsym(handle, "ppdOpenFile");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
  if (j2d_ppdOpenFile == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
  j2d_ppdClose = (fn_ppdClose)dlsym(handle, "ppdClose");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
  if (j2d_ppdClose == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
  j2d_ppdFindOption = (fn_ppdFindOption)dlsym(handle, "ppdFindOption");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
  if (j2d_ppdFindOption == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
  j2d_ppdPageSize = (fn_ppdPageSize)dlsym(handle, "ppdPageSize");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
  if (j2d_ppdPageSize == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    dlclose(handle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
  return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * Gets CUPS server name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
JNIEXPORT jstring JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
Java_sun_print_CUPSPrinter_getCupsServer(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                                         jobject printObj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    jstring cServer = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    const char* server = j2d_cupsServer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    if (server != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        // Is this a local domain socket?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if (strncmp(server, "/", 1) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            cServer = JNU_NewStringPlatform(env, "localhost");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            cServer = JNU_NewStringPlatform(env, server);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    return cServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * Gets CUPS port name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
Java_sun_print_CUPSPrinter_getCupsPort(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                                         jobject printObj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    int port = j2d_ippPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    return (jint) port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * Checks if connection can be made to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
Java_sun_print_CUPSPrinter_canConnect(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                                      jobject printObj,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                                      jstring server,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                                      jint port)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    const char *serverName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    serverName = (*env)->GetStringUTFChars(env, server, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    if (serverName != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        http_t *http = j2d_httpConnect(serverName, (int)port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        (*env)->ReleaseStringUTFChars(env, server, serverName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (http != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            j2d_httpClose(http);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 * Returns list of media: pages + trays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
JNIEXPORT jobjectArray JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
Java_sun_print_CUPSPrinter_getMedia(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                                         jobject printObj,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                                         jstring printer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    ppd_file_t *ppd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    ppd_option_t *optionTray, *optionPage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    ppd_choice_t *choice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    const char *name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    const char *filename;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    int i, nTrays=0, nPages=0, nTotal=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    jstring utf_str;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    jclass cls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    jobjectArray nameArray = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    name = (*env)->GetStringUTFChars(env, printer, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    if (name == NULL) {
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   216
        (*env)->ExceptionClear(env);
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   217
        JNU_ThrowOutOfMemoryError(env, "Could not create printer name");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    // NOTE: cupsGetPPD returns a pointer to a filename of a temporary file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    // unlink() must be caled to remove the file when finished using it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    filename = j2d_cupsGetPPD(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    (*env)->ReleaseStringUTFChars(env, printer, name);
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   225
    CHECK_NULL_RETURN(filename, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    cls = (*env)->FindClass(env, "java/lang/String");
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   228
    CHECK_NULL_RETURN(cls, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    if ((ppd = j2d_ppdOpenFile(filename)) == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        DPRINTF("CUPSfuncs::unable to open PPD  %s\n", filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    optionPage = j2d_ppdFindOption(ppd, "PageSize");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    if (optionPage != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        nPages = optionPage->num_choices;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    optionTray = j2d_ppdFindOption(ppd, "InputSlot");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    if (optionTray != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        nTrays = optionTray->num_choices;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    if ((nTotal = (nPages+nTrays) *2) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        nameArray = (*env)->NewObjectArray(env, nTotal, cls, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        if (nameArray == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            DPRINTF("CUPSfuncs::bad alloc new array\n", "")
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   252
            (*env)->ExceptionClear(env);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        for (i = 0; optionPage!=NULL && i<nPages; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            choice = (optionPage->choices)+i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            utf_str = JNU_NewStringPlatform(env, choice->text);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            if (utf_str == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                DPRINTF("CUPSfuncs::bad alloc new string ->text\n", "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            (*env)->SetObjectArrayElement(env, nameArray, i*2, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            (*env)->DeleteLocalRef(env, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            utf_str = JNU_NewStringPlatform(env, choice->choice);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            if (utf_str == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                DPRINTF("CUPSfuncs::bad alloc new string ->choice\n", "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            (*env)->SetObjectArrayElement(env, nameArray, i*2+1, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            (*env)->DeleteLocalRef(env, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        for (i = 0; optionTray!=NULL && i<nTrays; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            choice = (optionTray->choices)+i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            utf_str = JNU_NewStringPlatform(env, choice->text);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            if (utf_str == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                DPRINTF("CUPSfuncs::bad alloc new string text\n", "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            (*env)->SetObjectArrayElement(env, nameArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                                          (nPages+i)*2, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            (*env)->DeleteLocalRef(env, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            utf_str = JNU_NewStringPlatform(env, choice->choice);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            if (utf_str == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                DPRINTF("CUPSfuncs::bad alloc new string choice\n", "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            (*env)->SetObjectArrayElement(env, nameArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                                          (nPages+i)*2+1, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            (*env)->DeleteLocalRef(env, utf_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    return nameArray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
 * Returns list of page sizes and imageable area.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
JNIEXPORT jfloatArray JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
Java_sun_print_CUPSPrinter_getPageSizes(JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                                         jobject printObj,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                                         jstring printer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    ppd_file_t *ppd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    ppd_option_t *option;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    ppd_choice_t *choice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    ppd_size_t *size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    const char *name = (*env)->GetStringUTFChars(env, printer, NULL);
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   327
    if (name == NULL) {
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   328
        (*env)->ExceptionClear(env);
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   329
        JNU_ThrowOutOfMemoryError(env, "Could not create printer name");
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   330
        return NULL;
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   331
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    const char *filename;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    jobjectArray sizeArray = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    jfloat *dims;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    // NOTE: cupsGetPPD returns a pointer to a filename of a temporary file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    // unlink() must be called to remove the file after using it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    filename = j2d_cupsGetPPD(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    (*env)->ReleaseStringUTFChars(env, printer, name);
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   341
    CHECK_NULL_RETURN(filename, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    if ((ppd = j2d_ppdOpenFile(filename)) == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        DPRINTF("unable to open PPD  %s\n", filename)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    option = j2d_ppdFindOption(ppd, "PageSize");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    if (option != NULL && option->num_choices > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        // create array of dimensions - (num_choices * 6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        //to cover length & height
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        DPRINTF( "CUPSfuncs::option->num_choices %d\n", option->num_choices)
25555
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   352
        // +1 is for storing the default media index
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   353
        sizeArray = (*env)->NewFloatArray(env, option->num_choices*6+1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        if (sizeArray == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            DPRINTF("CUPSfuncs::bad alloc new float array\n", "")
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   358
            (*env)->ExceptionClear(env);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            JNU_ThrowOutOfMemoryError(env, "OutOfMemoryError");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        dims = (*env)->GetFloatArrayElements(env, sizeArray, NULL);
24130
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   364
        if (dims == NULL) {
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   365
            unlink(filename);
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   366
            j2d_ppdClose(ppd);
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   367
            (*env)->ExceptionClear(env);
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   368
            JNU_ThrowOutOfMemoryError(env, "Could not create printer name");
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   369
            return NULL;
db72fc72f87b 8031001: [Parfait] warnings from b121 for jdk/src/solaris/native/sun/awt: JNI-related warnings
pchelko
parents: 23010
diff changeset
   370
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        for (i = 0; i<option->num_choices; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            choice = (option->choices)+i;
25555
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   373
            // get the index of the default page
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   374
            if (!strcmp(choice->choice, option->defchoice)) {
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   375
                dims[option->num_choices*6] = (float)i;
b70a66b5b942 7067052: Default printer media is ignored
jgodinez
parents: 24130
diff changeset
   376
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            size = j2d_ppdPageSize(ppd, choice->choice);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            if (size != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                // paper width and height
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                dims[i*6] = size->width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                dims[(i*6)+1] = size->length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                // paper printable area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                dims[(i*6)+2] = size->left;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                dims[(i*6)+3] = size->top;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                dims[(i*6)+4] = size->right;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                dims[(i*6)+5] = size->bottom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        (*env)->ReleaseFloatArrayElements(env, sizeArray, dims, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    j2d_ppdClose(ppd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    unlink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    return sizeArray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
}
25774
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   397
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   398
/*
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   399
 * Populates the supplied ArrayList<Integer> with resolutions.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   400
 * The first pair of elements will be the default resolution.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   401
 * If resolution isn't supported the list will be empty.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   402
 * If needed we can add a 2nd ArrayList<String> which would
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   403
 * be populated with the corresponding UI name.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   404
 * PPD specifies the syntax for resolution as either "Ndpi" or "MxNdpi",
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   405
 * eg 300dpi or 600x600dpi. The former is a shorthand where xres==yres.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   406
 * We will always expand to the latter as we use a single array list.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   407
 * Note: getMedia() and getPageSizes() both open the ppd file
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   408
 * This is not going to scale forever so if we add anymore we
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   409
 * should look to consolidate this.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   410
 */
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   411
JNIEXPORT void JNICALL
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   412
Java_sun_print_CUPSPrinter_getResolutions(JNIEnv *env,
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   413
                                          jobject printObj,
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   414
                                          jstring printer,
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   415
                                          jobject arrayList)
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   416
{
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   417
    ppd_file_t *ppd = NULL;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   418
    ppd_option_t *resolution;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   419
    int defx = 0, defy = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   420
    int resx = 0, resy = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   421
    jclass intCls, cls;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   422
    jmethodID intCtr, arrListAddMID;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   423
    int i;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   424
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   425
    intCls = (*env)->FindClass(env, "java/lang/Integer");
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   426
    CHECK_NULL(intCls);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   427
    intCtr = (*env)->GetMethodID(env, intCls, "<init>", "(I)V");
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   428
    CHECK_NULL(intCtr);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   429
    cls = (*env)->FindClass(env, "java/util/ArrayList");
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   430
    CHECK_NULL(cls);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   431
    arrListAddMID =
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   432
        (*env)->GetMethodID(env, cls, "add", "(Ljava/lang/Object;)Z");
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   433
    CHECK_NULL(arrListAddMID);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   434
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   435
    const char *name = (*env)->GetStringUTFChars(env, printer, NULL);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   436
    if (name == NULL) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   437
        (*env)->ExceptionClear(env);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   438
        JNU_ThrowOutOfMemoryError(env, "Could not create printer name");
26354
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   439
        return;
25774
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   440
    }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   441
    const char *filename;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   442
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   443
    // NOTE: cupsGetPPD returns a pointer to a filename of a temporary file.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   444
    // unlink() must be called to remove the file after using it.
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   445
    filename = j2d_cupsGetPPD(name);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   446
    (*env)->ReleaseStringUTFChars(env, printer, name);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   447
    CHECK_NULL(filename);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   448
    if ((ppd = j2d_ppdOpenFile(filename)) == NULL) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   449
        unlink(filename);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   450
        DPRINTF("unable to open PPD  %s\n", filename)
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   451
    }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   452
    resolution = j2d_ppdFindOption(ppd, "Resolution");
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   453
    if (resolution != NULL) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   454
        int matches = sscanf(resolution->defchoice, "%dx%ddpi", &defx, &defy);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   455
        if (matches == 2) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   456
           if (defx <= 0 || defy <= 0) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   457
              defx = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   458
              defy = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   459
           }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   460
        } else {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   461
            matches = sscanf(resolution->defchoice, "%ddpi", &defx);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   462
            if (matches == 1) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   463
                if (defx <= 0) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   464
                   defx = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   465
                } else {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   466
                   defy = defx;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   467
                }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   468
            }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   469
        }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   470
        if (defx > 0) {
26354
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   471
          jobject rxObj, ryObj;
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   472
          rxObj = (*env)->NewObject(env, intCls, intCtr, defx);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   473
          CHECK_NULL(rxObj);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   474
          ryObj = (*env)->NewObject(env, intCls, intCtr, defy);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   475
          CHECK_NULL(ryObj);
25774
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   476
          (*env)->CallBooleanMethod(env, arrayList, arrListAddMID, rxObj);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   477
          (*env)->CallBooleanMethod(env, arrayList, arrListAddMID, ryObj);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   478
        }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   479
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   480
        for (i = 0; i < resolution->num_choices; i++) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   481
            char *resStr = resolution->choices[i].choice;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   482
            int matches = sscanf(resStr, "%dx%ddpi", &resx, &resy);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   483
            if (matches == 2) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   484
               if (resx <= 0 || resy <= 0) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   485
                  resx = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   486
                  resy = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   487
               }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   488
            } else {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   489
                matches = sscanf(resStr, "%ddpi", &resx);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   490
                if (matches == 1) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   491
                    if (resx <= 0) {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   492
                       resx = 0;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   493
                    } else {
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   494
                       resy = resx;
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   495
                    }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   496
                }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   497
            }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   498
            if (resx > 0 && (resx != defx || resy != defy )) {
26354
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   499
              jobject rxObj, ryObj;
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   500
              rxObj = (*env)->NewObject(env, intCls, intCtr, resx);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   501
              CHECK_NULL(rxObj);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   502
              ryObj = (*env)->NewObject(env, intCls, intCtr, resy);
2d04e6c7ed68 8055201: JNI exception pending in jdk/src/solaris/native/sun/awt/CUPSfuncs.c
prr
parents: 25859
diff changeset
   503
              CHECK_NULL(ryObj);
25774
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   504
              (*env)->CallBooleanMethod(env, arrayList, arrListAddMID, rxObj);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   505
              (*env)->CallBooleanMethod(env, arrayList, arrListAddMID, ryObj);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   506
            }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   507
        }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   508
    }
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   509
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   510
    j2d_ppdClose(ppd);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   511
    unlink(filename);
21b78da4b2df 8048328: CUPS Printing does not report supported printer resolutions.
prr
parents: 25555
diff changeset
   512
}