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

com.googlecode.sarasvati.mem.MemArcToken Maven / Gradle / Ivy

The newest version!
/*
    This file is part of Sarasvati.

    Sarasvati is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.

    Sarasvati is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with Sarasvati.  If not, see .

    Copyright 2008-2009 Paul Lorenz
*/

package com.googlecode.sarasvati.mem;

import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;

import com.googlecode.sarasvati.Arc;
import com.googlecode.sarasvati.ArcToken;
import com.googlecode.sarasvati.ArcTokenSetMember;
import com.googlecode.sarasvati.ExecutionType;
import com.googlecode.sarasvati.GraphProcess;
import com.googlecode.sarasvati.NodeToken;
import com.googlecode.sarasvati.visitor.TokenVisitor;

public class MemArcToken implements ArcToken
{
  private static AtomicLong idGenerator = new AtomicLong(0);

  protected final Long id;
  protected Arc arc;
  protected GraphProcess process;
  protected NodeToken parentToken;
  protected NodeToken childToken;
  protected boolean pending;
  protected Date completeDate;
  protected ExecutionType executionType;

  protected Set tokenSetMemberships = new HashSet();

  public MemArcToken (final Arc arc, final GraphProcess process, final ExecutionType executionType, final NodeToken parentToken)
  {
    this.id = idGenerator.incrementAndGet();
    this.arc = arc;
    this.process = process;
    this.executionType = executionType;
    this.parentToken = parentToken;
    this.pending = true;
  }

  @Override
  public Long getId()
  {
    return id;
  }

  @Override
  public Arc getArc ()
  {
    return arc;
  }

  @Override
  public GraphProcess getProcess ()
  {
    return process;
  }

  @Override
  public NodeToken getParentToken ()
  {
    return parentToken;
  }

  @Override
  public NodeToken getChildToken()
  {
    return childToken;
  }

  @Override
  public boolean isComplete ()
  {
    return completeDate != null;
  }

  @Override
  public void markComplete (final NodeToken token)
  {
    this.completeDate = new Date();
    this.childToken = token;
  }

  @Override
  public boolean isPending ()
  {
    return pending;
  }

  @Override
  public void markProcessed ()
  {
    this.pending = false;
  }

  @Override
  public ExecutionType getExecutionType ()
  {
    return executionType;
  }

  @Override
  public void markBacktracked ()
  {
    executionType = executionType.getCorrespondingBacktracked( isComplete() );
  }

  @Override
  public void accept (final TokenVisitor visitor)
  {
    visitor.visit( this );
  }

  @Override
  public Set getTokenSetMemberships ()
  {
    return tokenSetMemberships;
  }

  /**
   * @see com.googlecode.sarasvati.ArcToken#isTokenSetMember()
   */
  @Override
  public boolean isTokenSetMember()
  {
    return !tokenSetMemberships.isEmpty();
  }

  @Override
  public String toString ()
  {
    return "[MemArcToken execType=" + executionType + " arc=" + getArc() + " complete? " + isComplete() + " hash=" + hashCode() + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy