org.apache.datasketches.tuple.SerializerDeserializer Maven / Gradle / Ivy
/*
* 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;
final class SerializerDeserializer {
static enum SketchType { QuickSelectSketch, CompactSketch, ArrayOfDoublesQuickSelectSketch,
ArrayOfDoublesCompactSketch, ArrayOfDoublesUnion }
static final int TYPE_BYTE_OFFSET = 3;
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());
}
}
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());
}
}
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];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy