Skip to main content
summaryrefslogtreecommitdiffstats
blob: 14858243a01ada1a66f71e999582d46fe26dfaf5 (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) 2004, 2007 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.framework.branch.management.change;

import java.util.Collection;
import java.util.Iterator;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osee.framework.branch.management.internal.Activator;
import org.eclipse.osee.framework.core.enums.ModificationType;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.exception.OseeStateException;
import org.eclipse.osee.framework.core.message.ChangeItem;
import org.eclipse.osee.framework.core.message.ChangeItemUtil;
import org.eclipse.osee.framework.core.operation.AbstractOperation;

/**
 * @author Roberto E. Escobar
 */
public class ComputeNetChangeOperation extends AbstractOperation {
   private final Collection<ChangeItem> changes;

   public ComputeNetChangeOperation(Collection<ChangeItem> changes) {
      super("Compute Net Change", Activator.PLUGIN_ID);
      this.changes = changes;
   }

   @Override
   protected void doWork(IProgressMonitor monitor) throws Exception {
      if (!changes.isEmpty()) {
         double workPercentage = 1.0 / changes.size();

         Iterator<ChangeItem> iterator = changes.iterator();
         while (iterator.hasNext()) {
            checkForCancelledStatus(monitor);
            ChangeItem change = iterator.next();
            if (ChangeItemUtil.isIgnoreCase(change)) {
               iterator.remove();
            } else {
               checkForInvalidStates(change);

               if (!ChangeItemUtil.isModType(change.getNetChange(), ModificationType.MERGED)) {
                  ModificationType netModType = getNetModType(change);
                  if (netModType == null) {
                     throw new OseeStateException("Net Mod Type was null");
                  }
                  change.getNetChange().copy(change.getCurrentVersion());
                  change.getNetChange().setModType(netModType);
               } else {
                  if (ChangeItemUtil.isDeleted(change.getCurrentVersion())) {
                     change.getNetChange().copy(change.getCurrentVersion());
                  }
               }
            }
            monitor.worked(calculateWork(workPercentage));
         }
      } else {
         monitor.worked(calculateWork(1.0));
      }
   }

   private ModificationType getNetModType(ChangeItem change) {
      ModificationType modificationType;
      modificationType = calculateNetWithDestinationBranch(change);
      return modificationType;
   }

   private ModificationType calculateNetWithDestinationBranch(ChangeItem change) {
      ModificationType netModType = change.getCurrentVersion().getModType();
      if (change.getDestinationVersion().isValid() && (change.getBaselineVersion().isValid() || change.getFirstNonCurrentChange().isValid())) {
         netModType = change.getCurrentVersion().getModType();
      } else if (ChangeItemUtil.wasNewOnSource(change)) {
         netModType = ModificationType.NEW;
      } else if (ChangeItemUtil.wasIntroducedOnSource(change)) {
         netModType = ModificationType.INTRODUCED;
      } else if (!change.getDestinationVersion().isValid()) {
         if (!change.getBaselineVersion().isValid()) {
            netModType = ModificationType.NEW;
         } else {
            // Case when committing into non-parent
            netModType = ModificationType.INTRODUCED;
         }
      }
      return netModType;
   }

   private void checkForInvalidStates(ChangeItem change) throws OseeCoreException {
      // check for case where destination branch is missing an artifact that was modified (not new) on the source branch
      if (!change.getDestinationVersion().isValid() && change.getBaselineVersion().isValid()) {
         throw new OseeStateException(
            "This should be supported in the future - destination branch is not the source's parent: " + change);
      }

      if (change.getDestinationVersion().isValid() && ChangeItemUtil.isDeleted(change.getDestinationVersion())) {
         throw new OseeStateException("Destination was deleted - source should not modify: " + change);
      }

      if ((ChangeItemUtil.isIntroduced(change.getCurrentVersion()) || ChangeItemUtil.isNew(change.getCurrentVersion())) //
         && change.getDestinationVersion().isValid()) {
         throw new OseeStateException(
            "Source item marked as new/introduced but destination already has item: " + change);
      }

   }
}

Back to the top