Skip to main content
summaryrefslogtreecommitdiffstats
blob: fb628c2a291e7444cc13b4f624b1326cbefcfc83 (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
/*******************************************************************************
 * Copyright (c) 2012 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.orcs.rest.internal.search.artifact.predicate;

import java.util.Collection;
import java.util.LinkedHashSet;
import org.eclipse.osee.framework.core.data.IArtifactType;
import org.eclipse.osee.framework.core.data.IAttributeType;
import org.eclipse.osee.framework.core.data.IRelationType;
import org.eclipse.osee.framework.core.data.RelationTypeSide;
import org.eclipse.osee.framework.core.data.TokenFactory;
import org.eclipse.osee.framework.core.enums.RelationSide;
import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
import org.eclipse.osee.framework.jdk.core.util.HexUtil;

/**
 * @author John R. Misinco
 * @author Roberto E. Escobar
 */
public class PredicateHandlerUtil {

   public static Collection<IAttributeType> getIAttributeTypes(Collection<String> types) throws OseeCoreException {
      Collection<IAttributeType> attrTypes = new LinkedHashSet<>();
      for (String value : types) {
         long uuid = parseUuid(value);
         if (uuid != -1L) {
            attrTypes.add(TokenFactory.createAttributeType(uuid, "SearchAttributeType"));
         }
      }
      return attrTypes;
   }

   public static Collection<IArtifactType> getIArtifactTypes(Collection<String> types) throws OseeCoreException {
      Collection<IArtifactType> artTypes = new LinkedHashSet<>();
      for (String value : types) {
         long uuid = parseUuid(value);
         if (uuid != -1L) {
            artTypes.add(TokenFactory.createArtifactType(uuid, "SearchArtifactType"));
         }
      }
      return artTypes;
   }

   public static Collection<IRelationType> getIRelationTypes(Collection<String> rels) throws OseeCoreException {
      Collection<IRelationType> types = new LinkedHashSet<>();
      for (String value : rels) {
         long longUuid = parseUuid(value);
         if (longUuid != -1L) {
            types.add(TokenFactory.createRelationType(longUuid, "SearchRelationType"));
         }
      }
      return types;
   }

   public static Collection<RelationTypeSide> getRelationTypeSides(Collection<String> rels) throws OseeCoreException {
      Collection<RelationTypeSide> relSides = new LinkedHashSet<>();
      for (String value : rels) {
         char sideChar = value.charAt(0);
         String uuid = value.substring(1);
         RelationSide side = RelationSide.SIDE_A;
         if (sideChar == 'B') {
            side = RelationSide.SIDE_B;
         }
         long longUuid = parseUuid(uuid);
         if (longUuid != -1L) {
            relSides.add(RelationTypeSide.create(side, longUuid, "SearchRelationTypeSide"));
         }
      }
      return relSides;
   }

   private static long parseUuid(String uuid) throws OseeCoreException {
      if (uuid.matches("-?\\d+")) {
         return Long.parseLong(uuid);
      } else if (HexUtil.isHexString(uuid)) {
         return HexUtil.toLong(uuid);
      }
      return -1L;
   }
}

Back to the top