org.apache.metron.stellar.common.shell.specials.MagicUndefineGlobal.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.metron.stellar.common.shell.specials.MagicUndefineGlobal.java

Source

/*
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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 org.apache.metron.stellar.common.shell.specials;

import org.apache.commons.lang3.StringUtils;
import org.apache.metron.stellar.common.shell.StellarShellExecutor;
import org.apache.metron.stellar.common.shell.StellarResult;

import java.util.Map;
import java.util.function.Function;

import static org.apache.commons.lang3.StringUtils.startsWith;
import static org.apache.commons.lang3.StringUtils.trimToEmpty;
import static org.apache.metron.stellar.common.shell.StellarResult.noop;
import static org.apache.metron.stellar.common.shell.StellarResult.error;

/**
 * Allows a variable to be removed from the global configuration.
 *
 *    %undefine varName
 */
public class MagicUndefineGlobal implements SpecialCommand {

    public static final String MAGIC_UNDEFINE = "%undefine";

    @Override
    public String getCommand() {
        return MAGIC_UNDEFINE;
    }

    @Override
    public Function<String, Boolean> getMatcher() {
        return (input) -> startsWith(trimToEmpty(input), MAGIC_UNDEFINE);
    }

    @Override
    public StellarResult execute(String command, StellarShellExecutor executor) {
        StellarResult result;

        String variable = StringUtils.trimToEmpty(command.substring(MAGIC_UNDEFINE.length()));
        if (StringUtils.isNotBlank(variable)) {

            // remove the variable from the globals
            Map<String, Object> globals = executor.getGlobalConfig();
            globals.remove(variable);
            result = noop();

        } else {
            result = error(String.format("%s expected name of global, got '%s'", MAGIC_UNDEFINE, variable));
        }

        return result;
    }
}