blob: 00000ee33de0cee574ffe9a622e9c24c33d73892 [file] [log] [blame]
/*
* 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 WARRANTIESOR 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.tx.control.jpa.local.impl;
import static org.osgi.framework.Constants.SERVICE_PID;
import java.util.Dictionary;
import java.util.Hashtable;
import org.apache.aries.tx.control.jpa.common.impl.InternalJPAEntityManagerProviderFactory;
import org.apache.aries.tx.control.jpa.common.impl.JPAEntityManagerProviderFactoryServiceFactory;
import org.apache.geronimo.specs.jpa.PersistenceActivator;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.cm.ManagedServiceFactory;
import org.osgi.service.transaction.control.jpa.JPAEntityManagerProviderFactory;
public class Activator implements BundleActivator {
private final BundleActivator geronimoActivator;
private JPAEntityManagerProviderFactoryServiceFactory service;
private ManagedServiceFactoryImpl msf;
private ServiceRegistration<?> reg;
private ServiceRegistration<ManagedServiceFactory> factoryReg;
public Activator() {
geronimoActivator = new PersistenceActivator();
}
@Override
public void start(BundleContext context) throws Exception {
geronimoActivator.start(context);
InternalJPAEntityManagerProviderFactory ijempf = new JPAEntityManagerProviderFactoryImpl();
service = new JPAEntityManagerProviderFactoryServiceFactory() {
@Override
protected InternalJPAEntityManagerProviderFactory getInternalJPAEntityManagerProviderFactory() {
return ijempf;
}
};
reg = context.registerService(JPAEntityManagerProviderFactory.class.getName(),
service, getProperties());
msf = new ManagedServiceFactoryImpl(context);
factoryReg = context.registerService(ManagedServiceFactory.class,
msf, getMSFProperties());
}
@Override
public void stop(BundleContext context) throws Exception {
safeUnregister(reg);
safeUnregister(factoryReg);
try {
msf.stop();
} catch (Exception e) {
// TODO log this
}
try {
service.close();
} catch (Exception e) {
// TODO log this
}
geronimoActivator.stop(context);
}
private void safeUnregister(ServiceRegistration<?> reg) {
try {
reg.unregister();
} catch (IllegalStateException ise) {
// Ignore this
}
}
private Dictionary<String, Object> getProperties() {
Dictionary<String, Object> props = new Hashtable<>();
props.put("osgi.local.enabled", Boolean.TRUE);
return props;
}
private Dictionary<String, ?> getMSFProperties() {
Dictionary<String, Object> props = new Hashtable<>();
props.put(SERVICE_PID, "org.apache.aries.tx.control.jpa.local");
return props;
}
}