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

com.aspectran.shell.jline.console.JLinePromptStringBuilder Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2024 The Aspectran Project
 *
 * 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.aspectran.shell.jline.console;

import com.aspectran.shell.console.DefaultPromptStringBuilder;
import com.aspectran.shell.console.PromptStringBuilder;
import com.aspectran.shell.jline.console.JLineTerminal.Style;
import com.aspectran.utils.annotation.jsr305.NonNull;

class JLinePromptStringBuilder extends DefaultPromptStringBuilder {

    private final JLineShellConsole console;

    private final JLineTerminal jlineTerminal;

    private final Style baseStyle;

    private Style style;

    public JLinePromptStringBuilder(@NonNull JLineShellConsole console) {
        super();
        this.console = console;
        this.jlineTerminal = console.getJlineTerminal();
        this.baseStyle = console.getBaseStyle();
        this.style = console.getBaseStyle();
    }

    @Override
    public PromptStringBuilder append(String str) {
        super.append(jlineTerminal.toAnsi(str, style));
        return this;
    }

    @Override
    public PromptStringBuilder setStyle(String... styles) {
        return setStyle(new Style(style, styles));
    }

    private PromptStringBuilder setStyle(Style style) {
        this.style = style;
        return this;
    }

    @Override
    public PromptStringBuilder resetStyle(String... styles) {
        resetStyle();
        return setStyle(styles);
    }

    @Override
    public PromptStringBuilder resetStyle() {
        return setStyle(baseStyle);
    }

    @Override
    public PromptStringBuilder secondaryStyle() {
        if (console.getSecondaryStyle() != null) {
            return setStyle(new Style(console.getSecondaryStyle()));
        } else {
            return resetStyle();
        }
    }

    @Override
    public PromptStringBuilder successStyle() {
        if (console.getSecondaryStyle() != null) {
            return setStyle(new Style(console.getSuccessStyle()));
        } else {
            return resetStyle();
        }
    }

    @Override
    public PromptStringBuilder dangerStyle() {
        if (console.getSecondaryStyle() != null) {
            return setStyle(new Style(console.getDangerStyle()));
        } else {
            return resetStyle();
        }
    }

    @Override
    public PromptStringBuilder warningStyle() {
        if (console.getSecondaryStyle() != null) {
            return setStyle(new Style(console.getWarningStyle()));
        } else {
            return resetStyle();
        }
    }

    @Override
    public PromptStringBuilder infoStyle() {
        if (console.getSecondaryStyle() != null) {
            return setStyle(new Style(console.getInfoStyle()));
        } else {
            return resetStyle();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy