blob: 84cefed66774ff9e2ed5e1e516b9ab60db385e7d [file] [log] [blame]
/*
* 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.
*/
package org.apache.ignite.binary;
import java.io.Serializable;
import org.apache.ignite.configuration.BinaryConfiguration;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.internal.util.typedef.internal.A;
import org.apache.ignite.internal.util.typedef.internal.S;
import org.jetbrains.annotations.Nullable;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Defines configuration properties for a specific binary type. Providing per-type
* configuration is optional, as it is generally enough, and also optional, to provide global binary
* configuration using {@link IgniteConfiguration#setBinaryConfiguration(BinaryConfiguration)}.
* However, this class allows you to change configuration properties for a specific
* binary type without affecting configuration for other binary types.
*/
public class BinaryTypeConfiguration implements Serializable {
/** Serial version uid. */
private static final long serialVersionUID = 0L;
/** Class name. */
private String typeName;
/** ID mapper. */
private BinaryIdMapper idMapper;
/** Name mapper. */
private BinaryNameMapper nameMapper;
/** Serializer. */
private BinarySerializer serializer;
/** Enum flag. */
private boolean isEnum;
/** Enum names to ordinals mapping. */
private Map<String, Integer> enumValues;
/**
* Constructor.
*/
public BinaryTypeConfiguration() {
// No-op.
}
/**
* Copying constructor.
*
* @param other Other instance.
*/
public BinaryTypeConfiguration(BinaryTypeConfiguration other) {
A.notNull(other, "other");
idMapper = other.idMapper;
isEnum = other.isEnum;
serializer = other.serializer;
enumValues = other.enumValues != null ? new LinkedHashMap<>(other.enumValues) : null;
typeName = other.typeName;
}
/**
* @param typeName Class name.
*/
public BinaryTypeConfiguration(String typeName) {
this.typeName = typeName;
}
/**
* Gets type name.
*
* @return Type name.
*/
public String getTypeName() {
return typeName;
}
/**
* Sets type name.
*
* @param typeName Type name.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setTypeName(String typeName) {
this.typeName = typeName;
return this;
}
/**
* Gets ID mapper.
*
* @return ID mapper.
*/
public BinaryIdMapper getIdMapper() {
return idMapper;
}
/**
* Sets ID mapper.
*
* @param idMapper ID mapper.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setIdMapper(BinaryIdMapper idMapper) {
this.idMapper = idMapper;
return this;
}
/**
* Gets name mapper.
*
* @return Name mapper.
*/
public BinaryNameMapper getNameMapper() {
return nameMapper;
}
/**
* Sets name mapper.
*
* @param nameMapper Name mapper.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setNameMapper(BinaryNameMapper nameMapper) {
this.nameMapper = nameMapper;
return this;
}
/**
* Gets serializer.
*
* @return Serializer.
*/
public BinarySerializer getSerializer() {
return serializer;
}
/**
* Sets serializer.
*
* @param serializer Serializer.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setSerializer(BinarySerializer serializer) {
this.serializer = serializer;
return this;
}
/**
* Gets whether this is enum type.
*
* @return {@code True} if enum.
*/
public boolean isEnum() {
return isEnum;
}
/**
* Sets whether this is enum type.
*
* @param isEnum {@code True} if enum.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setEnum(boolean isEnum) {
this.isEnum = isEnum;
return this;
}
/**
* Set enum ordinal to names mapping.
*
* @param values Map of enum name to ordinal.
* @return {@code this} for chaining.
*/
public BinaryTypeConfiguration setEnumValues(@Nullable Map<String, Integer> values) {
this.enumValues = values;
return this;
}
/**
* @return Enum name to ordinal mapping
*/
@Nullable public Map<String, Integer> getEnumValues() {
return enumValues;
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(BinaryTypeConfiguration.class, this, super.toString());
}
}