View Javadoc
1   /*
2    * Portions of this software was developed by employees of the National Institute
3    * of Standards and Technology (NIST), an agency of the Federal Government and is
4    * being made available as a public service. Pursuant to title 17 United States
5    * Code Section 105, works of NIST employees are not subject to copyright
6    * protection in the United States. This software may be subject to foreign
7    * copyright. Permission in the United States and in foreign countries, to the
8    * extent that NIST may hold copyright, to use, copy, modify, create derivative
9    * works, and distribute this software and its documentation without fee is hereby
10   * granted on a non-exclusive basis, provided that this notice and disclaimer
11   * of warranty appears in all copies.
12   *
13   * THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER
14   * EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY
15   * THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF
16   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM
17   * INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE
18   * SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE.  IN NO EVENT
19   * SHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT,
20   * INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM,
21   * OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY,
22   * CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR
23   * PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT
24   * OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER.
25   */
26  
27  package gov.nist.secauto.oscal.lib.profile.resolver;
28  
29  import gov.nist.secauto.metaschema.model.common.util.CollectionUtil;
30  
31  import java.util.Collections;
32  import java.util.LinkedHashMap;
33  import java.util.List;
34  import java.util.Map;
35  import java.util.Objects;
36  import java.util.function.Function;
37  import java.util.stream.Collectors;
38  import java.util.stream.Stream;
39  
40  import edu.umd.cs.findbugs.annotations.NonNull;
41  import edu.umd.cs.findbugs.annotations.Nullable;
42  
43  public final class ModifyPhaseUtils {
44    private ModifyPhaseUtils() {
45      // disable construction
46    }
47  
48    public static <T> Function<? super T, String> identityKey() {
49      return (item) -> Integer.toString(Objects.hashCode(item));
50    }
51  
52    public static <T, R> Function<? super T, String> identifierKey(@NonNull Function<T, R> identifierFunction) {
53      return (item) -> {
54        R identifier = identifierFunction.apply(item);
55        String retval;
56        if (identifier == null) {
57          retval = Integer.toString(Objects.hashCode(item));
58        } else {
59          retval = identifier.toString();
60        }
61        return retval;
62      };
63    }
64  
65    @SuppressWarnings("PMD.OnlyOneReturn") // readability
66    public static <T> T mergeItem(@Nullable T original, @Nullable T additional) {
67      if (additional == null) {
68        return original;
69      }
70  
71      return additional;
72    }
73  
74    @SuppressWarnings("PMD.OnlyOneReturn") // readability
75    public static <T> List<T> merge(@Nullable List<T> original, @Nullable List<T> additional,
76        Function<? super T, String> keyFunction) {
77      if (additional == null || additional.isEmpty()) {
78        return original;
79      }
80  
81      if (original == null || original.isEmpty()) {
82        return additional;
83      }
84  
85      // reverse the stream
86      List<T> reversed = Stream.concat(
87          CollectionUtil.listOrEmpty(original).stream(),
88          CollectionUtil.listOrEmpty(additional).stream())
89          .collect(Collectors.collectingAndThen(
90              Collectors.toList(),
91              l -> {
92                Collections.reverse(l);
93                return l;
94              }));
95  
96      // build a map of each unique identity
97      Map<String, List<T>> identityMap = reversed.stream()
98          .collect(Collectors.groupingBy(keyFunction, LinkedHashMap::new, Collectors.toList()));
99  
100     // build a reversed list of items, using the first item
101     return identityMap.values().stream()
102         .map(list -> list.stream().findFirst().get())
103         .collect(Collectors.collectingAndThen(
104             Collectors.toList(),
105             l -> {
106               Collections.reverse(l);
107               return l;
108             }));
109   }
110 }