/* * 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.aries.async.impl; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.Hashtable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ThreadFactory; import java.util.concurrent.atomic.AtomicInteger; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.osgi.service.async.Async; import org.osgi.service.log.LogService; import org.osgi.util.tracker.ServiceTracker; public class Activator implements BundleActivator { private final ExecutorService executor = Executors.newFixedThreadPool(10, new ThreadFactory() { private final AtomicInteger count = new AtomicInteger(); public Thread newThread(final Runnable r) { Thread t = new Thread(new Runnable(){ public void run() { AccessController.doPrivileged(new PrivilegedAction<Void>() { public Void run() { r.run(); return null; } }); } }, "Asynchronous Execution Service Thread " + count.incrementAndGet()); return t; } }); private final ScheduledExecutorService ses = Executors.newSingleThreadScheduledExecutor(new ThreadFactory() { private final AtomicInteger count = new AtomicInteger(); public Thread newThread(final Runnable r) { Thread t = new Thread(new Runnable(){ public void run() { AccessController.doPrivileged(new PrivilegedAction<Void>() { public Void run() { r.run(); return null; } }); } }, "Asynchronous Execution Service Timing Thread " + count.incrementAndGet()); return t; } }); private volatile ServiceTracker<LogService, LogService> logServiceTracker; public void start(BundleContext context) throws Exception { logServiceTracker = new ServiceTracker<LogService, LogService>(context, LogService.class, null); logServiceTracker.open(); context.registerService(Async.class.getName(), new AsyncServiceFactory(executor, ses, logServiceTracker), new Hashtable<String, Object>()); } public void stop(BundleContext context) throws Exception { ses.shutdownNow(); executor.shutdownNow(); logServiceTracker.close(); } }