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

net.sf.mpxj.RelationContainer Maven / Gradle / Ivy

Go to download

Library that provides facilities to allow project information to be manipulated in Java and .Net. Supports a range of data formats: Microsoft Project Exchange (MPX), Microsoft Project (MPP,MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), Primavera (PM XML, XER, and database), Asta Powerproject (PP, MDB), Asta Easyplan (PP), Phoenix Project Manager (PPX), FastTrack Schedule (FTS), and the Standard Data Exchange Format (SDEF).

There is a newer version: 13.6.0
Show newest version
/*
 * file:       RelationContainer.java
 * author:     Jon Iles
 * date:       2023-10-09
 */

/*
 * This library 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 2.1 of the License, or (at your
 * option) any later version.
 *
 * This library 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 this library; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

package net.sf.mpxj;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

/**
 * Represents Relation instances from the current project.
 */
public class RelationContainer extends ProjectEntityContainer
{
   /**
    * Constructor.
    *
    * @param projectFile parent project
    */
   public RelationContainer(ProjectFile projectFile)
   {
      super(projectFile);
   }

   /**
    * Retrieve the predecessors for a given task.
    *
    * @param task task
    * @return task predecessors
    */
   public List getPredecessors(Task task)
   {
      return m_predecessors.getOrDefault(task, EMPTY_LIST);
   }

   @Override protected void added(Relation element)
   {
      m_predecessors.computeIfAbsent(element.getSourceTask(), t -> new ArrayList<>()).add(element);
      m_successors.computeIfAbsent(element.getTargetTask(), t -> new ArrayList<>()).add(element);
   }

   @Override protected void removed(Relation element)
   {
      m_predecessors.getOrDefault(element.getSourceTask(), EMPTY_LIST).remove(element);
      m_successors.getOrDefault(element.getTargetTask(), EMPTY_LIST).remove(element);
   }

   @Override protected void replaced(Relation oldElement, Relation newElement)
   {
      removed(oldElement);
      added(newElement);
   }

   /**
    * Retrieve the successors of a given task.
    * Note that the convention currently used by MPXJ is that the source task in the relation
    * object is the current task, and the target task is the predecessor or successor.
    * As we're only storing Relation instances representing predecessors, in order to
    * conform to the convention for successors we need create a new list of Relation instances with
    * transposed source and target tasks.
    * TODO: review to determine if we need to continue with this approach
    *
    * @param task task
    * @return task successors
    */
   public List getSuccessors(Task task)
   {
      return getRawSuccessors(task).stream().map(r -> new Relation.Builder().from(r).sourceTask(r.getTargetTask()).targetTask(r.getSourceTask()).build()).collect(Collectors.toList());
   }

   /**
    * Retrieve the successors for a task in their "raw" form where each
    * Relation instance lists the successor as the source task attribute and
    * the predecessor as the target task attribute.
    *
    * @param task task
    * @return raw task successors
    */
   public List getRawSuccessors(Task task)
   {
      return m_successors.getOrDefault(task, EMPTY_LIST);
   }

   /**
    * Add a predecessor relationship using the Relation instance created by the
    * supplied relation.Builder.
    *
    * @param builder Relation.Builder instance
    * @return Relation instance
    */
   public Relation addPredecessor(Relation.Builder builder)
   {
      //
      // Retrieve the list of predecessors
      //
      List predecessorList = m_predecessors.getOrDefault(builder.m_sourceTask, EMPTY_LIST);

      //
      // Ensure that there is only one predecessor relationship between
      // these two tasks.
      //
      for (Relation relation : predecessorList)
      {
         if (relation.getTargetTask() == builder.m_targetTask)
         {
            if (relation.getType() == builder.m_type && relation.getLag().compareTo(builder.m_lag) == 0)
            {
               return relation;
            }
            break;
         }
      }

      //
      // If necessary, create a new predecessor relationship
      //
      Relation predecessorRelation = builder.build();
      add(predecessorRelation);

      return predecessorRelation;
   }

   /**
    * Remove a matching predecessor relationship from a task.
    *
    * @param sourceTask source task
    * @param targetTask target task (the predecessor to remove)
    * @param type relationship type
    * @param lag relationship lag
    * @return true if a matching predecessor was removed
    */
   public boolean removePredecessor(Task sourceTask, Task targetTask, RelationType type, Duration lag)
   {
      //
      // Retrieve the list of predecessors
      //
      List predecessorList = m_predecessors.getOrDefault(sourceTask, EMPTY_LIST);
      if (predecessorList.isEmpty())
      {
         return false;
      }

      //
      // Ensure that we have a valid lag duration
      //
      if (lag == null)
      {
         lag = Duration.getInstance(0, TimeUnit.DAYS);
      }

      boolean matchFound = false;
      for (Relation relation : predecessorList)
      {
         if (relation.getTargetTask() == targetTask && relation.getType() == type && relation.getLag().compareTo(lag) == 0)
         {
            matchFound = true;
            remove(relation);
            break;
         }
      }
      return matchFound;
   }

   private final Map> m_predecessors = new HashMap<>();
   private final Map> m_successors = new HashMap<>();
   private static final List EMPTY_LIST = Collections.emptyList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy