jdk/test/sun/tools/common/SleeperApplication.java
author dcubed
Wed, 21 Jul 2010 17:01:31 -0700
changeset 6120 4979c5d548f8
permissions -rw-r--r--
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT Summary: Refactor test/sun/tools/common/* code and refactor AnonLoggerWeakRefLeak and LoggerWeakRefLeak to use it. Reviewed-by: ohair, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6120
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     1
/*
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     2
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     4
 *
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     8
 *
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    13
 * accompanied this code).
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    14
 *
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    18
 *
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    21
 * questions.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    22
 */
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    23
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    24
/*
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    25
 * An example subclass of SimpleApplication that illustrates how to
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    26
 * override the doMyAppWork() method.
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    27
 */
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    28
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    29
public class SleeperApplication extends SimpleApplication {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    30
    public static int DEFAULT_SLEEP_TIME = 60;  // time is in seconds
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    31
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    32
    // execute the sleeper app work
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    33
    public void doMyAppWork(String[] args) throws Exception {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    34
        int sleep_time = DEFAULT_SLEEP_TIME;
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    35
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    36
        // args[0] is the port-file
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    37
        if (args.length < 2) {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    38
            System.out.println("INFO: using default sleep time of "
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    39
                + sleep_time + " seconds.");
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    40
        } else {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    41
            try {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    42
                sleep_time = Integer.parseInt(args[1]);
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    43
            } catch (NumberFormatException nfe) {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    44
                throw new RuntimeException("Error: '" + args[1] +
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    45
                    "': is not a valid seconds value.");
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    46
            }
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    47
        }
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    48
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    49
        Thread.sleep(sleep_time * 1000);  // our "work" is to sleep
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    50
    }
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    51
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    52
    public static void main(String[] args) throws Exception {
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    53
        SleeperApplication myApp = new SleeperApplication();
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    54
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    55
        SimpleApplication.setMyApp(myApp);
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    56
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    57
        SimpleApplication.main(args);
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    58
    }
4979c5d548f8 6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
diff changeset
    59
}