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

org.apache.felix.framework.URLHandlersActivator Maven / Gradle / Ivy

There is a newer version: 8.1.2
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.felix.framework;

import java.net.ContentHandler;
import java.util.Arrays;
import java.util.Collections;
import java.util.Map;
import java.util.Set;

import org.apache.felix.framework.util.FelixConstants;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.url.URLStreamHandlerService;
import org.osgi.util.tracker.ServiceTracker;

/**
 * 

* Simple activator class used by the system bundle to enable the * URL Handlers service. The only purpose of this class is to call * URLHandlers.registerInstance() when the framework is * started and URLHandlers.unregisterInstance() when the * framework is stopped. *

**/ class URLHandlersActivator implements BundleActivator { private final Map m_configMap; private final Felix m_framework; public URLHandlersActivator(Map configMap, Felix framework) { m_configMap = configMap; m_framework = framework; } // // Bundle activator methods. // public void start(BundleContext context) { // Only register the framework with the URL Handlers service // if the service is enabled. boolean enable = (m_configMap.get( FelixConstants.SERVICE_URLHANDLERS_PROP) == null) ? true : !m_configMap.get(FelixConstants.SERVICE_URLHANDLERS_PROP).equals("false"); if (enable) { m_framework.setURLHandlersActivator(this); } URLHandlers.registerFrameworkInstance(m_framework, enable); } public void stop(BundleContext context) { URLHandlers.unregisterFrameworkInstance(m_framework); m_framework.setURLHandlersActivator(null); } protected Object getStreamHandlerService(String protocol) { return get( m_framework.getHooks(URLStreamHandlerService.class), "url.handler.protocol", protocol); } protected Object getContentHandlerService(String mimeType) { return get( m_framework.getHooks(ContentHandler.class), "url.content.mimetype", mimeType); } private S get(Set> hooks, String key, String value) { Object service = null; if (!hooks.isEmpty()) { for (ServiceReference ref : hooks) { Object values = ref.getProperty(key); if (values instanceof String[]) { for (int valueIdx = 0; (valueIdx < ((String[]) values).length) && (service == null); valueIdx++) { if (value.equals(((String[]) values)[valueIdx])) { return m_framework.getService(m_framework, ref); } } } else if (value.equals(values)) { return m_framework.getService(m_framework, ref); } } } return null; } }