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

org.apache.cxf.staxutils.transform.DelegatingNamespaceContext Maven / Gradle / Ivy

There is a newer version: 2.7.18
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.cxf.staxutils.transform;

import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

import javax.xml.XMLConstants;
import javax.xml.namespace.NamespaceContext;

class DelegatingNamespaceContext implements NamespaceContext {
    private NamespaceContext nc;
    private Map nsMap;
    private List> namespaces;
    private List> prefixes;

    public DelegatingNamespaceContext(NamespaceContext nc, Map nsMap) {
        this.nc = nc;
        this.nsMap = nsMap;
        namespaces = new LinkedList>();
        prefixes = new LinkedList>();
    }
    
    public void down() {
        ((LinkedList>)namespaces).addFirst(new HashMap(8));
        ((LinkedList>)prefixes).addFirst(new HashMap(8));
    }

    public void up() {
        ((LinkedList>)namespaces).removeFirst();
        ((LinkedList>)prefixes).removeFirst();
    }
    
    public void addPrefix(String prefix, String ns) {
        ((LinkedList>)namespaces).getFirst().put(prefix, ns);
        ((LinkedList>)prefixes).getFirst().put(ns, prefix);
    }
    
    public String findUniquePrefix(String ns) {
        if (ns.length() == 0) {
            return null;
        }
        String existingPrefix = getPrefix(ns);
        if (existingPrefix != null) {
            return existingPrefix;
        }
        
        int i = 0;
        while (true) {
            String prefix = "ps" + ++i;
            if (getNamespaceURI(prefix) == null) {
                addPrefix(prefix, ns);
                return prefix;
            }
        }
    }
    
    public String getNamespaceURI(String prefix) {
        if (!namespaces.isEmpty()) {
            Map cache = ((LinkedList>)namespaces).getFirst();
            for (Map nss : namespaces) {
                String ns = nss.get(prefix);
                if (ns != null) {
                    if (cache != nss) {
                        cache.put(prefix, ns);
                    }
                    return ns;
                }
            }
        }
        if (XMLConstants.XML_NS_PREFIX.equals(prefix)) {
            return XMLConstants.XML_NS_URI;
        } else if (XMLConstants.XMLNS_ATTRIBUTE.equals(prefix)) {
            return XMLConstants.XMLNS_ATTRIBUTE_NS_URI;
        }
        String ns = nc.getNamespaceURI(prefix);
        if (ns != null && ns.length() > 0) {
            addPrefix(prefix, ns);
        }
        return ns;
    }

    public String getPrefix(String ns) {
        if (ns.length() == 0) {
            return null;
        }
        String value = nsMap.get(ns);
        if (value != null && value.length() == 0) {
            return null;
        }
        if (value != null) {
            ns = value;
        }
        
        if (!prefixes.isEmpty()) {
            Map cache = ((LinkedList>)prefixes).getFirst();
            for (Map pfs : prefixes) {
                String prefix = pfs.get(ns);
                if (prefix != null && ns.equals(getNamespaceURI(prefix))) {
                    if (pfs != cache) {
                        cache.put(ns, prefix);
                    }
                    return prefix;
                }
            }
        }
        if (XMLConstants.XML_NS_URI.equals(ns)) {
            return XMLConstants.XML_NS_PREFIX;
        } else if (XMLConstants.XMLNS_ATTRIBUTE_NS_URI.equals(ns)) {
            return XMLConstants.XMLNS_ATTRIBUTE;
        }
        
        String prefix = nc.getPrefix(ns);
        if (prefix != null) {
            addPrefix(prefix, ns);
        }
        return prefix;
    }

    public Iterator getPrefixes(String ns) {
        List pl = new LinkedList();
        for (Map nsp : namespaces) {
            for (Map.Entry nse : nsp.entrySet()) {
                if (ns.equals(nse.getValue()) && ns.equals(getNamespaceURI(nse.getKey()))) {
                    pl.add(nse.getKey());
                }
            }
        }
        return pl.iterator();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy