/*
 * JBoss, Home of Professional Open Source
 * Copyright 2009, Red Hat Middleware LLC, and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * Licensed 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.
 */
package org.jboss.shrinkwrap.impl.base.exporter;

import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePath;
import org.jboss.shrinkwrap.api.ArchivePaths;
import org.jboss.shrinkwrap.api.Node;

AbstractExporterDelegate Abstract delegate used for archive export. Provides a template for exporters for handling archive contents.
Author:John Bailey
Version:$Revision: $
/** * AbstractExporterDelegate * * Abstract delegate used for archive export. Provides a template for exporters for handling archive contents. * * @author <a href="mailto:baileyje@gmail.com">John Bailey</a> * @version $Revision: $ */
public abstract class AbstractExporterDelegate<T> { // -------------------------------------------------------------------------------------|| // Class Members ----------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Logger
/** * Logger */
private static final Logger log = Logger.getLogger(AbstractExporterDelegate.class.getName()); // -------------------------------------------------------------------------------------|| // Instance Members -------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
The archive being exported
/** * The archive being exported */
private final Archive<?> archive; // -------------------------------------------------------------------------------------|| // Constructor ------------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Creates a new abstract exporter delegate for the provided Archive
/** * Creates a new abstract exporter delegate for the provided {@link Archive} */
protected AbstractExporterDelegate(Archive<?> archive) { super(); this.archive = archive; }
Runs the export operation, returning the result
Returns:
/** * Runs the export operation, returning the result * * @return */
public final T export() { // Perform the actual export this.doExport(); // Return the result return this.getResult(); }
Primary method providing a template for exporting the contents of an archive
/** * Primary method providing a template for exporting the contents of an archive */
protected void doExport() { // Get archive final Archive<?> archive = getArchive(); if (log.isLoggable(Level.FINE)) { log.fine("Exporting archive - " + archive.getName()); } // Obtain the root final Node rootNode = archive.get(ArchivePaths.root()); // Recursively process the root children for (Node child : rootNode.getChildren()) { processNode(child); } }
Recursive call to process all the node hierarchy
Params:
  • node –
/** * Recursive call to process all the node hierarchy * * @param node */
private void processNode(final Node node) { processNode(node.getPath(), node); Set<Node> children = node.getChildren(); for (Node child : children) { processNode(child); } } // -------------------------------------------------------------------------------------|| // Contracts --------------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Template method for processing a single node.
Params:
  • path –
  • node –
/** * Template method for processing a single node. * * @param path * @param node */
protected abstract void processNode(ArchivePath path, Node node);
Return the results of the export. Should process any tasks required to finalize the export.
Returns:
/** * Return the results of the export. Should process any tasks required to finalize the export. * * @return */
protected abstract T getResult(); // -------------------------------------------------------------------------------------|| // Internal Helper Methods ------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Return the archive being exported
Returns:
/** * Return the archive being exported * * @return */
protected Archive<?> getArchive() { return archive; } }