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

org.jboss.modules.ModuleXmlUtil Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2014 Red Hat, Inc., and individual contributors
 * as indicated by the @author tags.
 *
 * 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.modules;

import java.io.File;

/**
 * Utility class for default module file names.
 * 

* Date: 10.05.2011 * * @author James R. Perkins */ class ModuleXmlUtil { public static final String DEFAULT_FILENAME = "module.xml"; /** * Private constructor. */ private ModuleXmlUtil() { } /** * Creates a file based on the directory and the module identifier. *

* The {@code dir} parameter must be a directory and the {@code identifier} cannot be {@code null}. * * @param dir the base directory where the file should be located. * @param identifier the module identifier. * * @return the module XML file. * @throws IllegalArgumentException if the {@code dir} parameter is not a directory or an argument is {@code null}. */ public static File toFile(final File dir, final ModuleIdentifier identifier) { return toFile(dir, DEFAULT_FILENAME, identifier); } /** * Creates a file based on the directory and the module identifier. *

* The {@code dir} parameter must be a directory and the {@code identifier} cannot be {@code null}. * * @param dir the base directory where the file should be located. * @param name the name of the XML file. * @param identifier the module identifier. * * @return the module XML file. * @throws IllegalArgumentException if the {@code dir} parameter is not a directory or an argument is {@code null}. */ public static File toFile(final File dir, final String name, final ModuleIdentifier identifier) { if (dir == null || !dir.isDirectory()) { throw new IllegalArgumentException(String.format("Must be a directory. File %s is not a directory.", dir)); } if (name == null || name.isEmpty()) { throw new IllegalArgumentException("The name cannot be empty."); } if (identifier == null) { throw new IllegalArgumentException("The module identifier cannot be null."); } return new File(dir, baseFilename(name, identifier)); } /** * Creates a path name from the module identifier. The name always ends with the separator character. *

* A {@code null} identifier will result in no separator being used. * * @param identifier the module identifier. * @param separator the directory separator. * * @return a path name of the module identifier. * @throws IllegalArgumentException if the module identifier is {@code null}. */ public static String baseDirectory(final ModuleIdentifier identifier, final String separator) { if (identifier == null) { throw new IllegalArgumentException("The module identifier cannot be null."); } final String namePath = identifier.getName().replace('.', File.separatorChar); final StringBuilder baseName = new StringBuilder(); baseName.append(namePath). append((separator == null ? "" : separator)). append(identifier.getSlot()). append((separator == null ? "" : separator)); return baseName.toString(); } /** * Creates a path name from the module identifier with the default {@link java.io.File#separator} character. * * @param identifier the module identifier. * * @return a path name of the module identifier. * @throws IllegalArgumentException if the module identifier is {@code null}. * @see #baseDirectory(ModuleIdentifier, String) */ public static String baseDirectory(final ModuleIdentifier identifier) { return baseDirectory(identifier, File.separator); } /** * Creates a path name to the module XML file from the module identifier. Uses the {@link #DEFAULT_FILENAME} for * the XML file name. * * @param identifier the module identifier. * * @return a path name to the module XML file. * @throws IllegalArgumentException if the module identifier is {@code null}. */ public static String baseFilename(final ModuleIdentifier identifier) { return baseFilename(DEFAULT_FILENAME, identifier); } /** * Creates a path name to the module XML file from the module identifier. * * @param name the XML file name. * @param identifier the module identifier. * * @return a path name to the module XML file. * @throws IllegalArgumentException if the module identifier is {@code null}. */ public static String baseFilename(final String name, final ModuleIdentifier identifier) { return baseDirectory(identifier) + name; } /** * Creates a path name to the module XML * * @param name the XML file name. file from the module identifier. * @param separator the directory separator. * @param identifier the module identifier. * * @return a path name to the module XML file. * @throws IllegalArgumentException if the module identifier is {@code null}. */ public static String baseFilename(final String name, final String separator, final ModuleIdentifier identifier) { return baseDirectory(identifier, separator) + name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy