Revert "Support SIP TLS"
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / util / StreamUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.common.util;
21
22 import java.util.ArrayList;
23 import java.util.List;
24 import java.util.Spliterator;
25 import java.util.Spliterators.AbstractSpliterator;
26 import java.util.function.Consumer;
27 import java.util.function.Predicate;
28 import java.util.stream.Stream;
29 import java.util.stream.StreamSupport;
30
31 /**
32  * Utility Class For Actions On Streams
33  *
34  * @author mshitrit
35  */
36 public final class StreamUtils {
37
38     private StreamUtils() {
39         throw new UnsupportedOperationException();
40     }
41
42     /**
43      * Breaks the stream when the predicate is not met.<br> Does not evaluate elements after the stream breaks.<br> This method evaluates the
44      * stream.<br>
45      *
46      * @param stream
47      * @param predicate
48      * @return
49      */
50     public static <T> Stream<T> takeWhilePlusOneNoEval(Stream<T> stream, Predicate<T> predicate) {
51         List<T> results = new ArrayList<>();
52         Consumer<T> listAdder = results::add;
53         stream.map(e -> {
54             listAdder.accept(e);
55             return e;
56         }).filter(e -> !predicate.test(e)).findFirst();
57         return results.stream();
58     }
59
60     public static <T> Stream<T> takeWhile(Stream<T> stream, Predicate<T> predicate) {
61         return StreamSupport.stream(takeWhile(stream.spliterator(), predicate), false);
62     }
63
64     public static <T> Stream<T> takeWhilePlusOne(Stream<T> stream, Predicate<T> predicate) {
65         return StreamSupport.stream(takeWhile(stream.spliterator(), new StopAfterFailPredicate<>(predicate)), false);
66     }
67
68     private static <T> Spliterator<T> takeWhile(Spliterator<T> splitr, Predicate<T> predicate) {
69         return new MySplitIterator<>(splitr, predicate);
70     }
71
72     public static class MySplitIterator<T> extends AbstractSpliterator<T> implements Spliterator<T> {
73
74         boolean stillGoing = true;
75         private Spliterator<T> innerItr;
76         private Predicate<T> innerPred;
77
78         private MySplitIterator(Spliterator<T> splitItr, Predicate<T> pred) {
79             super(splitItr.estimateSize(), 0);
80             innerItr = splitItr;
81             innerPred = pred;
82         }
83
84         @Override
85         public boolean tryAdvance(Consumer<? super T> action) {
86             boolean canAdvance = true;
87             if (stillGoing) {
88                 stillGoing = innerItr.tryAdvance(createConsumerWrapper(action));
89             } else {
90                 canAdvance = false;
91             }
92             return canAdvance;
93         }
94
95         private Consumer<? super T> createConsumerWrapper(Consumer<? super T> action) {
96             return new Consumer<T>() {
97                 @Override
98                 public void accept(T t) {
99                     stillGoing = innerPred.test(t);
100                     if (stillGoing) {
101                         action.accept(t);
102                     }
103                 }
104             };
105         }
106     }
107
108     public static class StopAfterFailPredicate<T> implements Predicate<T> {
109
110         boolean hasNotFailed;
111         Predicate<T> innerPredicate;
112
113         private StopAfterFailPredicate(Predicate<T> pred) {
114             hasNotFailed = true;
115             innerPredicate = pred;
116         }
117
118         ;
119
120         @Override
121         public boolean test(T t) {
122             boolean isPassed;
123             if (hasNotFailed) {
124                 isPassed = true;
125                 hasNotFailed = innerPredicate.test(t);
126             } else {
127                 isPassed = false;
128             }
129             return isPassed;
130         }
131     }
132 }