Some cleanup, and update to new mozilla source. In particular:

- Removed #if 0 code in genproxy.c and elsewhere.

- Used jlong_* macros for portability (and defined in xpjava.h if not
  elsewhere)

- Commented out calls to PR_Atomic{In,De}crement in JSSample.cpp, and began
  to use "official" XPCOM macros.

- Removed Java interfaces for test components; will be autogenerated by
  xpidl and/or genproxy.

- Extend genproxy to generate interfaces.

- Updated README with note on the jni.h problem


git-svn-id: svn://10.0.0.236/trunk@47409 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
frankm%eng.sun.com
1999-09-14 21:56:19 +00:00
parent 1cab9bd0db
commit 4f6fb60c68
12 changed files with 286 additions and 1036 deletions

View File

@@ -13,11 +13,10 @@
*/
import java.util.Vector;
import java.lang.reflect.Method;
import org.mozilla.xpcom.*;
public class XPCTest {
private static boolean didRegister = false;
static ComObject CreateSampleInstance() {
nsID kSampleCID =
new nsID("d3944dd0-ae1a-11d1-b66c-00805f8a2676");
@@ -26,16 +25,7 @@ public class XPCTest {
new nsID("57ecad90-ae1a-11d1-b66c-00805f8a2676");
if (!didRegister) {
XPComUtilities.RegisterComponent(kSampleCID,
"JSSample",
"component://javasoft/sample",
"libsample.so",
false,
false);
didRegister = true;
}
// XXX: convert to nsIComponentManager calls
return (ComObject)XPComUtilities.CreateInstance(kSampleCID,
null,
kISampleIID);
@@ -44,13 +34,9 @@ public class XPCTest {
public static void main(String[] argv) {
String command = "PrintStats";
int cmdOffset = -1;
boolean useXPCMethod = true;
try {
// KLUDGE: load libraries
//System.out.println(System.getProperty("java.library.path"));
//System.loadLibrary("plds3");
//System.loadLibrary("xpcom");
Object[] params = null;
// Process arguments
@@ -58,12 +44,25 @@ public class XPCTest {
params = new Object[0];
}
else {
command = argv[0];
int argi = 0;
while (argv[argi].charAt(0) == '-') {
switch(argv[argi].charAt(1)) {
case 'r':
useXPCMethod = false;
break;
case 'x':
useXPCMethod = true;
break;
}
argi++;
}
command = argv[argi++];
if (Character.isDigit(command.charAt(0))) {
cmdOffset = Integer.parseInt(command);
}
params = paramArray(argv, 1);
params = paramArray(argv, argi);
}
ComObject sample = CreateSampleInstance();
@@ -83,11 +82,24 @@ public class XPCTest {
cmdOffset,
params);
}
else {
else if (useXPCMethod) {
XPCMethod method = new XPCMethod(kISampleIID, command);
method.invoke(sample, params);
}
else {
Method[] methods = sample.getClass().getMethods();
for (int i = 0; i < methods.length; i++) {
if (methods[i].getName().equals(command)) {
Object retval =
methods[i].invoke(sample, params);
System.out.print("Retval: "); // DEBUG
System.out.println(retval); // DEBUG
break;
}
}
}
// Get "out" parameters and return value
System.out.print("Results: "); // DEBUG
@@ -160,6 +172,10 @@ public class XPCTest {
case '0':
vector.addElement(null);
break;
case '@':
argi++;
vector.addElement(new nsID(argv[argi]));
break;
case 'z':
argi++;
vector.addElement(Boolean.valueOf(argv[argi]));