All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.izforge.izpack.util.config.SingleXmlFileMergeTask Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
/*
 * IzPack - Copyright 2001-2010 Julien Ponge, All Rights Reserved.
 *
 * http://izpack.org/
 * http://izpack.codehaus.org/
 *
 * Copyright 2005,2009 Ivan SZKIBA
 * Copyright 2010,2011 Rene Krell
 *
 * 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 com.izforge.izpack.util.config;

import java.io.*;
import java.util.*;

import com.izforge.izpack.util.Debug;
import com.izforge.izpack.util.file.DirectoryScanner;
import com.izforge.izpack.util.file.types.FileSet;
import com.izforge.izpack.util.xmlmerge.*;
import com.izforge.izpack.util.xmlmerge.config.*;

public class SingleXmlFileMergeTask implements ConfigurableTask {

    protected File origfile;
    protected File patchfile;
    protected File tofile;
    protected File conffile;
    protected boolean cleanup;

    protected Properties confProps = new Properties();


    public void setOriginalFile(File origfile)
    {
        this.origfile = origfile;
    }


    public void setPatchFile(File patchfile)
    {
        this.patchfile = patchfile;
    }


    public void setToFile(File tofile)
    {
        this.tofile = tofile;
    }

    public void setConfigFile(File confFile)
    {
        this.conffile = confFile;
    }

    /**
     * Whether to delete the patchfiles after the operation
     * @param cleanup True, if the patchfiles should be deleted after the operation
     */
    public void setCleanup(boolean cleanup)
    {
        this.cleanup = cleanup;
    }

    /**
    * List of file sets.
    */
    List filesets = new ArrayList();

    /**
    * Adds a file set.
    * @param fileset The file set to add
    */
    public void addFileSet(FileSet fileset) {
        filesets.add(fileset);
    }

    /**
     * Adds a XML merge configuration property (XPath)
     * @param key The property key
     * @param value The property value
     */
    public void addProperty(String key, String value) {
        confProps.setProperty(key, value);
    }

    /**
    * Validates the configuration and destination files and the file sets.
    */
    public void validate() throws Exception {
        if (tofile == null) {
            throw new Exception("XML merge output file not set");
        }
        if (filesets.isEmpty() && patchfile == null) {
            throw new Exception("No XML merge patch files given at all");
        }
        if (origfile == null) {
            throw new Exception("No XML merge patch files given at all");
        }
        if (!confProps.isEmpty() && conffile != null) {
            throw new Exception("Using both XML merge configuration file and explicit merge properties not allowed");
        }
    }

    public void execute() throws Exception {
        validate();

        // Get the files to merge
        LinkedList filesToMerge = new LinkedList();

        if (origfile != null)
        {
            if (origfile.exists())
            {
                filesToMerge.add(origfile);
            }
            else
            {
                Debug.log("XML merge skipped, target file "+origfile+" not found");
                return;
            }
        }
        else
        {
            Debug.log("XML merge skipped, target file not defined");
            return;
        }

        if (patchfile != null && patchfile.exists())
            filesToMerge.add(patchfile);

        for (FileSet fs : filesets) {
            DirectoryScanner ds = fs.getDirectoryScanner();
            String[] includedFiles = ds.getIncludedFiles();
            for (String includedFile : includedFiles)
            {
                filesToMerge.add(new File(ds.getBasedir(), includedFile));
            }
        }

        if (filesToMerge.size() < 2)
        {
            Debug.log("XML merge skipped, not enough XML input files to merge");
            return;
        }

        if (conffile != null) {
            InputStream configIn = null;
            try {
                configIn = new FileInputStream(conffile);
                confProps.load(configIn);
            } catch (IOException e) {
                throw new Exception(e);
            } finally {
                if (configIn != null) {
                    try {
                        configIn.close();
                    } catch (IOException e) {
                        Debug.log(
                            "Error closing file '" + conffile + "': " + e.getMessage());
                    }
                }
            }
        }

        // Create the XmlMerge instance and execute the merge
        XmlMerge xmlMerge;
        try {
            xmlMerge = new ConfigurableXmlMerge(new PropertyXPathConfigurer(confProps));
        } catch (ConfigurationException e) {
            throw new Exception(e);
        }

        try {
            xmlMerge.merge(filesToMerge.toArray(new File[filesToMerge.size()]), tofile);
        } catch (AbstractXmlMergeException e) {
            throw new Exception(e);
        }

        if (cleanup)
        {
            for (File file : filesToMerge)
            {
                if (file.exists() && !file.equals(tofile))
                {
                    if (!file.delete())
                    {
                        Debug.log("File " + file + " could not be cleant up");
                    }
                }
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy