eo-maven-plugin/src/main/java/org/eolang/maven/objectionary/OyFilesystem.java

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2016-2024 Objectionary.com
 *
 * 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 NON-INFRINGEMENT. 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.eolang.maven.objectionary;

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.cactoos.Input;
import org.cactoos.io.InputOf;

/**
 * Objectionary stored locally in the filesystem.
 * The aim of this class is to download object sources directly from the filesystem, for example,
 * from the project itself. It is useful for testing purposes.
 * The difference with {@link OyHome} is that OyHome downloads object sources from the shared cash
 * folder, and OyFilesystemSources downloads object sources from the particular project folder -
 * from the source code of the project itself.
 *
 * @since 0.30
 */
public final class OyFilesystem implements Objectionary {

    /**
     * Default subfolder in the root where to look for object sources.
     */
    static final String SOURCES = "src/main/eo";

    /**
     * Root where to look for object sources.
     */
    private final Path home;

    /**
     * Constructor.
     */
    public OyFilesystem() {
        this(OyFilesystem.defaultHome());
    }

    /**
     * Constructor.
     * @param root Root where to look for object sources.
     */
    OyFilesystem(final Path root) {
        this.home = root;
    }

    @Override
    public Input get(final String name) {
        return new InputOf(this.object(name));
    }

    @Override
    public boolean contains(final String name) {
        return Files.exists(this.object(name));
    }

    /**
     * Path to the object.
     * @param name Object name.
     * @return Path to the object.
     */
    private Path object(final String name) {
        return this.home.resolve(
            String.format(
                "%s/%s.eo",
                OyFilesystem.SOURCES,
                name.replace(".", "/")
            )
        );
    }

    /**
     * Default home.
     * @return Path to the default home.
     */
    private static Path defaultHome() {
        return Paths.get(
            System.getProperty(
                "runtime.path",
                Paths.get("")
                    .toAbsolutePath()
                    .resolve("eo-runtime")
                    .toString()
            )
        );
    }
}