/*
* Copyright 2010-2013 Ning, Inc.
*
* Ning 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 com.ning.billing.osgi.bundles.hello;
import java.math.BigDecimal;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.List;
import java.util.UUID;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.framework.ServiceRegistration;
import com.ning.billing.account.api.Account;
import com.ning.billing.account.api.AccountUserApi;
import com.ning.billing.beatrix.bus.api.ExtBusEvent;
import com.ning.billing.beatrix.bus.api.ExternalBus;
import com.ning.billing.osgi.api.OSGIKillbill;
import com.ning.billing.payment.api.PaymentMethodPlugin;
import com.ning.billing.payment.plugin.api.PaymentInfoPlugin;
import com.ning.billing.payment.plugin.api.PaymentPluginApi;
import com.ning.billing.payment.plugin.api.PaymentPluginApiException;
import com.ning.billing.payment.plugin.api.RefundInfoPlugin;
import com.ning.billing.util.callcontext.CallContext;
import com.ning.billing.util.callcontext.TenantContext;
import com.google.common.eventbus.Subscribe;
public class HelloActivator implements BundleActivator {
private OSGIKillbill osgiKillbill;
private volatile ServiceReference<OSGIKillbill> osgiKillbillReference;
private volatile boolean isRunning;
private volatile ServiceRegistration paymentInfoPluginRegistration;
@Override
public void start(final BundleContext context) {
this.isRunning = true;
fetchOSGIKIllbill(context);
System.out.println("Hello world from HelloActivator!");
doSomeWorkWithKillbillApis(context);
registerForKillbillEvents(context);
registerPaymentApi(context);
}
@Override
public void stop(final BundleContext context) {
this.isRunning = false;
releaseOSGIKIllbill(context);
this.osgiKillbill = null;
System.out.println("Good bye world from HelloActivator!");
}
private void doSomeWorkWithKillbillApis(final BundleContext context) {
final TenantContext tenantContext = new TenantContext() {
@Override
public UUID getTenantId() {
return new UUID(12, 42);
}
};
final Thread th = new Thread(new Runnable() {
@Override
public void run() {
while (isRunning) {
final AccountUserApi accountUserApi = osgiKillbill.getAccountUserApi();
try {
final List<Account> accounts = accountUserApi.getAccounts(tenantContext);
System.out.println("Found " + accounts.size() + " accounts");
Thread.sleep(1000);
} catch (InterruptedException e) {
System.err.println("Interrupted in HelloActivator");
} catch (Exception e) {
System.err.println("Error in HelloActivator: " + e.getLocalizedMessage());
}
}
}
});
th.start();
}
private void registerForKillbillEvents(final BundleContext context) {
try {
final ExternalBus externalBus = osgiKillbill.getExternalBus();
externalBus.register(this);
} catch (Exception e) {
System.err.println("Error in HelloActivator: " + e.getLocalizedMessage());
} finally {
}
}
private void fetchOSGIKIllbill(final BundleContext context) {
this.osgiKillbillReference = (ServiceReference<OSGIKillbill>) context.getServiceReference(OSGIKillbill.class.getName());
try {
this.osgiKillbill = context.getService(osgiKillbillReference);
} catch (Exception e) {
System.err.println("Error in HelloActivator: " + e.getLocalizedMessage());
}
}
private void releaseOSGIKIllbill(final BundleContext context) {
if (osgiKillbillReference != null) {
context.ungetService(osgiKillbillReference);
}
}
private void registerPaymentApi(final BundleContext context) {
final Dictionary props = new Hashtable();
props.put("name", "hello");
this.paymentInfoPluginRegistration = context.registerService(PaymentPluginApi.class.getName(), new PaymentPluginApi() {
@Override
public String getName() {
return null;
}
@Override
public PaymentInfoPlugin processPayment(final UUID kbPaymentId, final UUID kbPaymentMethodId, final BigDecimal amount, final CallContext context) throws PaymentPluginApiException {
return null;
}
@Override
public PaymentInfoPlugin getPaymentInfo(final UUID kbPaymentId, final TenantContext context) throws PaymentPluginApiException {
return null;
}
@Override
public RefundInfoPlugin processRefund(final UUID kbPaymentId, final BigDecimal refundAmount, final CallContext context) throws PaymentPluginApiException {
return null;
}
@Override
public void addPaymentMethod(final UUID kbPaymentMethodId, final PaymentMethodPlugin paymentMethodProps, final boolean setDefault, final CallContext context) throws PaymentPluginApiException {
}
@Override
public void deletePaymentMethod(final UUID kbPaymentMethodId, final CallContext context) throws PaymentPluginApiException {
}
@Override
public void setDefaultPaymentMethod(final UUID kbPaymentMethodId, final CallContext context) throws PaymentPluginApiException {
}
}, props);
}
@Subscribe
public void handleKillbillEvent(final ExtBusEvent killbillEvent) {
System.out.println("Received external event " + killbillEvent.toString());
}
}