com.sun.enterprise.universal.collections.ManifestUtils Maven / Gradle / Ivy
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2008, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.enterprise.universal.collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.jar.Attributes;
import java.util.jar.Manifest;
/**
* all-static methods for handling operations with Manifests
* It automatically replace all occurences of EOL_TOKEN with linefeeds
*
* @author bnevins
*/
public class ManifestUtils {
/**
* Embed this token to encode linefeeds in Strings that are placed
* in Manifest objects
*/
public static final String EOL_TOKEN = "%%%EOL%%%";
/**
* The name of the Manifest's main attributes.
*/
public static final String MAIN_ATTS = "main";
/**
* The line separator character on this OS
*/
public static final String EOL = System.getProperty("line.separator");
/**
* Convert a Manifest into an easier data structure. It returns a Map of Maps.
* The main attributes become the map where the key is MAIN_ATTS.
* Entries become named maps as in the Manifest
* @param m
* @return
*/
public final static Map> normalize(Manifest m)
{
// first add the "main attributes
Map> all = new HashMap<>();
Attributes mainAtt = m.getMainAttributes();
all.put(MAIN_ATTS, normalize(mainAtt));
// now add all the "sub-attributes"
Map unwashed = m.getEntries();
Set> entries = unwashed.entrySet();
for(Map.Entry entry : entries) {
String name = entry.getKey();
Attributes value = entry.getValue();
if(name == null || value == null) {
continue;
}
all.put(name, normalize(value));
}
return all;
}
/**
* Convert an Aattributes object into a Map
* @param att
* @return
*/
public final static Map normalize(Attributes att)
{
Set> entries = att.entrySet();
Map pristine = new HashMap<>(entries.size());
for(Map.Entry