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

org.apache.ivy.osgi.repo.RepoDescriptor Maven / Gradle / Ivy

There is a newer version: 4.15.102
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.ivy.osgi.repo;

import java.net.URI;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

import org.apache.ivy.core.module.descriptor.DefaultModuleDescriptor;
import org.apache.ivy.core.module.descriptor.ModuleDescriptor;
import org.apache.ivy.osgi.core.BundleCapability;
import org.apache.ivy.osgi.core.BundleInfo;
import org.apache.ivy.osgi.core.BundleInfoAdapter;
import org.apache.ivy.osgi.core.ExecutionEnvironmentProfileProvider;
import org.apache.ivy.osgi.core.OSGiManifestParser;
import org.apache.ivy.util.Message;

public class RepoDescriptor {

    private final Map/* >> */moduleByCapbilities = new HashMap();

    private final Set/*  */modules = new HashSet();

    private final ExecutionEnvironmentProfileProvider profileProvider;

    private final URI baseUri;

    public RepoDescriptor(URI baseUri, ExecutionEnvironmentProfileProvider profileProvider) {
        this.baseUri = baseUri;
        this.profileProvider = profileProvider;
    }

    public URI getBaseUri() {
        return baseUri;
    }

    public Set/*  */getModules() {
        return modules;
    }

    public Map/* >> */getModuleByCapbilities() {
        return moduleByCapbilities;
    }

    public Set/*  */findModule(String requirement, String value) {
        Map/* > */modules = (Map) moduleByCapbilities
                .get(requirement);
        if (modules == null) {
            return null;
        }
        return (Set) modules.get(value);
    }

    public Set/*  */getCapabilityValues(String capabilityName) {
        Map/* > */modules = (Map) moduleByCapbilities
                .get(capabilityName);
        if (modules == null) {
            return null;
        }
        return (Set) modules.keySet();
    }

    public void add(String type, String value, ModuleDescriptor md) {
        modules.add(md);
        Map/* > */map = (Map) moduleByCapbilities.get(type);
        if (map == null) {
            map = new HashMap/* > */();
            moduleByCapbilities.put(type, map);
        }
        Set/*  */bundleReferences = (Set) map.get(value);
        if (bundleReferences == null) {
            bundleReferences = new HashSet/*  */();
            map.put(value, bundleReferences);
        }
        if (!bundleReferences.add(md)) {
            Message.debug("Duplicate module in the repo " + baseUri + " for " + type + " "
                    + value + ": " + md.getModuleRevisionId());
        }
    }

    public void addBundle(BundleInfo bundleInfo) {
        DefaultModuleDescriptor md = BundleInfoAdapter.toModuleDescriptor(
            OSGiManifestParser.getInstance(), baseUri, bundleInfo, profileProvider);
        add(BundleInfo.BUNDLE_TYPE, bundleInfo.getSymbolicName(), md);
        Iterator itCapability = bundleInfo.getCapabilities().iterator();
        while (itCapability.hasNext()) {
            BundleCapability capability = (BundleCapability) itCapability.next();
            add(capability.getType(), capability.getName(), md);
        }
    }

    public String toString() {
        return modules.toString();
    }

    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((modules == null) ? 0 : modules.hashCode());
        return result;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        RepoDescriptor other = (RepoDescriptor) obj;
        if (modules == null) {
            if (other.modules != null) {
                return false;
            }
        } else if (!modules.equals(other.modules)) {
            return false;
        }
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy