blob: 174f6a8b05fcd85d5cee0ee0222019767c8158df [file] [log] [blame]
package org.apache.helix.api.config;
/*
* 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 com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.apache.helix.PropertyType;
/**
* Represents source physical cluster information for view cluster
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ViewClusterSourceConfig {
private static final List<PropertyType> _validPropertyTypes = Collections.unmodifiableList(
Arrays.asList(PropertyType.INSTANCES, PropertyType.EXTERNALVIEW, PropertyType.LIVEINSTANCES));
private static final ObjectMapper _objectMapper = new ObjectMapper();
private final String _name;
private final String _zkAddress;
private List<PropertyType> _properties;
@JsonCreator
public ViewClusterSourceConfig(
@JsonProperty("name") String name,
@JsonProperty("zkAddress") String zkAddress,
@JsonProperty("properties") List<PropertyType> properties
) {
_name = name;
_zkAddress = zkAddress;
_properties = properties;
}
public ViewClusterSourceConfig(ViewClusterSourceConfig config) {
this(config.getName(), config.getZkAddress(), new ArrayList<>(config.getProperties()));
}
public void setProperties(List<PropertyType> properties) {
for (PropertyType p : properties) {
if (!_validPropertyTypes.contains(p)) {
throw new IllegalArgumentException(
String.format("Property %s is not support in ViewCluster yet.", p));
}
}
_properties = properties;
}
public String getName() {
return _name;
}
public String getZkAddress() {
return _zkAddress;
}
public List<PropertyType> getProperties() {
return _properties;
}
@JsonIgnore
public static List<PropertyType> getValidPropertyTypes() {
return _validPropertyTypes;
}
public String toJson() throws IOException {
return _objectMapper.writeValueAsString(this);
}
public String toString() {
return String.format("name=%s; zkAddr=%s; properties=%s", _name, _zkAddress, _properties);
}
@Override
public boolean equals(Object other) {
if (other == null || !(other instanceof ViewClusterSourceConfig)) {
return false;
}
ViewClusterSourceConfig otherConfig = (ViewClusterSourceConfig) other;
return _name.equals(otherConfig.getName()) && _zkAddress.equals(otherConfig.getZkAddress())
&& _properties.containsAll(otherConfig.getProperties()) && otherConfig.getProperties()
.containsAll(_properties);
}
public static ViewClusterSourceConfig fromJson(String jsonString) {
try {
return _objectMapper.readValue(jsonString, ViewClusterSourceConfig.class);
} catch (Exception e) {
throw new IllegalArgumentException(
String.format("Invalid Json: %s, Exception: %s", jsonString, e.toString()));
}
}
}