/* * 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.brooklyn.entity.software.base; import static com.google.common.base.Preconditions.checkNotNull; import java.util.Collection; import java.util.List; import org.apache.brooklyn.api.location.Location; import org.apache.brooklyn.api.mgmt.Task; import org.apache.brooklyn.core.entity.AbstractEntity; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.entity.lifecycle.ServiceStateLogic; import org.apache.brooklyn.core.entity.lifecycle.ServiceStateLogic.ComputeServiceIndicatorsFromChildrenAndMembers; import org.apache.brooklyn.core.location.Locations; import org.apache.brooklyn.entity.software.base.lifecycle.MachineLifecycleEffectorTasks; import org.apache.brooklyn.util.collections.QuorumCheck; import org.apache.brooklyn.util.core.config.ConfigBag; import org.apache.brooklyn.util.core.task.DynamicTasks; import org.apache.brooklyn.util.core.task.Tasks; public class SameServerEntityImpl extends AbstractEntity implements SameServerEntity { private static final MachineLifecycleEffectorTasks LIFECYCLE_TASKS = new SameServerDriverLifecycleEffectorTasks(); @Override protected void initEnrichers() { super.initEnrichers(); // Because can have multiple children (similar to groups/clusters/apps), need to // monitor their health and indicate this has failed if any of them have failed. enrichers().add(ServiceStateLogic.newEnricherFromChildren() .configure(ComputeServiceIndicatorsFromChildrenAndMembers.UP_QUORUM_CHECK, QuorumCheck.QuorumChecks.all())); } /** * Restarts the entity and its children. * <p/> * Subclasses should override {@link #doRestart(ConfigBag)} to customise behaviour. */ @Override public final void restart() { if (DynamicTasks.getTaskQueuingContext() != null) { doRestart(ConfigBag.EMPTY); } else { Task<?> task = Tasks.builder().displayName("restart").body(new Runnable() { public void run() { doRestart(ConfigBag.EMPTY); } }).build(); Entities.submit(this, task).getUnchecked(); } } /** * Starts the entity and its children in the given locations. * <p/> * Subclasses should override {@link #doStart} to customise behaviour. */ @Override public final void start(Collection<? extends Location> locsO) { addLocations(locsO); final Collection<? extends Location> locations = Locations.getLocationsCheckingAncestors(locsO, this); checkNotNull(locations, "locations"); if (DynamicTasks.getTaskQueuingContext() != null) { doStart(locations); } else { Task<?> task = Tasks.builder().displayName("start").body(new Runnable() { public void run() { doStart(locations); } }).build(); Entities.submit(this, task).getUnchecked(); } } /** * Stops the entity and its children. * <p/> * Subclasses should override {@link #doStop} to customise behaviour. */ @Override public final void stop() { if (DynamicTasks.getTaskQueuingContext() != null) { doStop(); } else { Task<?> task = Tasks.builder().displayName("stop").body(new Runnable() { public void run() { doStop(); } }).build(); Entities.submit(this, task).getUnchecked(); } } /** * To be overridden instead of {@link #start(Collection)}; sub-classes should call * {@code super.doStart(locations)} and should add do additional work via tasks, * executed using {@link DynamicTasks#queue(String, java.util.concurrent.Callable)}. */ protected void doStart(Collection<? extends Location> locations) { LIFECYCLE_TASKS.start(locations); } /** * To be overridden instead of {@link #stop()}; sub-classes should call {@code * super.doStop()} and should add do additional work via tasks, executed using * {@link DynamicTasks#queue(String, java.util.concurrent.Callable)}. */ protected void doStop() { LIFECYCLE_TASKS.stop(ConfigBag.EMPTY); } /** * To be overridden instead of {@link #restart()}; sub-classes should call {@code * super.doRestart(ConfigBag)} and should add do additional work via tasks, executed using * {@link DynamicTasks#queue(String, java.util.concurrent.Callable)}. */ protected void doRestart(ConfigBag parameters) { LIFECYCLE_TASKS.restart(parameters); } @Deprecated /** @deprecated since 0.7.0 subclasses should instead override {@link #doRestart(ConfigBag)} */ protected final void doRestart() { doRestart(ConfigBag.EMPTY); } }