author | lana |
Tue, 20 Aug 2013 17:46:21 -0700 | |
changeset 19513 | f90fd926e074 |
parent 6120 | 4979c5d548f8 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
2 |
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. |
2 | 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. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5506 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
2 | 22 |
*/ |
23 |
||
24 |
/* |
|
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
25 |
* A simple application used by unit tests. The first argument to this |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
26 |
* class is the name of a file to which a TCP port number can be written. |
2 | 27 |
* |
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
28 |
* By default, this class does nothing other than bind to a TCP port, |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
29 |
* write the TCP port number to a file, and wait for an incoming connection |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
30 |
* in order to complete the application shutdown protocol. |
2 | 31 |
*/ |
32 |
import java.net.Socket; |
|
33 |
import java.net.ServerSocket; |
|
34 |
import java.io.File; |
|
35 |
import java.io.FileOutputStream; |
|
36 |
||
37 |
public class SimpleApplication { |
|
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
38 |
private static SimpleApplication myApp; // simple app or a subclass |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
39 |
private static String myAppName; // simple app name |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
40 |
private static int myPort; // coordination port # |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
41 |
private static ServerSocket mySS; // coordination socket |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
42 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
43 |
// protected so a subclass can extend it; not public so creation is |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
44 |
// limited. |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
45 |
protected SimpleApplication() { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
46 |
// save simple app (or subclass) name for messages |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
47 |
myAppName = getClass().getName(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
48 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
49 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
50 |
// return the simple application (or a subclass) |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
51 |
final public static SimpleApplication getMyApp() { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
52 |
return myApp; |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
53 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
54 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
55 |
// set the simple application (for use by a subclass) |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
56 |
final public static void setMyApp(SimpleApplication _myApp) { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
57 |
myApp = _myApp; |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
58 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
59 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
60 |
// execute the application finish protocol |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
61 |
final public void doMyAppFinish(String[] args) throws Exception { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
62 |
System.out.println("INFO: " + myAppName + " is waiting on port: " + |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
63 |
myPort); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
64 |
System.out.flush(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
65 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
66 |
// wait for test harness to connect |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
67 |
Socket s = mySS.accept(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
68 |
s.close(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
69 |
mySS.close(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
70 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
71 |
System.out.println("INFO: " + myAppName + " is shutting down."); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
72 |
System.out.flush(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
73 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
74 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
75 |
// execute the application start protocol |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
76 |
final public void doMyAppStart(String[] args) throws Exception { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
77 |
if (args.length < 1) { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
78 |
throw new RuntimeException("Usage: " + myAppName + |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
79 |
" port-file [arg(s)]"); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
80 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
81 |
|
2 | 82 |
// bind to a random port |
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
83 |
mySS = new ServerSocket(0); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
84 |
myPort = mySS.getLocalPort(); |
2 | 85 |
|
86 |
// Write the port number to the given file |
|
87 |
File f = new File(args[0]); |
|
88 |
FileOutputStream fos = new FileOutputStream(f); |
|
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
89 |
fos.write( Integer.toString(myPort).getBytes("UTF-8") ); |
2 | 90 |
fos.close(); |
91 |
||
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
92 |
System.out.println("INFO: " + myAppName + " created socket on port: " + |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
93 |
myPort); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
94 |
System.out.flush(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
95 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
96 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
97 |
// execute the app work (subclass can override this) |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
98 |
public void doMyAppWork(String[] args) throws Exception { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
99 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
100 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
101 |
public static void main(String[] args) throws Exception { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
102 |
if (myApp == null) { |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
103 |
// create myApp since a subclass hasn't done so |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
104 |
myApp = new SimpleApplication(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
105 |
} |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
106 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
107 |
myApp.doMyAppStart(args); // do the app start protocol |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
108 |
|
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
109 |
System.out.println("INFO: " + myAppName + " is calling doMyAppWork()"); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
110 |
System.out.flush(); |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
111 |
myApp.doMyAppWork(args); // do the app work |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
112 |
System.out.println("INFO: " + myAppName + " returned from" + |
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
113 |
" doMyAppWork()"); |
2 | 114 |
System.out.flush(); |
115 |
||
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
116 |
myApp.doMyAppFinish(args); // do the app finish protocol |
2 | 117 |
|
6120
4979c5d548f8
6964018: 3/4 AnonLoggerWeakRefLeak and LoggerWeakRefLeak can fail in JPRT
dcubed
parents:
5506
diff
changeset
|
118 |
System.exit(0); |
2 | 119 |
} |
120 |
} |