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

org.spongepowered.api.resource.ResourcePath Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of SpongeAPI, licensed under the MIT License (MIT).
 *
 * Copyright (c) SpongePowered 
 * Copyright (c) contributors
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package org.spongepowered.api.resource;

import org.spongepowered.api.ResourceKey;
import org.spongepowered.api.Sponge;
import org.spongepowered.api.resource.pack.PackContents;
import org.spongepowered.plugin.PluginContainer;

import java.util.Optional;

/**
 * A namespaced path object used to get {@link Resource}s from a
 * {@link ResourceManager resource manager} or a {@link PackContents pack contents}
 *
 * @see ResourceKey
 */
public interface ResourcePath extends Comparable {

    /**
     * Creates a resource path.
     *
     * @param namespace The namespace
     * @param path      The path within the supplied namespace
     * @return A new resource path
     * @see ResourceKey#of(String, String)
     */
    static ResourcePath of(final String namespace, final String path) {
        return ResourcePath.of(ResourceKey.of(namespace, path));
    }

    /**
     * Creates a resource path from a plugin container.
     *
     * @param container The plugin container
     * @param path      The path within the supplied namespace
     * @return A new resource path
     * @see ResourceKey#of(PluginContainer, String)
     */
    static ResourcePath of(final PluginContainer container, final String path) {
        return ResourcePath.of(ResourceKey.of(container, path));
    }

    /**
     * Parses a path from a string, generally formatted "namespace:path".
     *
     * 

If no namespace is found in {@code value} then * {@code minecraft} will be the namespace.

* * @param value The value * @return A new resource path * @see ResourceKey#resolve(String) */ static ResourcePath parse(final String value) { return ResourcePath.of(ResourceKey.resolve(value)); } /** * Creates a new path using the given {@link ResourceKey}. * * @param key The key object * @return A new path */ static ResourcePath of(final ResourceKey key) { return Sponge.game().factoryProvider().provide(Factory.class).of(key); } /** * Gets the backing {@link ResourceKey} for this path object. * * @return The key object */ ResourceKey key(); /** * Gets the namespace portion of this resource path. * * @return The namespace * @see ResourceKey#namespace() */ default String namespace() { return this.key().namespace(); } /** * Gets the path portion of this resource path. * * @return The path * @see ResourceKey#value() */ default String path() { return this.key().value(); } // resolution methods /** * @return The parent path or {@link Optional#empty()} if there is none */ Optional parent(); /** * Resolves a path from the current location using the specified children. * * @param first The first child * @param children The rest of the children * @return The resolvedIllegalArgumentException path * @throws IllegalArgumentException If the path is invalid */ ResourcePath resolve(String first, String... children); /** * Resolves a sibling of this path. * * @param sibling The sibling's name * @param children The optional children of the sibling * @return The sibling resource path * @throws IllegalArgumentException If the path is invalid */ ResourcePath resolveSibling(String sibling, String... children); /** * Gets the name of the file without any parent elements. * * @return The file name */ String name(); /** * Gets the base name of the file without any parent elements or extensions. * * @return The base file name */ String baseName(); /** * Gets the extension of the file if any. If the file has no extension, an * empty string is returned. * * @return The file extension */ String extension(); /** * A factory to create {@link ResourcePath}s. */ interface Factory { /** * Creates a new {@link ResourcePath} using the given * {@link ResourceKey}. * * @param key The key object * @return A new path object */ ResourcePath of(ResourceKey key); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy