1 /*
   2  * Copyright (c) 1998, 2013, 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #ifndef _JAVA_PROPS_H
  27 #define _JAVA_PROPS_H
  28 
  29 #include <jni_util.h>
  30 
  31 /* The preferred native type for storing text on the current OS */
  32 #ifdef WIN32
  33 #include <tchar.h>
  34 typedef WCHAR nchar;
  35 #else
  36 typedef char nchar;
  37 #endif
  38 
  39 typedef struct {
  40     char *os_name;
  41     char *os_version;
  42     char *os_arch;
  43 
  44 #ifdef JDK_ARCH_ABI_PROP_NAME
  45     char *sun_arch_abi;
  46 #endif
  47 
  48     nchar *tmp_dir;
  49     nchar *font_dir;
  50     nchar *user_dir;
  51 
  52     char *file_separator;
  53     char *path_separator;
  54     char *line_separator;
  55 
  56     nchar *user_name;
  57     nchar *user_home;
  58 
  59     char *format_language;
  60     char *display_language;
  61     char *format_script;
  62     char *display_script;
  63     char *format_country;
  64     char *display_country;
  65     char *format_variant;
  66     char *display_variant;
  67     char *encoding;
  68     char *sun_jnu_encoding;
  69     char *sun_stdout_encoding;
  70     char *sun_stderr_encoding;
  71 
  72     char *printerJob;
  73     char *graphics_env;
  74     char *awt_toolkit;
  75 
  76     char *unicode_encoding;     /* The default endianness of unicode
  77                                     i.e. UnicodeBig or UnicodeLittle   */
  78 
  79     const char *cpu_isalist;    /* list of supported instruction sets */
  80 
  81     char *cpu_endian;           /* endianness of platform */
  82 
  83     char *data_model;           /* 32 or 64 bit data model */
  84 
  85     char *patch_level;          /* patches/service packs installed */
  86 
  87     char *desktop;              /* Desktop name. */
  88 
  89 #ifdef MACOSX
  90     // These are for proxy-related information.
  91     // Note that if these platform-specific extensions get out of hand we should make a new
  92     // structure for them and #include it here.
  93     int httpProxyEnabled;
  94     char *httpHost;
  95     char *httpPort;
  96 
  97     int httpsProxyEnabled;
  98     char *httpsHost;
  99     char *httpsPort;
 100 
 101     int ftpProxyEnabled;
 102     char *ftpHost;
 103     char *ftpPort;
 104 
 105     int socksProxyEnabled;
 106     char *socksHost;
 107     char *socksPort;
 108 
 109     int gopherProxyEnabled;
 110     char *gopherHost;
 111     char *gopherPort;
 112 
 113     char *exceptionList;
 114 
 115     char *awt_headless;  /* java.awt.headless setting, if NULL (default) will not be set */
 116 #endif
 117 
 118 } java_props_t;
 119 
 120 java_props_t *GetJavaProperties(JNIEnv *env);
 121 jstring GetStringPlatform(JNIEnv *env, nchar* str);
 122 
 123 #endif /* _JAVA_PROPS_H */