CloneWorkflowOperationHandler.java
/*
* Licensed to The Apereo Foundation under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
*
* The Apereo Foundation licenses this file to you under the Educational
* Community 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://opensource.org/licenses/ecl2.txt
*
* 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.
*
*/
package org.opencastproject.workflow.handler.workflow;
import org.opencastproject.job.api.JobContext;
import org.opencastproject.mediapackage.MediaPackage;
import org.opencastproject.mediapackage.MediaPackageElement;
import org.opencastproject.mediapackage.MediaPackageElementFlavor;
import org.opencastproject.mediapackage.selector.AbstractMediaPackageElementSelector;
import org.opencastproject.mediapackage.selector.SimpleElementSelector;
import org.opencastproject.serviceregistry.api.ServiceRegistry;
import org.opencastproject.util.NotFoundException;
import org.opencastproject.workflow.api.AbstractWorkflowOperationHandler;
import org.opencastproject.workflow.api.ConfiguredTagsAndFlavors;
import org.opencastproject.workflow.api.WorkflowInstance;
import org.opencastproject.workflow.api.WorkflowOperationException;
import org.opencastproject.workflow.api.WorkflowOperationHandler;
import org.opencastproject.workflow.api.WorkflowOperationInstance;
import org.opencastproject.workflow.api.WorkflowOperationResult;
import org.opencastproject.workflow.api.WorkflowOperationResult.Action;
import org.opencastproject.workspace.api.Workspace;
import org.apache.commons.lang3.StringUtils;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.Collection;
import java.util.List;
/**
* Workflow operation handler for cloning tracks from a flavor
*/
@Component(
immediate = true,
service = WorkflowOperationHandler.class,
property = {
"service.description=Clone Workflow Operation Handler",
"workflow.operation=clone"
}
)
public class CloneWorkflowOperationHandler extends AbstractWorkflowOperationHandler {
/** Configuration key for the \"source-flavor\" of the track to use as a source input */
public static final String OPT_SOURCE_FLAVOR = "source-flavor";
/** Configuration key for the \"source-tag\" of the track to use as a source input */
public static final String OPT_SOURCE_TAGS = "source-tags";
/** Configuration key for the target-flavor */
public static final String OPT_TARGET_FLAVOR = "target-flavor";
/** The logging facility */
private static final Logger logger = LoggerFactory.getLogger(CloneWorkflowOperationHandler.class);
/**
* Callback for the OSGi environment to set the workspace reference.
*
* @param workspace
* the workspace
*/
@Reference
protected void setWorkspace(Workspace workspace) {
this.workspace = workspace;
}
/**
* {@inheritDoc}
*/
@Override
public WorkflowOperationResult start(WorkflowInstance workflowInstance, JobContext context)
throws WorkflowOperationException {
logger.debug("Running clone workflow operation on workflow {}", workflowInstance.getId());
MediaPackage mediaPackage = workflowInstance.getMediaPackage();
WorkflowOperationInstance currentOperation = workflowInstance.getCurrentOperation();
// Check which tags have been configured
ConfiguredTagsAndFlavors tagsAndFlavors = getTagsAndFlavors(workflowInstance,
Configuration.many, Configuration.many, Configuration.none, Configuration.one);
List<String> sourceTagsOption = tagsAndFlavors.getSrcTags();
List<MediaPackageElementFlavor> sourceFlavorOptionList = tagsAndFlavors.getSrcFlavors();
String targetFlavorOption = StringUtils.trimToNull(currentOperation.getConfiguration(OPT_TARGET_FLAVOR));
AbstractMediaPackageElementSelector<MediaPackageElement> elementSelector = new SimpleElementSelector();
// Make sure either one of tags or flavors are provided
if (sourceTagsOption.isEmpty() && sourceFlavorOptionList.isEmpty()) {
logger.info("No source tags or flavors have been specified, not matching anything. Operation will be skipped.");
return createResult(mediaPackage, Action.SKIP);
}
// if no source-favor is specified, all flavors will be checked for given tags
MediaPackageElementFlavor sourceFlavorOption;
if (sourceFlavorOptionList.isEmpty()) {
sourceFlavorOption = new MediaPackageElementFlavor("*","*");
} else {
sourceFlavorOption = sourceFlavorOptionList.get(0);
}
StringBuilder sb = new StringBuilder();
sb.append("Parameters passed to clone workflow operation:");
sb.append("\n source-tags: ").append(sourceTagsOption);
sb.append("\n source-flavor: ").append(sourceFlavorOption);
sb.append("\n target-flavor: ").append(targetFlavorOption);
logger.debug(sb.toString());
// Select the source flavors
MediaPackageElementFlavor sourceFlavor = sourceFlavorOption;
elementSelector.addFlavor(sourceFlavor);
// Select the source tags
for (String tag : sourceTagsOption) {
elementSelector.addTag(tag);
}
// Look for elements matching the tags and the flavor
Collection<MediaPackageElement> elements = elementSelector.select(mediaPackage, true);
// Check the number of element returned
if (elements.size() == 0) {
// If no one found, we skip the operation
logger.debug("No matching elements found, skipping operation.");
return createResult(mediaPackage, Action.SKIP);
} else {
logger.debug("Copy " + elements.size() + " elements to new flavor: {}", targetFlavorOption);
MediaPackageElementFlavor targetFlavor = MediaPackageElementFlavor.parseFlavor(targetFlavorOption);
for (MediaPackageElement element : elements) {
// apply the target flavor to the element
MediaPackageElementFlavor flavor = targetFlavor.applyTo(element.getFlavor());
// Copy element and set new flavor
MediaPackageElement newElement = copyElement(element);
newElement.setFlavor(flavor);
mediaPackage.add(newElement);
}
}
return createResult(mediaPackage, Action.CONTINUE);
}
private MediaPackageElement copyElement(MediaPackageElement element) throws WorkflowOperationException {
MediaPackageElement derivedElement;
String sourceFilePath = null;
String derivedFilePath;
try {
derivedElement = createDerivedMediaPackageElementFrom(element);
sourceFilePath = workspace.get(element.getURI()).getPath();
derivedFilePath = workspace.get(derivedElement.getURI()).getPath();
logger.debug("Element {} copied to target {}.", sourceFilePath, derivedFilePath);
} catch (IOException e) {
throw new WorkflowOperationException("Unable to copy " + sourceFilePath, e);
} catch (NotFoundException e) {
throw new WorkflowOperationException("Unable to find " + element.getURI() + " in the workspace", e);
}
return derivedElement;
}
@Reference
@Override
public void setServiceRegistry(ServiceRegistry serviceRegistry) {
super.setServiceRegistry(serviceRegistry);
}
}