blob: c7ea6ee711a877f6d99706054a3c7d7383be3845 [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.fury.serializer;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import org.apache.fury.Fury;
import org.apache.fury.memory.MemoryBuffer;
import org.apache.fury.type.Type;
/** Serializers for buffer related classes. */
public class BufferSerializers {
/**
* Note that this serializer only serialize data, but not the byte buffer meta. Since ByteBuffer
* doesn't implement {@link java.io.Serializable}, it's ok to only serialize data. Also Note that
* a direct buffer may be returned if the serialized buffer is a heap buffer.
*/
public static final class ByteBufferSerializer
extends Serializers.CrossLanguageCompatibleSerializer<ByteBuffer> {
public ByteBufferSerializer(Fury fury, Class<ByteBuffer> cls) {
super(fury, cls, Type.FURY_BUFFER.getId());
}
@Override
public void write(MemoryBuffer buffer, ByteBuffer value) {
fury.writeBufferObject(buffer, new BufferObject.ByteBufferBufferObject(value));
}
@Override
public ByteBuffer read(MemoryBuffer buffer) {
MemoryBuffer newBuffer = fury.readBufferObject(buffer);
int readerIndex = newBuffer.readerIndex();
int size = newBuffer.remaining();
ByteBuffer originalBuffer = newBuffer.sliceAsByteBuffer(readerIndex, size - 1);
byte isBigEndian = newBuffer.getByte(readerIndex + size - 1);
originalBuffer.order(
isBigEndian == (byte) 1 ? ByteOrder.BIG_ENDIAN : ByteOrder.LITTLE_ENDIAN);
return originalBuffer;
}
}
// TODO(chaokunyang) add support for MemoryBuffer serialization.
}