/**
 * The MIT License (MIT)
 *
 * Copyright (c) 2016 eolang.org
 *
 * 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.compiler.syntax;

import java.util.List;
import org.cactoos.iterable.Mapped;
import org.cactoos.text.FormattedText;
import org.cactoos.text.JoinedText;
import org.cactoos.text.UncheckedText;

/**
 * Object copying.
 *
 * @author Kirill ([email protected])
 * @version $Id: 1c6cf72adc312882f4ef5da2e572c967817287dc $
 * @since 0.1
 */
public final class CpObject {

    /**
     * Object name.
     */
    private final String name;

    /**
     * Arguments.
     */
    private final List<Argument> args;

    /**
     * Ctor.
     *
     * @param obj Object name
     * @param args Arguments
     */
    public CpObject(final String obj, final List<Argument> args) {
        this.name = obj;
        this.args = args;
    }

    /**
     * Object copying arguments.
     *
     * @return An argument list
     */
    public List<Argument> arguments() {
        return this.args;
    }

    /**
     * Java code for object copying.
     *
     * @return Java code
     */
    public String java() {
        return new UncheckedText(
            new FormattedText(
                "new %s(%s)",
                this.name,
                new UncheckedText(
                    new JoinedText(
                        ", ",
                        new Mapped<>(Argument::java, this.args)
                    )
                ).asString()
            )
        ).asString();
    }
}