You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by oz...@apache.org on 2004/12/17 01:11:39 UTC

cvs commit: jakarta-commons/transaction/src/java/org/apache/commons/transaction/util CounterBarrier.java

ozeigermann    2004/12/16 16:11:39

  Added:       transaction/src/java/org/apache/commons/transaction/util
                        CounterBarrier.java
  Log:
  Added counter barrier to make sequences of different threads deterministic
  
  Revision  Changes    Path
  1.1                  jakarta-commons/transaction/src/java/org/apache/commons/transaction/util/CounterBarrier.java
  
  Index: CounterBarrier.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons/transaction/src/java/org/apache/commons/transaction/util/CounterBarrier.java,v 1.1 2004/12/17 00:11:38 ozeigermann Exp $
   * $Revision: 1.1 $
   * $Date: 2004/12/17 00:11:38 $
   *
   * ====================================================================
   *
   * Copyright 1999-2002 The Apache Software Foundation 
   *
   * Licensed 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.commons.transaction.util;
  
  /**
   * Simple counter barrier to make a sequence of calls from different threads deterministic.
   * 
   * @version $Revision: 1.1 $
   */
  public class CounterBarrier {
  
      public static final int DEFAULT_TIMEOUT = 20000;
  
      protected final String name;
  
      protected int currentNumber;
  
      protected long timeout;
  
      protected LoggerFacade logger;
  
      public CounterBarrier(String name, long timeout, LoggerFacade logger) {
          this.name = name;
          this.timeout = timeout;
          this.logger = logger;
          currentNumber = 0;
      }
  
      /**
       * Compares the number to the the internal counter. If it is greater than the counter
       * it's not our turn and we wait. If it is eqaul we increment the internal counter and let
       * others check if it is their turn now. 
       */
      public synchronized void count(int number) throws InterruptedException {
          if (number > currentNumber) {
              long started = System.currentTimeMillis();
              for (long remaining = timeout; remaining > 0 && number > currentNumber; remaining = timeout
                      - (System.currentTimeMillis() - started)) {
                  wait(remaining);
              }
          }
          if (number == currentNumber) {
              currentNumber++;
              notifyAll();
          }
      }
  
      public synchronized void reset() {
          currentNumber = 0;
          notifyAll();
      }
  }
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org