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

ai.vespa.schemals.lsp.common.semantictokens.CommonSemanticTokens Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
package ai.vespa.schemals.lsp.common.semantictokens;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.lsp4j.SemanticTokensLegend;
import org.eclipse.lsp4j.SemanticTokensServerFull;
import org.eclipse.lsp4j.SemanticTokensWithRegistrationOptions;

import ai.vespa.schemals.lsp.schema.semantictokens.SchemaSemanticTokens;
import ai.vespa.schemals.lsp.yqlplus.semantictokens.YQLPlusSemanticTokens;

public class CommonSemanticTokens {

    private static List tokenTypes = new ArrayList<>();
    private static List tokenModifiers = new ArrayList<>();

    public static SemanticTokensWithRegistrationOptions getSemanticTokensRegistrationOptions() {

        // Make sure that SchemaSemanticToken is initiated
        SchemaSemanticTokens.init();
        YQLPlusSemanticTokens.init();

        return new SemanticTokensWithRegistrationOptions(
            new SemanticTokensLegend(tokenTypes, tokenModifiers),
            new SemanticTokensServerFull(false)
        );
    }

    private static int addUniqueToList(List list, String element) {
        int index = list.indexOf(element);
        if (index == -1) {
            index = list.size();
            list.add(element);
        }
        return index;
    }

    public static int addTokenType(String name) {
        return addUniqueToList(tokenTypes, name);
    }

    public static void addTokenTypes(List names) {
        for (String name : names) {
            addTokenType(name);
        }
    }

    public static Integer getType(String token) {
        return tokenTypes.indexOf(token);
    }

    public static int addTokenModifier(String modifier) {
        return addUniqueToList(tokenModifiers, modifier);
    }

    public static void addTokenModifiers(List modifiers) {
        for (String modifier : modifiers) {
            addTokenModifier(modifier);
        }
    }

    public static Integer getModifier(String modifier) {
        return tokenModifiers.indexOf(modifier);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy