Skip to content

Commit c0cf0ec

Browse files
author
likongpeng
committed
First add
1 parent bae98de commit c0cf0ec

File tree

7,741 files changed

+2407340
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,741 files changed

+2407340
-1
lines changed

a.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
1 Byte
Binary file not shown.
17 Bytes
Binary file not shown.

src/.gradle/buildOutputCleanup/built.bin

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Tue Jul 10 09:49:43 CST 2018
2+
gradle.version=3.5
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
4+
/**
5+
* com/sun/corba/se/PortableActivationIDL/Activator.java .
6+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
7+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8+
* Friday, April 10, 2015 10:49:20 AM PDT
9+
*/
10+
11+
public interface Activator extends ActivatorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
12+
{
13+
} // interface Activator
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
4+
/**
5+
* com/sun/corba/se/PortableActivationIDL/ActivatorHelper.java .
6+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
7+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8+
* Friday, April 10, 2015 10:49:20 AM PDT
9+
*/
10+
11+
abstract public class ActivatorHelper
12+
{
13+
private static String _id = "IDL:PortableActivationIDL/Activator:1.0";
14+
15+
public static void insert (org.omg.CORBA.Any a, com.sun.corba.se.PortableActivationIDL.Activator that)
16+
{
17+
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
18+
a.type (type ());
19+
write (out, that);
20+
a.read_value (out.create_input_stream (), type ());
21+
}
22+
23+
public static com.sun.corba.se.PortableActivationIDL.Activator extract (org.omg.CORBA.Any a)
24+
{
25+
return read (a.create_input_stream ());
26+
}
27+
28+
private static org.omg.CORBA.TypeCode __typeCode = null;
29+
synchronized public static org.omg.CORBA.TypeCode type ()
30+
{
31+
if (__typeCode == null)
32+
{
33+
__typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (com.sun.corba.se.PortableActivationIDL.ActivatorHelper.id (), "Activator");
34+
}
35+
return __typeCode;
36+
}
37+
38+
public static String id ()
39+
{
40+
return _id;
41+
}
42+
43+
public static com.sun.corba.se.PortableActivationIDL.Activator read (org.omg.CORBA.portable.InputStream istream)
44+
{
45+
return narrow (istream.read_Object (_ActivatorStub.class));
46+
}
47+
48+
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.corba.se.PortableActivationIDL.Activator value)
49+
{
50+
ostream.write_Object ((org.omg.CORBA.Object) value);
51+
}
52+
53+
public static com.sun.corba.se.PortableActivationIDL.Activator narrow (org.omg.CORBA.Object obj)
54+
{
55+
if (obj == null)
56+
return null;
57+
else if (obj instanceof com.sun.corba.se.PortableActivationIDL.Activator)
58+
return (com.sun.corba.se.PortableActivationIDL.Activator)obj;
59+
else if (!obj._is_a (id ()))
60+
throw new org.omg.CORBA.BAD_PARAM ();
61+
else
62+
{
63+
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
64+
com.sun.corba.se.PortableActivationIDL._ActivatorStub stub = new com.sun.corba.se.PortableActivationIDL._ActivatorStub ();
65+
stub._set_delegate(delegate);
66+
return stub;
67+
}
68+
}
69+
70+
public static com.sun.corba.se.PortableActivationIDL.Activator unchecked_narrow (org.omg.CORBA.Object obj)
71+
{
72+
if (obj == null)
73+
return null;
74+
else if (obj instanceof com.sun.corba.se.PortableActivationIDL.Activator)
75+
return (com.sun.corba.se.PortableActivationIDL.Activator)obj;
76+
else
77+
{
78+
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
79+
com.sun.corba.se.PortableActivationIDL._ActivatorStub stub = new com.sun.corba.se.PortableActivationIDL._ActivatorStub ();
80+
stub._set_delegate(delegate);
81+
return stub;
82+
}
83+
}
84+
85+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
/**
4+
* com/sun/corba/se/PortableActivationIDL/ActivatorHolder.java .
5+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
6+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
7+
* Friday, April 10, 2015 10:49:20 AM PDT
8+
*/
9+
10+
public final class ActivatorHolder implements org.omg.CORBA.portable.Streamable
11+
{
12+
public com.sun.corba.se.PortableActivationIDL.Activator value = null;
13+
14+
public ActivatorHolder ()
15+
{
16+
}
17+
18+
public ActivatorHolder (com.sun.corba.se.PortableActivationIDL.Activator initialValue)
19+
{
20+
value = initialValue;
21+
}
22+
23+
public void _read (org.omg.CORBA.portable.InputStream i)
24+
{
25+
value = com.sun.corba.se.PortableActivationIDL.ActivatorHelper.read (i);
26+
}
27+
28+
public void _write (org.omg.CORBA.portable.OutputStream o)
29+
{
30+
com.sun.corba.se.PortableActivationIDL.ActivatorHelper.write (o, value);
31+
}
32+
33+
public org.omg.CORBA.TypeCode _type ()
34+
{
35+
return com.sun.corba.se.PortableActivationIDL.ActivatorHelper.type ();
36+
}
37+
38+
}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
4+
/**
5+
* com/sun/corba/se/PortableActivationIDL/ActivatorOperations.java .
6+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
7+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8+
* Friday, April 10, 2015 10:49:20 AM PDT
9+
*/
10+
11+
public interface ActivatorOperations
12+
{
13+
14+
/** A new ORB started server registers itself with the Activator
15+
*/
16+
void registerServer (String serverId, com.sun.corba.se.PortableActivationIDL.ServerProxy serverObj) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered;
17+
18+
/** A server is shutting down that was started by this activator.
19+
* Complete termination of the server is detected by the death of the
20+
* process implementing the server.
21+
*/
22+
void serverGoingDown (String serverId);
23+
24+
/** Called whenever an ORB instance is created. This registers
25+
* the transport endpoints and the ORB proxy callback object.
26+
* Note that we cannot detect when an ORB shuts down, although
27+
* all of the POA shutdowns should still be reported.
28+
*/
29+
void registerORB (String serverId, String orbId, com.sun.corba.se.PortableActivationIDL.ORBProxy orb, com.sun.corba.se.PortableActivationIDL.EndPointInfo[] endPointInfo) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.NoSuchEndPoint, com.sun.corba.se.PortableActivationIDL.ORBAlreadyRegistered;
30+
31+
/** Construct or find an ORBD object template corresponding to the
32+
* server's object template and return it. Called whenever a
33+
* persistent POA is created.
34+
*/
35+
org.omg.PortableInterceptor.ObjectReferenceTemplate registerPOA (String serverId, String orbId, org.omg.PortableInterceptor.ObjectReferenceTemplate poaTemplate);
36+
37+
/** Called whenever a POA is destroyed.
38+
*/
39+
void poaDestroyed (String serverId, String orbId, org.omg.PortableInterceptor.ObjectReferenceTemplate poaTemplate);
40+
41+
/** If the server is not running, start it up. This is allowed
42+
* whether or not the server has been installed.
43+
*/
44+
void activate (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerAlreadyActive, com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.ServerHeldDown;
45+
46+
/** If the server is running, shut it down
47+
*/
48+
void shutdown (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerNotActive, com.sun.corba.se.PortableActivationIDL.ServerNotRegistered;
49+
50+
/** Invoke the server install hook. If the server is not
51+
* currently running, this method will activate it.
52+
*/
53+
void install (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.ServerHeldDown, com.sun.corba.se.PortableActivationIDL.ServerAlreadyInstalled;
54+
55+
/** Invoke the server uninstall hook. If the server is not
56+
* currently running, this method will activate it.
57+
* After this hook completes, the server may still be running.
58+
*/
59+
void uninstall (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.ServerHeldDown, com.sun.corba.se.PortableActivationIDL.ServerAlreadyUninstalled;
60+
61+
/** list active servers
62+
*/
63+
String[] getActiveServers ();
64+
65+
/** list all registered ORBs for a server
66+
*/
67+
String[] getORBNames (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered;
68+
69+
/** Find the server template that corresponds to the ORBD's
70+
* adapter id.
71+
*/
72+
org.omg.PortableInterceptor.ObjectReferenceTemplate lookupPOATemplate (String serverId, String orbId, String[] orbAdapterName);
73+
} // interface ActivatorOperations
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
4+
/**
5+
* com/sun/corba/se/PortableActivationIDL/BadServerDefinition.java .
6+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
7+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8+
* Friday, April 10, 2015 10:49:20 AM PDT
9+
*/
10+
11+
public final class BadServerDefinition extends org.omg.CORBA.UserException
12+
{
13+
public String reason = null;
14+
15+
public BadServerDefinition ()
16+
{
17+
super(BadServerDefinitionHelper.id());
18+
} // ctor
19+
20+
public BadServerDefinition (String _reason)
21+
{
22+
super(BadServerDefinitionHelper.id());
23+
reason = _reason;
24+
} // ctor
25+
26+
27+
public BadServerDefinition (String $reason, String _reason)
28+
{
29+
super(BadServerDefinitionHelper.id() + " " + $reason);
30+
reason = _reason;
31+
} // ctor
32+
33+
} // class BadServerDefinition
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
4+
/**
5+
* com/sun/corba/se/PortableActivationIDL/BadServerDefinitionHelper.java .
6+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
7+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8+
* Friday, April 10, 2015 10:49:20 AM PDT
9+
*/
10+
11+
abstract public class BadServerDefinitionHelper
12+
{
13+
private static String _id = "IDL:PortableActivationIDL/BadServerDefinition:1.0";
14+
15+
public static void insert (org.omg.CORBA.Any a, com.sun.corba.se.PortableActivationIDL.BadServerDefinition that)
16+
{
17+
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
18+
a.type (type ());
19+
write (out, that);
20+
a.read_value (out.create_input_stream (), type ());
21+
}
22+
23+
public static com.sun.corba.se.PortableActivationIDL.BadServerDefinition extract (org.omg.CORBA.Any a)
24+
{
25+
return read (a.create_input_stream ());
26+
}
27+
28+
private static org.omg.CORBA.TypeCode __typeCode = null;
29+
private static boolean __active = false;
30+
synchronized public static org.omg.CORBA.TypeCode type ()
31+
{
32+
if (__typeCode == null)
33+
{
34+
synchronized (org.omg.CORBA.TypeCode.class)
35+
{
36+
if (__typeCode == null)
37+
{
38+
if (__active)
39+
{
40+
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
41+
}
42+
__active = true;
43+
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [1];
44+
org.omg.CORBA.TypeCode _tcOf_members0 = null;
45+
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
46+
_members0[0] = new org.omg.CORBA.StructMember (
47+
"reason",
48+
_tcOf_members0,
49+
null);
50+
__typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (com.sun.corba.se.PortableActivationIDL.BadServerDefinitionHelper.id (), "BadServerDefinition", _members0);
51+
__active = false;
52+
}
53+
}
54+
}
55+
return __typeCode;
56+
}
57+
58+
public static String id ()
59+
{
60+
return _id;
61+
}
62+
63+
public static com.sun.corba.se.PortableActivationIDL.BadServerDefinition read (org.omg.CORBA.portable.InputStream istream)
64+
{
65+
com.sun.corba.se.PortableActivationIDL.BadServerDefinition value = new com.sun.corba.se.PortableActivationIDL.BadServerDefinition ();
66+
// read and discard the repository ID
67+
istream.read_string ();
68+
value.reason = istream.read_string ();
69+
return value;
70+
}
71+
72+
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.corba.se.PortableActivationIDL.BadServerDefinition value)
73+
{
74+
// write the repository ID
75+
ostream.write_string (id ());
76+
ostream.write_string (value.reason);
77+
}
78+
79+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package com.sun.corba.se.PortableActivationIDL;
2+
3+
/**
4+
* com/sun/corba/se/PortableActivationIDL/BadServerDefinitionHolder.java .
5+
* Generated by the IDL-to-Java compiler (portable), version "3.2"
6+
* from /Users/java_re/workspace/8-2-build-macosx-x86_64/jdk8u45/3457/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
7+
* Friday, April 10, 2015 10:49:20 AM PDT
8+
*/
9+
10+
public final class BadServerDefinitionHolder implements org.omg.CORBA.portable.Streamable
11+
{
12+
public com.sun.corba.se.PortableActivationIDL.BadServerDefinition value = null;
13+
14+
public BadServerDefinitionHolder ()
15+
{
16+
}
17+
18+
public BadServerDefinitionHolder (com.sun.corba.se.PortableActivationIDL.BadServerDefinition initialValue)
19+
{
20+
value = initialValue;
21+
}
22+
23+
public void _read (org.omg.CORBA.portable.InputStream i)
24+
{
25+
value = com.sun.corba.se.PortableActivationIDL.BadServerDefinitionHelper.read (i);
26+
}
27+
28+
public void _write (org.omg.CORBA.portable.OutputStream o)
29+
{
30+
com.sun.corba.se.PortableActivationIDL.BadServerDefinitionHelper.write (o, value);
31+
}
32+
33+
public org.omg.CORBA.TypeCode _type ()
34+
{
35+
return com.sun.corba.se.PortableActivationIDL.BadServerDefinitionHelper.type ();
36+
}
37+
38+
}

0 commit comments

Comments
 (0)