/*
* Copyright 2010-2013 Ning, Inc.
* Copyright 2014 Groupon, Inc
* Copyright 2014 The Billing Project, LLC
*
* The Billing Project 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.killbill.billing.server;
import javax.inject.Inject;
import javax.inject.Named;
import org.killbill.billing.lifecycle.glue.BusModule;
import org.killbill.billing.platform.api.LifecycleHandlerType;
import org.killbill.billing.platform.api.LifecycleHandlerType.LifecycleLevel;
import org.killbill.billing.server.notifications.PushNotificationListener;
import org.killbill.billing.server.notifications.PushNotificationRetryService;
import org.killbill.bus.api.PersistentBus;
import org.killbill.bus.api.PersistentBus.EventBusException;
import org.killbill.notificationq.api.NotificationQueueService.NoSuchNotificationQueue;
import org.killbill.notificationq.api.NotificationQueueService.NotificationQueueAlreadyExists;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class DefaultServerService implements ServerService {
private static final Logger log = LoggerFactory.getLogger(DefaultServerService.class);
private final PersistentBus bus;
private final PushNotificationListener pushNotificationListener;
private final PushNotificationRetryService pushNotificationRetryService;
@Inject
public DefaultServerService(@Named(BusModule.EXTERNAL_BUS_NAMED) final PersistentBus bus,
final PushNotificationListener pushNotificationListener,
final PushNotificationRetryService pushNotificationRetryService) {
this.bus = bus;
this.pushNotificationListener = pushNotificationListener;
this.pushNotificationRetryService = pushNotificationRetryService;
}
@Override
public String getName() {
return KILLBILL_SERVICES.SERVER_SERVICE.getServiceName();
}
@Override
public int getRegistrationOrdering() {
return KILLBILL_SERVICES.SERVER_SERVICE.getRegistrationOrdering();
}
@LifecycleHandlerType(LifecycleLevel.INIT_SERVICE)
public void registerForNotifications() throws NotificationQueueAlreadyExists {
try {
bus.register(pushNotificationListener);
} catch (final EventBusException e) {
log.warn("Failed to register PushNotificationListener", e);
}
pushNotificationRetryService.initialize();
}
@LifecycleHandlerType(LifecycleLevel.START_SERVICE)
public void start() {
pushNotificationRetryService.start();
}
@LifecycleHandlerType(LifecycleLevel.STOP_SERVICE)
public void unregisterForNotifications() throws NoSuchNotificationQueue {
try {
bus.unregister(pushNotificationListener);
} catch (final EventBusException e) {
log.warn("Failed to unregister PushNotificationListener", e);
}
pushNotificationRetryService.stop();
}
}