jdk/src/share/bin/main.c
author ksrini
Tue, 31 Jul 2012 06:14:28 -0700
changeset 13411 224a28370893
parent 7668 d4a77089c587
permissions -rw-r--r--
7146424: Wildcard expansion for single entry classpath Reviewed-by: dholmes, darcy, jjh, sherman
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
     2
 * Copyright (c) 1995, 2012, 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: 5381
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: 5381
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: 5381
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * This file contains the main entry point into the launcher code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * this is the only file which will be repeatedly compiled by other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * tools. The rest of the files will be linked in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "defines.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
1776
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    35
#ifdef _MSC_VER
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1776
diff changeset
    36
#if _MSC_VER > 1400 && _MSC_VER < 1600
1776
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    37
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    38
/*
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    39
 * When building for Microsoft Windows, main has a dependency on msvcr??.dll.
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    40
 *
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1776
diff changeset
    41
 * When using Visual Studio 2005 or 2008, that must be recorded in
1776
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    42
 * the [java,javaw].exe.manifest file.
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    43
 *
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1776
diff changeset
    44
 * As of VS2010 (ver=1600), the runtimes again no longer need manifests.
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1776
diff changeset
    45
 *
1776
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    46
 * Reference:
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    47
 *     C:/Program Files/Microsoft SDKs/Windows/v6.1/include/crtdefs.h
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    48
 */
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    49
#include <crtassem.h>
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    50
#ifdef _M_IX86
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    51
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    52
#pragma comment(linker,"/manifestdependency:\"type='win32' "            \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    53
        "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT' "              \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    54
        "version='" _CRT_ASSEMBLY_VERSION "' "                          \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    55
        "processorArchitecture='x86' "                                  \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    56
        "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"")
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    57
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    58
#endif /* _M_IX86 */
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    59
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    60
//This may not be necessary yet for the Windows 64-bit build, but it
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    61
//will be when that build environment is updated.  Need to test to see
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    62
//if it is harmless:
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    63
#ifdef _M_AMD64
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    64
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    65
#pragma comment(linker,"/manifestdependency:\"type='win32' "            \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    66
        "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT' "              \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    67
        "version='" _CRT_ASSEMBLY_VERSION "' "                          \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    68
        "processorArchitecture='amd64' "                                \
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    69
        "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"")
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    70
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    71
#endif  /* _M_AMD64 */
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1776
diff changeset
    72
#endif  /* _MSC_VER > 1400 && _MSC_VER < 1600 */
1776
33e9405ab91b 6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents: 715
diff changeset
    73
#endif  /* _MSC_VER */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * Entry point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
#ifdef JAVAW
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
char **__initenv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
int WINAPI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
WinMain(HINSTANCE inst, HINSTANCE previnst, LPSTR cmdline, int cmdshow)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    int margc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    char** margv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    const jboolean const_javaw = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    __initenv = _environ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
#else /* JAVAW */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
int
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
    93
main(int argc, char **argv)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    int margc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    char** margv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    const jboolean const_javaw = JNI_FALSE;
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
    98
#endif /* JAVAW */
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
    99
#ifdef _WIN32
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   100
    {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   101
        int i = 0;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   102
        if (getenv(JLDEBUG_ENV_ENTRY) != NULL) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   103
            printf("Windows original main args:\n");
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   104
            for (i = 0 ; i < __argc ; i++) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   105
                printf("wwwd_args[%d] = %s\n", i, __argv[i]);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   106
            }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   107
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   108
    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   109
    JLI_CmdToArgs(GetCommandLine());
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   110
    margc = JLI_GetStdArgc();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   111
    // add one more to mark the end
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   112
    margv = (char **)JLI_MemAlloc((margc + 1) * (sizeof(char *)));
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   113
    {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   114
        int i = 0;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   115
        StdArg *stdargs = JLI_GetStdArgs();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   116
        for (i = 0 ; i < margc ; i++) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   117
            margv[i] = stdargs[i].arg;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   118
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   119
        margv[i] = NULL;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   120
    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   121
#else /* *NIXES */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    margc = argc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    margv = argv;
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 7668
diff changeset
   124
#endif /* WIN32 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    return JLI_Launch(margc, margv,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                   sizeof(const_jargs) / sizeof(char *), const_jargs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                   sizeof(const_appclasspath) / sizeof(char *), const_appclasspath,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                   FULL_VERSION,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                   DOT_VERSION,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                   (const_progname != NULL) ? const_progname : *margv,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                   (const_launcher != NULL) ? const_launcher : *margv,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                   (const_jargs != NULL) ? JNI_TRUE : JNI_FALSE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                   const_cpwildcard, const_javaw, const_ergo_class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
}