Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java196
1 files changed, 98 insertions, 98 deletions
diff --git a/plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java b/plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java
index 99b744cd686..2f3806252f8 100644
--- a/plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java
+++ b/plugins/org.eclipse.osee.framework.logging/src/org/eclipse/osee/framework/logging/StatusManager.java
@@ -1,98 +1,98 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.logging;
-
-import java.util.Collection;
-import java.util.Collections;
-import java.util.List;
-import java.util.Map;
-import java.util.TreeMap;
-import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.CopyOnWriteArrayList;
-
-/**
- * @author Andrew M. Finkbeiner
- */
-class StatusManager {
- private final Map<String, IHealthStatus> services;
- private List<IStatusListener> listeners;
- private Map<IStatusListener, IStatusListenerFilter> filters;
-
- public StatusManager() {
- this.services = Collections.synchronizedMap(new TreeMap<String, IHealthStatus>());
- this.listeners = new CopyOnWriteArrayList<IStatusListener>();
- this.filters = new ConcurrentHashMap<IStatusListener, IStatusListenerFilter>();
- }
-
- public void report(IHealthStatus status) {
- if (status != null) {
- IHealthStatus storedStatus = services.get(status.getSourceName());
- if (storedStatus == null) {
- services.put(status.getSourceName(), status);
- }
- // serviceStatus.setHealthStatus(status);
- for (IStatusListener listener : listeners) {
- IStatusListenerFilter filter = filters.get(listener);
- if (filter == null || filter.isInterested(status)) {
- listener.onStatus(status);
- }
- }
- }
- }
-
- public boolean register(IStatusListener listener, IStatusListenerFilter filter) {
- filters.put(listener, filter);
- return listeners.add(listener);
- }
-
- public boolean register(IStatusListener listener) {
- return listeners.add(listener);
- }
-
- public boolean deregister(IStatusListener listener) {
- return listeners.remove(listener);
- }
-
- public Collection<IHealthStatus> getHealthStatus() {
-
- return services.values();
- }
-
- public boolean isStatusOk() {
- boolean result = true;
- for (IHealthStatus status : getHealthStatus()) {
- result &= status.isOk();
- }
- return result;
- }
-
- public String getReport() {
- StringBuilder message = new StringBuilder();
- Collection<IHealthStatus> serviceInfos = getHealthStatus();
- for (IHealthStatus status : serviceInfos) {
- if (!status.isOk()) {
- message.append(status.getSourceName());
- message.append(". Error: ");
- message.append(status.getMessage());
- message.append("\n");
- }
- }
- return message.toString();
- }
-
- /**
- * @param sourceName
- * @return health status
- */
- public IHealthStatus getHealthStatusByName(String sourceName) {
- return services.get(sourceName);
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.logging;
+
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+import java.util.TreeMap;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.CopyOnWriteArrayList;
+
+/**
+ * @author Andrew M. Finkbeiner
+ */
+class StatusManager {
+ private final Map<String, IHealthStatus> services;
+ private List<IStatusListener> listeners;
+ private Map<IStatusListener, IStatusListenerFilter> filters;
+
+ public StatusManager() {
+ this.services = Collections.synchronizedMap(new TreeMap<String, IHealthStatus>());
+ this.listeners = new CopyOnWriteArrayList<IStatusListener>();
+ this.filters = new ConcurrentHashMap<IStatusListener, IStatusListenerFilter>();
+ }
+
+ public void report(IHealthStatus status) {
+ if (status != null) {
+ IHealthStatus storedStatus = services.get(status.getSourceName());
+ if (storedStatus == null) {
+ services.put(status.getSourceName(), status);
+ }
+ // serviceStatus.setHealthStatus(status);
+ for (IStatusListener listener : listeners) {
+ IStatusListenerFilter filter = filters.get(listener);
+ if (filter == null || filter.isInterested(status)) {
+ listener.onStatus(status);
+ }
+ }
+ }
+ }
+
+ public boolean register(IStatusListener listener, IStatusListenerFilter filter) {
+ filters.put(listener, filter);
+ return listeners.add(listener);
+ }
+
+ public boolean register(IStatusListener listener) {
+ return listeners.add(listener);
+ }
+
+ public boolean deregister(IStatusListener listener) {
+ return listeners.remove(listener);
+ }
+
+ public Collection<IHealthStatus> getHealthStatus() {
+
+ return services.values();
+ }
+
+ public boolean isStatusOk() {
+ boolean result = true;
+ for (IHealthStatus status : getHealthStatus()) {
+ result &= status.isOk();
+ }
+ return result;
+ }
+
+ public String getReport() {
+ StringBuilder message = new StringBuilder();
+ Collection<IHealthStatus> serviceInfos = getHealthStatus();
+ for (IHealthStatus status : serviceInfos) {
+ if (!status.isOk()) {
+ message.append(status.getSourceName());
+ message.append(". Error: ");
+ message.append(status.getMessage());
+ message.append("\n");
+ }
+ }
+ return message.toString();
+ }
+
+ /**
+ * @param sourceName
+ * @return health status
+ */
+ public IHealthStatus getHealthStatusByName(String sourceName) {
+ return services.get(sourceName);
+ }
+}

Back to the top