package eu.europeana.cloud.client.uis.rest.console.commands.tests; import java.io.File; import java.io.IOException; import java.util.Date; import java.util.List; import javax.naming.directory.InvalidAttributesException; import org.apache.commons.io.FileUtils; import eu.europeana.cloud.client.uis.rest.CloudException; import eu.europeana.cloud.client.uis.rest.UISClient; import eu.europeana.cloud.client.uis.rest.console.commands.Command; import eu.europeana.cloud.common.model.CloudId; /** * Terst retrieve cloyd id with no pagination * * @author Yorgos.Mamakis@ kb.nl * @since Dec 17, 2013 */ public class TestRetrieveCloudIdNoPaginationCommand extends Command { @Override public void execute(UISClient client, int threadNo,String... input) throws InvalidAttributesException { try { List<String> ids = FileUtils.readLines(new File(input[0])); Date now = new Date(); System.out.println("Starting test at: " + now.toString()); String[] columns = ids.get(0).split(" "); List<CloudId> cloudIds = client.getCloudIdsByProvider(columns[1]).getResults(); long end = new Date().getTime()-now.getTime(); System.out.println("Fetching "+ cloudIds.size()+" records took " + end + " ms"); System.out.println("Average: " + (cloudIds.size()/end) *1000 +" records per second"); } catch (IOException | CloudException e) { getLogger().error(e.getMessage()); } } }