/** * Licensed to the Austrian Association for Software Tool Integration (AASTI) * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. The AASTI 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.openengsb.ui.admin.serviceListPanel; import java.io.Serializable; import java.util.ArrayList; import java.util.Dictionary; import java.util.Hashtable; import java.util.List; import javax.inject.Inject; import javax.inject.Named; import org.apache.wicket.AttributeModifier; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.list.ListItem; import org.apache.wicket.markup.html.list.ListView; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.model.LoadableDetachableModel; import org.openengsb.core.api.AliveState; import org.openengsb.core.api.Domain; import org.openengsb.core.api.security.annotation.SecurityAttribute; import org.osgi.framework.BundleContext; import org.osgi.framework.Constants; import org.osgi.framework.ServiceReference; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @SecurityAttribute(key = "org.openengsb.ui.component", value = "SERVICE_USER") public class ServiceListPanel extends Panel { private static final long serialVersionUID = 9090970567917075638L; private static final Logger LOGGER = LoggerFactory.getLogger(ServiceListPanel.class); private class ServiceEntry implements Comparable<ServiceEntry>, Serializable { private static final long serialVersionUID = -7322597299600275467L; private final Dictionary<String, Object> properties = new Hashtable<String, Object>(); private AliveState aliveState; private String getInstanceId() { return (String) properties.get(Constants.SERVICE_PID); } @Override public int compareTo(ServiceEntry o) { if (aliveState != o.aliveState) { return aliveState.compareTo(o.aliveState); } return getInstanceId().compareTo(o.getInstanceId()); } } @Inject @Named("blueprintBundleContext") private BundleContext bundleContext; @Inject @Named("connectorList") private List<ServiceReference<Domain>> serviceReferences; private class ServiceEntryListModel extends LoadableDetachableModel<List<ServiceEntry>> { private static final long serialVersionUID = 3124873169012607189L; @Override protected List<ServiceEntry> load() { List<ServiceEntry> result = new ArrayList<ServiceListPanel.ServiceEntry>(); for (ServiceReference<Domain> ref : serviceReferences) { ServiceEntry entry = new ServiceEntry(); for (String key : ref.getPropertyKeys()) { entry.properties.put(key, ref.getProperty(key)); } Domain service = bundleContext.getService(ref); try { entry.aliveState = service.getAliveState(); } catch (Exception e) { LOGGER.error("Couldn't load service entry " + ref, e); entry.aliveState = AliveState.OFFLINE; } result.add(entry); } return result; } } @SuppressWarnings("serial") public ServiceListPanel(String id) { super(id); WebMarkupContainer container = new WebMarkupContainer("serviceListContainer"); container.add(new ListView<ServiceEntry>("serviceListView", new ServiceEntryListModel()) { @Override protected void populateItem(final ListItem<ServiceEntry> item) { item.add(new Label("service.name", item.getModelObject().getInstanceId())); item.add(new Label("service.state", item.getModelObject().aliveState.name())); switch (item.getModelObject().aliveState) { case OFFLINE: item.get("service.state").add(AttributeModifier.replace("id", "aliveStateOffline")); break; case ONLINE: item.get("service.state").add(AttributeModifier.replace("id", "aliveStateOnline")); break; default: item.get("service.state").add(AttributeModifier.replace("id", "aliveStateOther")); break; } } }); add(container); } }