jadex.micro.testcases.search.UserAgent 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.search;
import java.util.Collection;
import java.util.Map;
import jadex.base.Starter;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.IExternalAccess;
import jadex.bridge.IInternalAccess;
import jadex.bridge.service.RequiredServiceInfo;
import jadex.bridge.service.component.IRequiredServicesFeature;
import jadex.bridge.service.search.SServiceProvider;
import jadex.bridge.service.types.cms.IComponentManagementService;
import jadex.commons.future.DefaultTuple2ResultListener;
import jadex.commons.future.Future;
import jadex.commons.future.IFuture;
import jadex.micro.annotation.Agent;
import jadex.micro.annotation.AgentCreated;
import jadex.micro.annotation.Binding;
import jadex.micro.annotation.RequiredService;
import jadex.micro.annotation.RequiredServices;
@Agent
@RequiredServices({@RequiredService(name = "testService", type = ITestService.class, multiple = true,
binding = @Binding(scope = RequiredServiceInfo.SCOPE_PLATFORM)) })
public class UserAgent
{
@Agent
protected IInternalAccess agent;
@AgentCreated
public void init()
{
System.out.println("Agent created");
IFuture> fut = agent.getComponentFeature(IRequiredServicesFeature.class).getRequiredServices("testService");
Collection sers = fut.get();
System.out.println("fetched all available services: "+sers.size());
}
public static void main(String[] args)
{
// ThreadSuspendable sus = new ThreadSuspendable();
IExternalAccess plat = Starter.createPlatform(new String[]{"-gui", "false"}).get();
IComponentManagementService cms = SServiceProvider.getService(plat, IComponentManagementService.class, RequiredServiceInfo.SCOPE_PLATFORM).get();
final Future fut = new Future();
final int max = 2500;
final int[] cnt = new int[1];
for(int i=0; i>()
{
public void firstResultAvailable(IComponentIdentifier result)
{
cnt[0]++;
System.out.println("created: "+result+" "+cnt[0]);
if(cnt[0]==max)
{
fut.setResult(null);
}
}
public void secondResultAvailable(Map result)
{
}
public void exceptionOccurred(Exception exception)
{
fut.setExceptionIfUndone(exception);
}
});
}
fut.get();
cms.createComponent(UserAgent.class.getName()+".class", null).get();
}
}