Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1bcd0c38c9eae0829f12ad22dcf301882f1e9fdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*******************************************************************************
 * Copyright (c) 2013 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ats.core.client.ev;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osee.ats.api.ai.IAtsActionableItem;
import org.eclipse.osee.ats.api.data.AtsAttributeTypes;
import org.eclipse.osee.ats.api.data.AtsRelationTypes;
import org.eclipse.osee.ats.api.ev.IAtsWorkPackage;
import org.eclipse.osee.ats.api.team.IAtsTeamDefinition;
import org.eclipse.osee.ats.core.client.internal.Activator;
import org.eclipse.osee.ats.core.client.search.AtsArtifactQuery;
import org.eclipse.osee.ats.core.util.AtsUtilCore;
import org.eclipse.osee.framework.core.enums.Active;
import org.eclipse.osee.framework.core.operation.AbstractOperation;
import org.eclipse.osee.framework.jdk.core.type.OseeArgumentException;
import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
import org.eclipse.osee.framework.jdk.core.util.Conditions;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;

/**
 * @author Donald G. Dunne
 */
public class SearchWorkPackageOperation extends AbstractOperation {

   private final Collection<IAtsTeamDefinition> teamDefs;
   private final Collection<IAtsActionableItem> ais;
   private final Active activeWorkPkgs;
   private final Set<Artifact> results = new HashSet<>();
   private final boolean includeChildrenTeamDefs;
   private final boolean includeChildrenAis;

   public SearchWorkPackageOperation(String operationName, Collection<IAtsTeamDefinition> teamDefs, boolean includeChildrenTeamDefs, Collection<IAtsActionableItem> ais, boolean includeChildrenAis, Active activeWorkPkgs) {
      super(operationName, Activator.PLUGIN_ID);
      this.includeChildrenTeamDefs = includeChildrenTeamDefs;
      this.includeChildrenAis = includeChildrenAis;
      Conditions.notNull(teamDefs);
      Conditions.notNull(ais);
      Conditions.notNull(activeWorkPkgs);
      this.teamDefs = teamDefs;
      this.ais = ais;
      this.activeWorkPkgs = activeWorkPkgs;
   }

   @Override
   protected void doWork(IProgressMonitor monitor) throws OseeCoreException {
      if (teamDefs.isEmpty() && ais.isEmpty()) {
         throw new OseeArgumentException("ERROR", "Must provide Team Definitions or Actionable Items");
      }
      checkForCancelledStatus(monitor);
      List<String> guids = new ArrayList<>();
      addAllTeamDefGuids(monitor, teamDefs, includeChildrenTeamDefs, guids);
      addAllAisGuids(monitor, ais, includeChildrenAis, guids);

      for (Artifact teamOrAiArt : AtsArtifactQuery.getArtifactListFromIds(guids)) {
         for (Artifact workPkgArt : teamOrAiArt.getRelatedArtifacts(AtsRelationTypes.WorkPackage_WorkPackage)) {
            boolean active = workPkgArt.getSoleAttributeValue(AtsAttributeTypes.Active, true);
            if (activeWorkPkgs == Active.Both || ((active && activeWorkPkgs == Active.Active) || (!active && activeWorkPkgs == Active.InActive))) {
               results.add(workPkgArt);
            }
            checkForCancelledStatus(monitor);
         }
         checkForCancelledStatus(monitor);
      }
   }

   private void addAllAisGuids(IProgressMonitor monitor, Collection<IAtsActionableItem> ais2, boolean includeChildrenAis2, List<String> guids) {
      for (IAtsActionableItem ai : ais2) {
         guids.add(AtsUtilCore.getGuid(ai));
         if (includeChildrenAis2) {
            addAllAisGuids(monitor, ai.getChildrenActionableItems(), includeChildrenAis2, guids);
            checkForCancelledStatus(monitor);
         }
      }
   }

   private void addAllTeamDefGuids(IProgressMonitor monitor, Collection<IAtsTeamDefinition> teamDefs2, boolean includeChildrenTeamDefs2, List<String> guids) {
      for (IAtsTeamDefinition teamDef : teamDefs2) {
         guids.add(AtsUtilCore.getGuid(teamDef));
         if (includeChildrenTeamDefs2) {
            addAllTeamDefGuids(monitor, teamDef.getChildrenTeamDefinitions(), includeChildrenTeamDefs2, guids);
            checkForCancelledStatus(monitor);
         }
      }
   }

   public Set<Artifact> getResultArtifacts() {
      return results;
   }

   public Set<IAtsWorkPackage> getResults() {
      Set<IAtsWorkPackage> resultWorkPgks = new HashSet<>();
      for (Artifact art : results) {
         resultWorkPgks.add(new WorkPackageArtifact(art));
      }
      return resultWorkPgks;
   }

}

Back to the top