Merge "Install tools/libs from doc hub image"
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / util / Split.java
1 /**\r
2  * ============LICENSE_START====================================================\r
3  * org.onap.aaf\r
4  * ===========================================================================\r
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.\r
6  * ===========================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END====================================================\r
19  *\r
20  */\r
21 \r
22 package org.onap.aaf.misc.env.util;\r
23 \r
24 /**\r
25  * Split by Char, optional Trim\r
26  * \r
27  * Note: I read the String split and Pattern split code, and we can do this more efficiently for a single Character\r
28  * \r
29  * Jonathan 8/20/2015\r
30  */\r
31 \r
32 public class Split {\r
33           public static String[] split(char c, String value) {\r
34                   // Count items to preallocate Array (memory alloc is more expensive than counting twice)\r
35                   int count,idx;\r
36                   for(count=1,idx=value.indexOf(c);idx>=0;idx=value.indexOf(c,++idx),++count);\r
37                   String[] rv = new String[count];\r
38                   if(count==1) {\r
39                           rv[0]=value;\r
40                   } else {\r
41                           int last=0;\r
42                           count=-1;\r
43                           for(idx=value.indexOf(c);idx>=0;idx=value.indexOf(c,idx)) {\r
44                                   rv[++count]=value.substring(last,idx);\r
45                                   last = ++idx;\r
46                           }\r
47                           rv[++count]=value.substring(last);\r
48                   }\r
49                   return rv;\r
50           }\r
51 \r
52           public static String[] splitTrim(char c, String value) {\r
53                   // Count items to preallocate Array (memory alloc is more expensive than counting twice)\r
54                   int count,idx;\r
55                   for(count=1,idx=value.indexOf(c);idx>=0;idx=value.indexOf(c,++idx),++count);\r
56                   String[] rv = new String[count];\r
57                   if(count==1) {\r
58                           rv[0]=value.trim();\r
59                   } else {\r
60                           int last=0;\r
61                           count=-1;\r
62                           for(idx=value.indexOf(c);idx>=0;idx=value.indexOf(c,idx)) {\r
63                                   rv[++count]=value.substring(last,idx).trim();\r
64                                   last = ++idx;\r
65                           }\r
66                           rv[++count]=value.substring(last).trim();\r
67                   }\r
68                   return rv;\r
69           }\r
70 \r
71           public static String[] splitTrim(char c, String value, int size) {\r
72                   int idx;\r
73                   String[] rv = new String[size];\r
74                   if(size==1) {\r
75                           rv[0]=value.trim();\r
76                   } else {\r
77                           int last=0;\r
78                           int count=-1;\r
79                           size-=2;\r
80                           for(idx=value.indexOf(c);idx>=0 && count<size;idx=value.indexOf(c,idx)) {\r
81                                   rv[++count]=value.substring(last,idx).trim();\r
82                                   last = ++idx;\r
83                           }\r
84                           rv[++count]=value.substring(last).trim();\r
85                   }\r
86                   return rv;\r
87           }\r
88 \r
89 }\r