fix for 80938 a = avm@sparc.spb.su ovk@sparc.spb.su sva@sparc.spb.su Tests for blackConnect git-svn-id: svn://10.0.0.236/trunk@95860 18797224-902f-48f8-a5cc-f745e15eee43
137 lines
4.4 KiB
Java
137 lines
4.4 KiB
Java
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
The contents of this file are subject to the Mozilla Public
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
The Original Code is mozilla.org code.
|
|
|
|
The Initial Developer of the Original Code is Sun Microsystems,
|
|
Inc. Portions created by Sun are
|
|
Copyright (C) 1999 Sun Microsystems, Inc. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Client QA Team, St. Petersburg, Russia
|
|
*/
|
|
|
|
import org.mozilla.xpcom.*;
|
|
import java.lang.reflect.*;
|
|
import java.io.DataOutputStream;
|
|
import java.io.FileOutputStream;
|
|
|
|
|
|
public class MThreadComponent3 implements iMThreadComponent3, iMThreadComponent {
|
|
private iMThreadContext context = null;
|
|
|
|
public MThreadComponent3() {
|
|
System.out.println("DEbug:avm:MThreadComponent3 constructor");
|
|
}
|
|
|
|
|
|
public void initialize(iMThreadContext context) {
|
|
System.out.println("DEbug:avm:MThreadComponent3:initialize Thread is " + Thread.currentThread().getName());
|
|
this.context = context;
|
|
}
|
|
/*
|
|
public void tHack(nsIComponentManager cm, String serverProgID) {
|
|
System.out.println("DEbug:avm:MThreadComponent3:tHack");
|
|
nsIFactory factory = null;
|
|
|
|
if(cm == null) {
|
|
System.out.println("DEbug:avm:ComponentManager is NULL!!!!!");
|
|
return;
|
|
}
|
|
factory = cm.findFactory(J2XINServerCID);
|
|
if(factory == null) {
|
|
System.out.println("DEbug:avm:Factory is NULL!!!!!");
|
|
return;
|
|
}
|
|
Object res = factory.createInstance(null, iJ2XINServerIID);
|
|
if(res == null) {
|
|
System.out.println("DEbug:avm:Instance is NULL!!!!!");
|
|
return;
|
|
}
|
|
server = (iJ2XINServerTestComponent)res;
|
|
if(server == null) {
|
|
System.err.println("Create instance failed!! Server is NULLLLLLLLLLLLLLLLLLL");
|
|
return;
|
|
}
|
|
String[] s = new String[1];
|
|
String[] s1 = new String[1];
|
|
server.getTestLocation(s,s1);
|
|
testLocation = s[0];
|
|
logLocation = s1[0];
|
|
|
|
}
|
|
*/
|
|
|
|
/* void Execute (); */
|
|
public void execute(String tName) {
|
|
System.out.println("DEbug:avm:MThreadComponent3:execute");
|
|
String cThreadName = Thread.currentThread().getName();
|
|
if(tName.equals(cThreadName)) {
|
|
System.out.println("PASSED: original and expected names equals to " + tName);
|
|
} else {
|
|
System.out.println("FAILED: Current thread name is " + cThreadName + " instead of " + tName );
|
|
}
|
|
CID classID = new CID(context.getNext());
|
|
iMThreadComponent component = loadComponent(classID);
|
|
if(component == null) {
|
|
System.out.println("Can't load component");
|
|
return;
|
|
}
|
|
component.initialize(context);
|
|
(new ExecutionThread(component)).run();
|
|
|
|
}
|
|
public iMThreadComponent loadComponent(CID classID) {
|
|
System.out.println("DEbug:avm:MThreadComponent1:loadComponent");
|
|
nsIComponentManager cm = context.getComponentManager();
|
|
nsIFactory factory = cm.findFactory(classID);
|
|
if(factory == null) {
|
|
System.out.println("DEbug:avm:Factory is NULL!!!!!");
|
|
return null;
|
|
}
|
|
iMThreadComponent component = (iMThreadComponent)factory.createInstance(null, iMThreadComponent.IID);
|
|
return component;
|
|
}
|
|
public Object queryInterface(IID iid) {
|
|
System.out.println("DEbug:avm:MThreadComponent3::queryInterface iid="+iid);
|
|
if ( iid.equals(nsISupports.IID)
|
|
|| iid.equals(iMThreadComponent3.IID)||iid.equals(iMThreadComponent.IID)) {
|
|
return this;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
static CID J2XINServerCID = new CID("1ddc5b10-9852-11d4-aa22-00a024a8bbac");
|
|
static {
|
|
try {
|
|
Class nsIComponentManagerClass =
|
|
Class.forName("org.mozilla.xpcom.nsIComponentManager");
|
|
InterfaceRegistry.register(nsIComponentManagerClass);
|
|
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
} catch (Error e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|