/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id$ */ package org.eclipse.ecr.runtime.util; import java.io.File; import java.net.URL; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.eclipse.ecr.runtime.AbstractRuntimeService; import org.eclipse.ecr.runtime.Version; import org.eclipse.ecr.runtime.model.impl.DefaultRuntimeContext; /** * A runtime service used for JUnit tests. * <p> * The Test Runtime has only one virtual bundle. * * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public class SimpleRuntime extends AbstractRuntimeService { private static final Log log = LogFactory.getLog(SimpleRuntime.class); public static final String NAME = "Simple Runtime"; public static final Version VERSION = Version.parseString("1.0.0"); static int counter = 0; public SimpleRuntime() { this((File) null); try { workingDir = File.createTempFile("NXTestFramework", generateId()); workingDir.delete(); } catch (Exception e) { log.error(e, e); } } public SimpleRuntime(String home) { this(new File(home)); } public SimpleRuntime(File workingDir) { super(new DefaultRuntimeContext()); this.workingDir = workingDir; } @Override public String getName() { return NAME; } @Override public Version getVersion() { return VERSION; } private static synchronized String generateId() { long stamp = System.currentTimeMillis(); counter++; return Long.toHexString(stamp) + '-' + System.identityHashCode(System.class) + '.' + counter; } public void deploy(URL url) throws Exception { context.deploy(url); } public void undeploy(URL url) throws Exception { context.undeploy(url); } @Override public void reloadProperties() throws Exception { throw new UnsupportedOperationException("Not yet implemented"); } }