blob: be78b4c43219a139cd9084e4a77efa8a1bfa897f [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.server;
import java.util.Base64;
import org.apache.datasketches.ArrayOfStringsSerDe;
import org.apache.datasketches.cpc.CpcSketch;
import org.apache.datasketches.frequencies.ItemsSketch;
import org.apache.datasketches.hll.HllSketch;
import org.apache.datasketches.kll.KllFloatsSketch;
import org.apache.datasketches.sampling.ReservoirItemsSketch;
import org.apache.datasketches.sampling.VarOptItemsSketch;
import org.apache.datasketches.theta.Union;
import com.google.gson.JsonObject;
import static org.apache.datasketches.server.SketchConstants.*;
/**
* Returns a serialized image of a sketch, encoded in base64, as well as the sketch family and, if relevant,
* the <tt>ValueType</tt> used.
* <pre>
* {
* "name": "&lt;sketch_name&gt;"
* }
* </pre>
*/
public class SerializationHandler extends BaseSketchesQueryHandler {
public SerializationHandler(SketchStorage sketches) {
super(sketches, false);
}
@Override
@SuppressWarnings("unchecked")
protected JsonObject processQuery(JsonObject query) {
if (!query.has(QUERY_NAME_FIELD)) {
throw new IllegalArgumentException("Query missing sketch name field");
}
String name = query.get(QUERY_NAME_FIELD).getAsString();
if (!sketches.contains(name)) {
throw new IllegalArgumentException("Invalid sketch name: " + name);
}
SketchStorage.SketchEntry se = sketches.getSketch(name);
byte[] bytes;
switch (se.family) {
case UNION:
bytes = ((Union) se.sketch).getResult().toByteArray();
break;
case KLL:
bytes = ((KllFloatsSketch) se.sketch).toByteArray();
break;
case FREQUENCY:
bytes = ((ItemsSketch<String>) se.sketch).toByteArray(new ArrayOfStringsSerDe());
break;
case HLL:
bytes = ((HllSketch) se.sketch).toCompactByteArray();
break;
case CPC:
bytes = ((CpcSketch) se.sketch).toByteArray();
break;
case RESERVOIR:
bytes = ((ReservoirItemsSketch<String>) se.sketch).toByteArray(new ArrayOfStringsSerDe());
break;
case VAROPT:
bytes = ((VarOptItemsSketch<String>) se.sketch).toByteArray(new ArrayOfStringsSerDe());
break;
default:
throw new IllegalStateException("Unexpected value: " + se.family);
}
String b64Sketch = Base64.getEncoder().encodeToString(bytes);
JsonObject result = new JsonObject();
result.addProperty(QUERY_NAME_FIELD, name);
result.addProperty(CONFIG_FAMILY_FIELD, se.family.getFamilyName());
if (se.type != null)
result.addProperty(CONFIG_TYPE_FIELD, se.type.getTypeName());
result.addProperty(QUERY_ENCODING_FIELD, ENCODING_TYPE);
result.addProperty(QUERY_SKETCH_FIELD, b64Sketch);
return result;
}
}