blob: 23bae0547805169e11d175d0ac7eafb24e079bf7 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2012 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ote.rest.client.internal;
import java.io.File;
import java.net.URI;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.ThreadFactory;
import org.eclipse.osee.framework.core.JaxRsApi;
import org.eclipse.osee.ote.rest.client.OTECacheItem;
import org.eclipse.osee.ote.rest.client.OteClient;
import org.eclipse.osee.ote.rest.client.Progress;
import org.eclipse.osee.ote.rest.client.ProgressWithCancel;
import org.eclipse.osee.ote.rest.model.OTEConfiguration;
import org.eclipse.osee.ote.rest.model.OTETestRun;
/**
* @author Andrew M. Finkbeiner
*/
public class OteClientImpl implements OteClient {
private ExecutorService executor;
private volatile JaxRsApi jaxRsApi;
public void bindJaxRsApi(JaxRsApi jaxRsApi) {
this.jaxRsApi = jaxRsApi;
}
public void start(Map<String, Object> props) {
executor = Executors.newCachedThreadPool(new ThreadFactory() {
@Override
public Thread newThread(Runnable arg0) {
Thread th = new Thread(arg0);
th.setName("OTE Client " + th.getId());
th.setDaemon(true);
return th;
}
});
}
public void stop() {
if (executor != null) {
executor.shutdown();
}
jaxRsApi = null;
}
@Override
public Future<Progress> getFile(URI uri, File destination, String filePath, final Progress progress) {
return executor.submit(new GetOteServerFile(uri, destination, filePath, progress, jaxRsApi));
}
@Override
public Future<Progress> configureServerEnvironment(URI uri, List<File> jars, final Progress progress) {
return executor.submit(new ConfigureOteServer(uri, jars, progress, jaxRsApi));
}
@Override
public Future<Progress> updateServerJarCache(URI uri, String baseJarURL, List<OTECacheItem> jars, Progress progress) {
return executor.submit(new PrepareOteServerFile(uri, baseJarURL, jars, progress, jaxRsApi));
}
@Override
public Future<ProgressWithCancel> runTest(URI uri, OTETestRun tests, Progress progress) {
return executor.submit(new RunTests(uri, tests, progress, jaxRsApi));
}
@Override
public Future<Progress> configureServerEnvironment(URI uri, OTEConfiguration configuration, Progress progress) {
return executor.submit(new ConfigureOteServer(uri, configuration, progress, jaxRsApi));
}
}