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

org.apache.logging.log4j.core.lookup.MainMapLookup Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta2
Show newest version
/*
 * 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.logging.log4j.core.lookup;

import java.util.Map;

import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.plugins.Plugin;

/**
 * A map-based lookup for main arguments.
 * 
 * See {@link #setMainArguments(String[])}.
 * 
 * @since 2.4
 */
@Plugin(name = "main", category = StrLookup.CATEGORY)
public class MainMapLookup extends MapLookup {

    /**
     * A singleton used by a main method to save its arguments.
     */
    static final MapLookup MAIN_SINGLETON = new MapLookup(MapLookup.newMap(0));

    /**
     * Constructor when used directly as a plugin.
     */
    public MainMapLookup() {
        // no-init
    }

    public MainMapLookup(final Map map) {
        super(map);
    }

    /**
     * An application's {@code public static main(String[])} method calls this method to make its main arguments
     * available for lookup with the prefix {@code main}.
     * 

* The map provides two kinds of access: First by index, starting at {@code "0"}, {@code "1"} and so on. For * example, the command line {@code --file path/file.txt -x 2} can be accessed from a configuration file with: *

*
    *
  • {@code "main:0"} = {@code "--file"}
  • *
  • {@code "main:1"} = {@code "path/file.txt"}
  • *
  • {@code "main:2"} = {@code "-x"}
  • *
  • {@code "main:3"} = {@code "2"}
  • *
*

* Second using the argument at position n as the key to access the value at n+1. *

*
    *
  • {@code "main:--file"} = {@code "path/file.txt"}
  • *
  • {@code "main:-x"} = {@code "2"}
  • *
* * @param args * An application's {@code public static main(String[])} arguments. */ public static void setMainArguments(final String... args) { if (args == null) { return; } initMap(args, MainMapLookup.MAIN_SINGLETON.getMap()); } @Override public String lookup(final LogEvent event, final String key) { return MAIN_SINGLETON.getMap().get(key); } @Override public String lookup(final String key) { return MAIN_SINGLETON.getMap().get(key); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy