blob: dac53b42de279c402c4ff6aa7dd361b88c7a6778 [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 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.apache.stratos.autoscaler.monitor;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.stratos.autoscaler.monitor.events.ApplicationStatusEvent;
import org.apache.stratos.autoscaler.monitor.events.ClusterStatusEvent;
import org.apache.stratos.autoscaler.monitor.events.GroupStatusEvent;
import org.apache.stratos.autoscaler.monitor.events.MonitorStatusEvent;
import org.apache.stratos.messaging.domain.applications.ApplicationStatus;
import org.apache.stratos.messaging.domain.topology.ClusterStatus;
import org.apache.stratos.messaging.domain.applications.GroupStatus;
/**
* This will build the necessary monitor status events to be sent to the parent/child monitor
*/
public class MonitorStatusEventBuilder {
private static final Log log = LogFactory.getLog(MonitorStatusEventBuilder.class);
public static void handleClusterStatusEvent(ParentComponentMonitor parent, ClusterStatus status, String clusterId) {
ClusterStatusEvent clusterStatusEvent = new ClusterStatusEvent(status, clusterId);
notifyParent(parent, clusterStatusEvent);
}
public static void handleGroupStatusEvent(ParentComponentMonitor parent, GroupStatus status, String groupId) {
GroupStatusEvent groupStatusEvent = new GroupStatusEvent(status, groupId);
notifyParent(parent, groupStatusEvent);
}
public static void handleApplicationStatusEvent(ParentComponentMonitor parent, ApplicationStatus status, String appId) {
ApplicationStatusEvent applicationStatusEvent = new ApplicationStatusEvent(status, appId);
notifyParent(parent, applicationStatusEvent);
}
private static void notifyParent(ParentComponentMonitor parent, MonitorStatusEvent statusEvent) {
parent.onChildEvent(statusEvent);
}
public static void notifyChildren (ParentComponentMonitor componentMonitor, MonitorStatusEvent statusEvent) {
for (Monitor activeChildMonitor : componentMonitor.getAliasToActiveMonitorsMap().values()) {
activeChildMonitor.onParentEvent(statusEvent);
}
}
}