Remove dead code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / utils / Utils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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
21 package org.openecomp.sdc.be.components.utils;
22
23 import org.apache.tinkerpop.shaded.minlog.Log;
24
25 import javax.validation.constraints.NotNull;
26 import java.security.SecureRandom;
27 import java.util.List;
28 import java.util.regex.Matcher;
29 import java.util.regex.Pattern;
30
31 public class Utils {
32
33     private static final Pattern COUNTER_PATTERN = Pattern.compile("\\d+$");
34     private static final SecureRandom random = new SecureRandom();
35
36
37     private Utils() {}
38
39     public static int getNextCounter(@NotNull List<String> existingValues) {
40         if (existingValues.isEmpty()) {
41             return 0;
42         }
43         try {
44             return 1 + existingValues.stream()
45                     .map(COUNTER_PATTERN::matcher)
46                     .filter(Matcher::find)
47                     .map(matcher -> matcher.group(0))
48                     .mapToInt(Integer::parseInt)
49                     .max()
50                     .orElse(0);
51         }
52         catch (Exception e) {
53             Log.warn("Failed in retrieivng counter from existing value: ", e);
54             return random.nextInt(100) + 50;
55         }
56     }
57 }