Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 55DD2200BAF for ; Mon, 31 Oct 2016 11:51:59 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 545C4160B05; Mon, 31 Oct 2016 10:51:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9C497160AF0 for ; Mon, 31 Oct 2016 11:51:58 +0100 (CET) Received: (qmail 28589 invoked by uid 500); 31 Oct 2016 10:51:57 -0000 Mailing-List: contact dev-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list dev@brooklyn.apache.org Received: (qmail 28578 invoked by uid 99); 31 Oct 2016 10:51:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Oct 2016 10:51:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4670DE0BB1; Mon, 31 Oct 2016 10:51:57 +0000 (UTC) From: sjcorbett To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-server pull request #386: Add AbstractInvokeEffectorPolicy Content-Type: text/plain Message-Id: <20161031105157.4670DE0BB1@git1-us-west.apache.org> Date: Mon, 31 Oct 2016 10:51:57 +0000 (UTC) archived-at: Mon, 31 Oct 2016 10:51:59 -0000 Github user sjcorbett commented on a diff in the pull request: https://github.com/apache/brooklyn-server/pull/386#discussion_r85716905 --- Diff: core/src/main/java/org/apache/brooklyn/policy/AbstractInvokeEffectorPolicy.java --- @@ -0,0 +1,145 @@ +/* + * 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.policy; + +import java.util.Map; +import java.util.concurrent.atomic.AtomicInteger; +import javax.annotation.Nonnull; + +import org.apache.brooklyn.api.effector.Effector; +import org.apache.brooklyn.api.entity.EntityLocal; +import org.apache.brooklyn.api.mgmt.Task; +import org.apache.brooklyn.api.sensor.AttributeSensor; +import org.apache.brooklyn.config.ConfigKey; +import org.apache.brooklyn.core.config.ConfigKeys; +import org.apache.brooklyn.core.policy.AbstractPolicy; +import org.apache.brooklyn.core.sensor.Sensors; +import org.apache.brooklyn.util.guava.Maybe; +import org.apache.brooklyn.util.text.Strings; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.google.common.base.Objects; +import com.google.common.util.concurrent.MoreExecutors; + +public abstract class AbstractInvokeEffectorPolicy extends AbstractPolicy { + + private static final Logger LOG = LoggerFactory.getLogger(AbstractInvokeEffectorPolicy.class); + + public static final ConfigKey IS_BUSY_SENSOR_NAME = ConfigKeys.newStringConfigKey( + "isBusySensor", + "Name of the sensor to publish on the entity that indicates that this policy has incomplete effectors. " + + "If unset running tasks will not be tracked."); + + private final AtomicInteger taskCounter = new AtomicInteger(); + + /** + * Indicates that onEvent was notified of an value of is not the latest sensor value. + */ + private boolean moreUpdatesComing; + /** + * The timestamp of the event that informed moreUpdatesComing. Subsequent notifications + * of earlier events will not cause updates of moreUpdatesComing. + */ + private long mostRecentUpdate = 0; + /** + * Guards {@link #moreUpdatesComing} and {@link #mostRecentUpdate}. + */ + private final Object[] moreUpdatesLock = new Object[0]; + + @Override + public void setEntity(EntityLocal entity) { + super.setEntity(entity); + if (isBusySensorEnabled()) { + // Republishes when the entity rebinds. + publishIsBusy(); + } + } + + /** + * Invoke effector with parameters on the entity that the policy is attached to. + */ + protected Task invoke(Effector effector, Map parameters) { + if (isBusySensorEnabled()) { + getTaskCounter().incrementAndGet(); + publishIsBusy(); + } + Task task = entity.invoke(effector, parameters); + if (isBusySensorEnabled()) { + task.addListener(new EffectorListener(), MoreExecutors.sameThreadExecutor()); + } + return task; + } + + protected boolean isBusy() { + synchronized (moreUpdatesLock) { --- End diff -- I included the synchronisation to make sure that `moreUpdatesComing` is visible to whatever thread invokes the effector's completion listener (which calls `publishIsBusy` which calls `isBusy`). At a minimum the field should be volatile then. Is it a big one for you? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---