org.apache.cassandra.serializers.SetSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-clientutil Show documentation
Show all versions of cassandra-clientutil Show documentation
A fork of the Apache Cassandra Project that uses Lucene indexes for providing near real time search such as ElasticSearch or Solr, including full text search capabilities, multi-dimensional queries, and relevance scoring.
The newest version!
/*
* 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.cassandra.serializers;
import java.nio.BufferUnderflowException;
import java.nio.ByteBuffer;
import java.util.*;
import org.apache.cassandra.utils.ByteBufferUtil;
public class SetSerializer extends CollectionSerializer>
{
// interning instances
private static final Map, SetSerializer> instances = new HashMap, SetSerializer>();
public final TypeSerializer elements;
public static synchronized SetSerializer getInstance(TypeSerializer elements)
{
SetSerializer t = instances.get(elements);
if (t == null)
{
t = new SetSerializer(elements);
instances.put(elements, t);
}
return t;
}
private SetSerializer(TypeSerializer elements)
{
this.elements = elements;
}
public List serializeValues(Set values)
{
List buffers = new ArrayList<>(values.size());
for (T value : values)
buffers.add(elements.serialize(value));
return buffers;
}
public int getElementCount(Set value)
{
return value.size();
}
public void validateForNativeProtocol(ByteBuffer bytes, int version)
{
try
{
ByteBuffer input = bytes.duplicate();
int n = readCollectionSize(input, version);
for (int i = 0; i < n; i++)
elements.validate(readValue(input, version));
}
catch (BufferUnderflowException e)
{
throw new MarshalException("Not enough bytes to read a set");
}
}
public Set deserializeForNativeProtocol(ByteBuffer bytes, int version)
{
try
{
ByteBuffer input = bytes.duplicate();
int n = readCollectionSize(input, version);
Set l = new LinkedHashSet(n);
for (int i = 0; i < n; i++)
{
ByteBuffer databb = readValue(input, version);
elements.validate(databb);
l.add(elements.deserialize(databb));
}
return l;
}
catch (BufferUnderflowException e)
{
throw new MarshalException("Not enough bytes to read a list");
}
}
public String toString(Set value)
{
StringBuilder sb = new StringBuilder();
boolean isFirst = true;
for (T element : value)
{
if (isFirst)
{
isFirst = false;
}
else
{
sb.append("; ");
}
sb.append(elements.toString(element));
}
return sb.toString();
}
public Class> getType()
{
return (Class) Set.class;
}
}