blob: d92841460b619e3737639b0e181d66ea6b03c3af [file] [log] [blame]
package org.apache.taverna.scufl2.translator.t2flow.defaultactivities;
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
import static java.net.URI.create;
import static org.apache.taverna.scufl2.translator.t2flow.T2FlowParser.ravenURI;
import java.net.URI;
import org.apache.taverna.scufl2.api.configurations.Configuration;
import org.apache.taverna.scufl2.api.io.ReaderException;
import org.apache.taverna.scufl2.translator.t2flow.ParserState;
import org.apache.taverna.scufl2.translator.t2flow.T2FlowParser;
import org.apache.taverna.scufl2.xml.t2flow.jaxb.ComponentConfig;
import org.apache.taverna.scufl2.xml.t2flow.jaxb.ConfigBean;
import com.fasterxml.jackson.databind.node.ObjectNode;
public class ComponentActivityParser extends AbstractActivityParser {
private static URI activityRavenURI = ravenURI
.resolve("net.sf.taverna.t2.component/component-activity/");
private static String activityClassName = "net.sf.taverna.t2.component.ComponentActivity";
public static URI ACTIVITY_URI = create("http://ns.taverna.org.uk/2010/activity/component");
@Override
public boolean canHandlePlugin(URI activityURI) {
String activityUriStr = activityURI.toASCIIString();
return activityUriStr.startsWith(activityRavenURI.toASCIIString())
&& activityUriStr.endsWith(activityClassName);
}
@Override
public URI mapT2flowRavenIdToScufl2URI(URI t2flowActivity) {
return ACTIVITY_URI;
}
@Override
public Configuration parseConfiguration(T2FlowParser t2FlowParser,
ConfigBean configBean, ParserState parserState)
throws ReaderException {
ComponentConfig config = unmarshallConfig(t2FlowParser, configBean,
"xstream", ComponentConfig.class);
Configuration configuration = new Configuration();
configuration.setParent(parserState.getCurrentProfile());
ObjectNode json = (ObjectNode) configuration.getJson();
configuration.setType(ACTIVITY_URI.resolve("#Config"));
json.put("registryBase", config.getRegistryBase());
json.put("familyName", config.getFamilyName());
json.put("componentName", config.getComponentName());
if (config.getComponentVersion() != null)
json.put("componentVersion", (int) config.getComponentVersion());
return configuration;
}
}