![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.helix.webapp.resources.ClusterRepresentationUtil Maven / Gradle / Ivy
package org.apache.helix.webapp.resources;
/*
* 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.io.IOException;
import java.io.PrintWriter;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import org.apache.helix.HelixDataAccessor;
import org.apache.helix.HelixProperty;
import org.apache.helix.PropertyKey;
import org.apache.helix.PropertyKey.Builder;
import org.apache.helix.PropertyPathBuilder;
import org.apache.helix.PropertyType;
import org.apache.helix.manager.zk.ZKHelixDataAccessor;
import org.apache.helix.manager.zk.ZNRecordSerializer;
import org.apache.helix.manager.zk.ZkBaseDataAccessor;
import org.apache.helix.model.LiveInstance.LiveInstanceProperty;
import org.apache.helix.zookeeper.datamodel.ZNRecord;
import org.apache.helix.zookeeper.impl.client.ZkClient;
import org.restlet.data.Form;
import org.restlet.data.MediaType;
public class ClusterRepresentationUtil {
public static final ZNRecord EMPTY_ZNRECORD = new ZNRecord("EMPTY_ZNRECORD");
private static ObjectMapper mapper = new ObjectMapper();
public static String getClusterPropertyAsString(ZkClient zkClient, String clusterName,
PropertyKey propertyKey, MediaType mediaType)
throws JsonGenerationException, JsonMappingException, IOException {
return getClusterPropertyAsString(zkClient, clusterName, mediaType, propertyKey);
}
public static String getClusterPropertyAsString(ZkClient zkClient, String clusterName,
MediaType mediaType, PropertyKey propertyKey) throws JsonGenerationException,
JsonMappingException, IOException {
ZKHelixDataAccessor accessor =
new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
HelixProperty property = accessor.getProperty(propertyKey);
ZNRecord record = property == null ? null : property.getRecord();
return ZNRecordToJson(record);
}
public static String getInstancePropertyNameListAsString(ZkClient zkClient, String clusterName,
String instanceName, PropertyType instanceProperty, String key, MediaType mediaType)
throws JsonGenerationException, JsonMappingException, IOException {
String path = PropertyPathBuilder.instanceProperty(clusterName, instanceName, instanceProperty, key);
if (zkClient.exists(path)) {
List recordNames = zkClient.getChildren(path);
return ObjectToJson(recordNames);
}
return ObjectToJson(new ArrayList());
}
public static String getInstancePropertyAsString(ZkClient zkClient, String clusterName,
PropertyKey propertyKey, MediaType mediaType) throws JsonGenerationException,
JsonMappingException, IOException {
ZKHelixDataAccessor accessor =
new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
ZNRecord records = accessor.getProperty(propertyKey).getRecord();
return ZNRecordToJson(records);
}
public static String getInstancePropertiesAsString(ZkClient zkClient, String clusterName,
PropertyKey propertyKey, MediaType mediaType)
throws JsonGenerationException, JsonMappingException, IOException {
zkClient.setZkSerializer(new ZNRecordSerializer());
ZKHelixDataAccessor accessor =
new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
List records = HelixProperty.convertToList(accessor.getChildValues(propertyKey));
return ObjectToJson(records);
}
public static String getPropertyAsString(ZkClient zkClient, String clusterName,
PropertyKey propertyKey, MediaType mediaType) throws JsonGenerationException,
JsonMappingException, IOException {
ZKHelixDataAccessor accessor =
new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
ZNRecord record = EMPTY_ZNRECORD;
HelixProperty property = accessor.getProperty(propertyKey);
if (property != null) {
record = property.getRecord();
}
return ObjectToJson(record);
}
public static String ZNRecordToJson(ZNRecord record)
throws JsonGenerationException, JsonMappingException, IOException {
return ObjectToJson(record);
}
public static String ObjectToJson(Object object) throws JsonGenerationException,
JsonMappingException, IOException {
mapper.enable(SerializationFeature.INDENT_OUTPUT);
StringWriter sw = new StringWriter();
mapper.writeValue(sw, object);
return sw.toString();
}
public static HelixDataAccessor getClusterDataAccessor(ZkClient zkClient, String clusterName) {
return new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
}
public static T JsonToObject(Class clazz, String jsonString)
throws JsonParseException, JsonMappingException, IOException {
StringReader sr = new StringReader(jsonString);
return mapper.readValue(sr, clazz);
}
public static Map JsonToMap(String jsonString) throws JsonParseException,
JsonMappingException, IOException {
StringReader sr = new StringReader(jsonString);
TypeReference> typeRef = new TypeReference>() {
};
return mapper.readValue(sr, typeRef);
}
public static Map getFormJsonParameters(Form form) throws JsonParseException,
JsonMappingException, IOException {
String jsonPayload = form.getFirstValue(JsonParameters.JSON_PARAMETERS, true);
return ClusterRepresentationUtil.JsonToMap(jsonPayload);
}
public static Map getFormJsonParameters(Form form, String key)
throws JsonParseException, JsonMappingException, IOException {
String jsonPayload = form.getFirstValue(key, true);
return ClusterRepresentationUtil.JsonToMap(jsonPayload);
}
public static String getFormJsonParameterString(Form form, String key) throws JsonParseException,
JsonMappingException, IOException {
return form.getFirstValue(key, true);
}
public static T getFormJsonParameters(Class clazz, Form form, String key)
throws JsonParseException, JsonMappingException, IOException {
return JsonToObject(clazz, form.getFirstValue(key, true));
}
public static String getErrorAsJsonStringFromException(Exception e) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
String error = e.getMessage() + '\n' + sw.toString();
Map result = new TreeMap();
result.put("ERROR", error);
try {
return ObjectToJson(result);
} catch (Exception e1) {
StringWriter sw1 = new StringWriter();
PrintWriter pw1 = new PrintWriter(sw1);
e.printStackTrace(pw1);
return "{\"ERROR\": \"" + sw1.toString() + "\"}";
}
}
public static String getInstanceSessionId(ZkClient zkClient, String clusterName,
String instanceName) {
ZKHelixDataAccessor accessor =
new ZKHelixDataAccessor(clusterName, new ZkBaseDataAccessor(zkClient));
Builder keyBuilder = accessor.keyBuilder();
ZNRecord liveInstance = accessor.getProperty(keyBuilder.liveInstance(instanceName)).getRecord();
return liveInstance.getSimpleField(LiveInstanceProperty.SESSION_ID.toString());
}
public static List getInstancePropertyList(ZkClient zkClient, String clusterName,
String instanceName, PropertyType property, String key) {
String propertyPath = PropertyPathBuilder.instanceProperty(clusterName, instanceName, property, key);
return zkClient.getChildren(propertyPath);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy