All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hornetq.utils.TokenBucketLimiterImpl Maven / Gradle / Ivy

/*
 * Copyright 2005-2014 Red Hat, Inc.
 * Red Hat 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.hornetq.utils;

import java.util.concurrent.TimeUnit;

/**
 *
 * A TokenBucketLimiterImpl
 *
 * @author Tim Fox
 *
 */
public class TokenBucketLimiterImpl implements TokenBucketLimiter
{
   private final int rate;

   private final long window;

   private final boolean spin;

   /**
      Even thought we don't use TokenBucket in multiThread
      the implementation should keep this volatile for correctness
     */
   private volatile long last;

   /**
      Even thought we don't use TokenBucket in multiThread
      the implementation should keep this volatile for correctness
     */
   private volatile int tokens;

   public TokenBucketLimiterImpl(final int rate, final boolean spin)
   {
      this(rate, spin, TimeUnit.SECONDS, 1);
   }

   public TokenBucketLimiterImpl(final int rate, final boolean spin, TimeUnit unit, int unitAmount)
   {
      this.rate = rate;

      this.spin = spin;

      this.window = unit.toMillis(unitAmount);
   }

   public int getRate()
   {
      return rate;
   }

   public boolean isSpin()
   {
      return spin;
   }

   public void limit()
   {
      while (!check())
      {
         if (spin)
         {
            Thread.yield();
         }
         else
         {
            try
            {
               Thread.sleep(1);
            }
            catch (Exception e)
            {
               // Ignore
            }
         }
      }
   }

   private boolean check()
   {
      long now = System.currentTimeMillis();

      if (last == 0)
      {
         last = now;
      }

      long diff = now - last;

      if (diff >= window)
      {
         last = System.currentTimeMillis();

         tokens = rate;
      }

      if (tokens > 0)
      {
         tokens--;

         return true;
      }
      else
      {
         return false;
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy