jadex.micro.testcases.semiautomatic.remoteservice.StartScenario Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-micro Show documentation
Show all versions of jadex-applications-micro Show documentation
The Jadex micro applications package contains several example applications, benchmarks and testcases using micro agents.
package jadex.micro.testcases.semiautomatic.remoteservice;
import java.util.Collection;
import jadex.base.Starter;
import jadex.bridge.ComponentIdentifier;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.IExternalAccess;
import jadex.bridge.service.RequiredServiceInfo;
import jadex.bridge.service.search.SServiceProvider;
import jadex.bridge.service.types.cms.CreationInfo;
import jadex.bridge.service.types.cms.IComponentManagementService;
import jadex.commons.SUtil;
import jadex.commons.Tuple2;
import jadex.commons.future.DefaultResultListener;
import jadex.commons.future.Future;
import jadex.commons.future.IFuture;
/**
* Start two Jadex platforms and one agent on each platform.
* On the 'remote' platform the 'math' agent is created, which offers an
* IMathService interface via its service provider.
* On the 'local' platform the 'user' agent is created, which fetches the
* add service via the remote management service (by knowing the remote platform name/address).
*/
public class StartScenario
{
/**
* Main for starting hello world agent.
*/
public static void main(String[] args)
{
startScenario(null);
}
/**
* Start the scenario.
*/
public static IFuture startScenario(final String[] libpaths)
{
final Future ret = new Future();
String[] defargs = new String[]{"-platformname", "local", "-tcpport", "10000", "-niotcpport", "10001", "-printpass", "false", "-networkname", "abc"};
Starter.createPlatform(createArguments(defargs, libpaths))
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(final IExternalAccess lplat)
{
String[] defargs = new String[]{"-platformname", "remote", "-tcpport", "11000", "-niotcpport", "11001", "-printpass", "false", "-networkname", "abc"};
Starter.createPlatform(createArguments(defargs, libpaths))
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(final IExternalAccess rplat)
{
SServiceProvider.getService(lplat, IComponentManagementService.class, RequiredServiceInfo.SCOPE_PLATFORM)
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(final IComponentManagementService lcms)
{
SServiceProvider.getService(rplat, IComponentManagementService.class, RequiredServiceInfo.SCOPE_PLATFORM)
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(final IComponentManagementService rcms)
{
rcms.createComponent("math", "jadex.micro.testcases.semiautomatic.remoteservice.MathAgent.class", null, null)
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(IComponentIdentifier result)
{
// System.out.println("started remote: "+result);
IComponentIdentifier rrms = new ComponentIdentifier("rms@remote",
new String[]{"tcp-mtp://127.0.0.1:11000", "nio-mtp://127.0.0.1:11001"});
lcms.createComponent("proxy", "jadex.platform.service.remote.ProxyAgent.class",
new CreationInfo(SUtil.createHashMap(new String[]{"component"}, new Object[]{rrms})), null)
.addResultListener(new DefaultResultListener()
{
public void resultAvailable(IComponentIdentifier result)
{
lcms.createComponent("user", "jadex.micro.testcases.semiautomatic.remoteservice.UserAgent.class", null, new DefaultResultListener>>()
{
public void resultAvailable(Collection> res)
{
//System.out.println("killed local user: "+result);
ret.setResult(new IExternalAccess[]{lplat, rplat});
}
});
}
});
}
});
}
});
}
});
}
});
}
});
return ret;
}
/**
* Merge arguments.
*/
public static String[] createArguments(String[] defargs, String[] libpaths)
{
String[] args = defargs;
if(libpaths!=null)
{
args = new String[defargs.length+2];
System.arraycopy(defargs, 0, args, 0, defargs.length);
StringBuffer lib = new StringBuffer();
lib.append("new String[]{");
for(int i=0; i