blob: 161d0cef1d4f973bcef27cfa651f0f4737a72eac [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.datasketches.tuple;
import org.apache.datasketches.Family;
import org.apache.datasketches.SketchesArgumentException;
import org.apache.datasketches.memory.Memory;
/**
* Multipurpose serializer-deserializer for a collection of sketches defined by the enum.
*/
public final class SerializerDeserializer {
/**
* Defines the sketch classes that this SerializerDeserializer can handle.
*/
@SuppressWarnings("javadoc")
public static enum SketchType { QuickSelectSketch, CompactSketch, ArrayOfDoublesQuickSelectSketch,
ArrayOfDoublesCompactSketch, ArrayOfDoublesUnion }
static final int TYPE_BYTE_OFFSET = 3;
/**
* Validates the preamble-Longs value given the family ID
* @param familyId the given family ID
* @param preambleLongs the given preambleLongs value
*/
public static void validateFamily(final byte familyId, final byte preambleLongs) {
final Family family = Family.idToFamily(familyId);
if (family.equals(Family.TUPLE)) {
if (preambleLongs != Family.TUPLE.getMinPreLongs()) {
throw new SketchesArgumentException(
"Possible corruption: Invalid PreambleLongs value for family TUPLE: " + preambleLongs);
}
} else {
throw new SketchesArgumentException(
"Possible corruption: Invalid Family: " + family.toString());
}
}
/**
* Validates the sketch type byte versus the expected value
* @param sketchTypeByte the given sketch type byte
* @param expectedType the expected value
*/
public static void validateType(final byte sketchTypeByte, final SketchType expectedType) {
final SketchType sketchType = getSketchType(sketchTypeByte);
if (!sketchType.equals(expectedType)) {
throw new SketchesArgumentException("Sketch Type mismatch. Expected " + expectedType.name()
+ ", got " + sketchType.name());
}
}
/**
* Gets the sketch type byte from the given Memory image
* @param mem the given Memory image
* @return the SketchType
*/
public static SketchType getSketchType(final Memory mem) {
final byte sketchTypeByte = mem.getByte(TYPE_BYTE_OFFSET);
return getSketchType(sketchTypeByte);
}
private static SketchType getSketchType(final byte sketchTypeByte) {
if ((sketchTypeByte < 0) || (sketchTypeByte >= SketchType.values().length)) {
throw new SketchesArgumentException("Invalid Sketch Type " + sketchTypeByte);
}
return SketchType.values()[sketchTypeByte];
}
}