Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Refactor config string processing logic into a util class (#2015)
Refactor config string processing logic into a util class
- Loading branch information
Showing
5 changed files
with
87 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package org.apache.helix.constants; | ||
|
||
public class InstanceConstants { | ||
public static final String INSTANCE_NOT_DISABLED = "INSTANCE_NOT_DISABLED"; | ||
|
||
public enum InstanceDisabledType { | ||
CLOUD_EVENT, | ||
USER_OPERATION, | ||
DEFAULT_INSTANCE_DISABLE_TYPE, | ||
INSTANCE_NOT_DISABLED | ||
DEFAULT_INSTANCE_DISABLE_TYPE | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
package org.apache.helix.util; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.stream.Collectors; | ||
|
||
public final class ConfigStringUtil { | ||
private static final String CONCATENATE_CONFIG_SPLITTER = ","; | ||
private static final String CONCATENATE_CONFIG_JOINER = "="; | ||
|
||
private ConfigStringUtil() { | ||
throw new java.lang.UnsupportedOperationException( | ||
"Utility class ConfigStringUtil and cannot be instantiated"); | ||
} | ||
|
||
/** | ||
* Parse a string represented map into a map. | ||
* @param inputStr "propName0=propVal0,propName1=propVal1" | ||
* @return map {[propName0, propVal0], [propName1, propVal1]}" | ||
*/ | ||
public static Map<String, String> parseConcatenatedConfig(String inputStr) { | ||
Map<String, String> resultMap = new HashMap<>(); | ||
if (inputStr == null || inputStr.isEmpty()) { | ||
return resultMap; | ||
} | ||
String[] pathPairs = inputStr.trim().split(CONCATENATE_CONFIG_SPLITTER); | ||
for (String pair : pathPairs) { | ||
String[] values = pair.split(CONCATENATE_CONFIG_JOINER); | ||
if (values.length != 2 || values[0].isEmpty() || values[1].isEmpty()) { | ||
throw new IllegalArgumentException( | ||
String.format("Domain-Value pair %s is not valid.", pair)); | ||
} | ||
resultMap.put(values[0].trim(), values[1].trim()); | ||
} | ||
return resultMap; | ||
} | ||
|
||
/** | ||
* Concatenate a map into a string . | ||
* @param inputMap {[propName0, propVal0], [propName1, propVal1]} | ||
* @return String "propName0=propVal0,propName1=propVal1" | ||
*/ | ||
public static String concatenateMapping(Map<String, String> inputMap) { | ||
return inputMap | ||
.entrySet() | ||
.stream() | ||
.map(entry -> entry.getKey() + CONCATENATE_CONFIG_JOINER + entry.getValue()) | ||
.collect(Collectors.joining(CONCATENATE_CONFIG_SPLITTER)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters