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

org.eclipse.jkube.kit.common.util.PropertiesMappingParser Maven / Gradle / Ivy

There is a newer version: 1.16.2
Show newest version
/**
 * Copyright (c) 2019 Red Hat, Inc.
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at:
 *
 *     https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   Red Hat, Inc. - initial API and implementation
 */
package org.eclipse.jkube.kit.common.util;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

public class PropertiesMappingParser {

    /**
     * This method reads properties file to load custom mapping between kinds and filenames.
     *
     * 
     * ConfigMap=cm, configmap
     * Service=service
     * 
* * @param mapping * stream of a properties file setting mappings between kinds and filenames. * * @return Serialization of all elements as a map */ public Map> parse(final InputStream mapping) { final Properties mappingProperties = new Properties(); try { mappingProperties.load(mapping); final Map> serializedContent = new HashMap<>(); final Set kinds = mappingProperties.stringPropertyNames(); for (String kind : kinds) { final String filenames = mappingProperties.getProperty(kind); final String[] filenameTypes = filenames.split(","); final List scannedFiletypes = new ArrayList<>(); for (final String filenameType : filenameTypes) { scannedFiletypes.add(filenameType.trim()); } serializedContent.put(kind, scannedFiletypes); } return serializedContent; } catch (IOException e) { throw new IllegalStateException(e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy