blob: 9199c7bb3bae4f5a4cac3825c134799bf7e92f57 [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.ignite.plugin.extensions.communication;
import java.nio.ByteBuffer;
import java.util.BitSet;
import java.util.Collection;
import java.util.Map;
import java.util.UUID;
import org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion;
import org.apache.ignite.lang.IgniteUuid;
/**
* Communication message writer.
* <p>
* Allows to customize the binary format of communication messages.
*/
public interface MessageWriter {
/**
* Sets but buffer to write to.
*
* @param buf Byte buffer.
*/
public void setBuffer(ByteBuffer buf);
/**
* Sets type of message currently written.
*
* @param msgCls Message type.
*/
public void setCurrentWriteClass(Class<? extends Message> msgCls);
/**
* Writes message header.
*
* @param type Message type.
* @param fieldCnt Fields count.
* @return {@code true} if successfully. Otherwise returns {@code false}.
*/
public boolean writeHeader(short type, byte fieldCnt);
/**
* Writes {@code byte} value.
*
* @param name Field name.
* @param val {@code byte} value.
* @return Whether value was fully written.
*/
public boolean writeByte(String name, byte val);
/**
* Writes {@code short} value.
*
* @param name Field name.
* @param val {@code short} value.
* @return Whether value was fully written.
*/
public boolean writeShort(String name, short val);
/**
* Writes {@code int} value.
*
* @param name Field name.
* @param val {@code int} value.
* @return Whether value was fully written.
*/
public boolean writeInt(String name, int val);
/**
* Writes {@code long} value.
*
* @param name Field name.
* @param val {@code long} value.
* @return Whether value was fully written.
*/
public boolean writeLong(String name, long val);
/**
* Writes {@code float} value.
*
* @param name Field name.
* @param val {@code float} value.
* @return Whether value was fully written.
*/
public boolean writeFloat(String name, float val);
/**
* Writes {@code double} value.
*
* @param name Field name.
* @param val {@code double} value.
* @return Whether value was fully written.
*/
public boolean writeDouble(String name, double val);
/**
* Writes {@code char} value.
*
* @param name Field name.
* @param val {@code char} value.
* @return Whether value was fully written.
*/
public boolean writeChar(String name, char val);
/**
* Writes {@code boolean} value.
*
* @param name Field name.
* @param val {@code boolean} value.
* @return Whether value was fully written.
*/
public boolean writeBoolean(String name, boolean val);
/**
* Writes {@code byte} array.
*
* @param name Field name.
* @param val {@code byte} array.
* @return Whether array was fully written.
*/
public boolean writeByteArray(String name, byte[] val);
/**
* Writes {@code byte} array.
*
* @param name Field name.
* @param val {@code byte} array.
* @param off Offset.
* @param len Length.
* @return Whether array was fully written.
*/
public boolean writeByteArray(String name, byte[] val, long off, int len);
/**
* Writes {@code short} array.
*
* @param name Field name.
* @param val {@code short} array.
* @return Whether array was fully written.
*/
public boolean writeShortArray(String name, short[] val);
/**
* Writes {@code int} array.
*
* @param name Field name.
* @param val {@code int} array.
* @return Whether array was fully written.
*/
public boolean writeIntArray(String name, int[] val);
/**
* Writes {@code long} array.
*
* @param name Field name.
* @param val {@code long} array.
* @return Whether array was fully written.
*/
public boolean writeLongArray(String name, long[] val);
/**
* Writes {@code long} array.
*
* @param name Field name.
* @param val {@code long} array.
* @param len Length.
* @return Whether array was fully written.
*/
public boolean writeLongArray(String name, long[] val, int len);
/**
* Writes {@code float} array.
*
* @param name Field name.
* @param val {@code float} array.
* @return Whether array was fully written.
*/
public boolean writeFloatArray(String name, float[] val);
/**
* Writes {@code double} array.
*
* @param name Field name.
* @param val {@code double} array.
* @return Whether array was fully written.
*/
public boolean writeDoubleArray(String name, double[] val);
/**
* Writes {@code char} array.
*
* @param name Field name.
* @param val {@code char} array.
* @return Whether array was fully written.
*/
public boolean writeCharArray(String name, char[] val);
/**
* Writes {@code boolean} array.
*
* @param name Field name.
* @param val {@code boolean} array.
* @return Whether array was fully written.
*/
public boolean writeBooleanArray(String name, boolean[] val);
/**
* Writes {@link String}.
*
* @param name Field name.
* @param val {@link String}.
* @return Whether value was fully written.
*/
public boolean writeString(String name, String val);
/**
* Writes {@link BitSet}.
*
* @param name Field name.
* @param val {@link BitSet}.
* @return Whether value was fully written.
*/
public boolean writeBitSet(String name, BitSet val);
/**
* Writes {@link UUID}.
*
* @param name Field name.
* @param val {@link UUID}.
* @return Whether value was fully written.
*/
public boolean writeUuid(String name, UUID val);
/**
* Writes {@link IgniteUuid}.
*
* @param name Field name.
* @param val {@link IgniteUuid}.
* @return Whether value was fully written.
*/
public boolean writeIgniteUuid(String name, IgniteUuid val);
/**
* Writes {@link AffinityTopologyVersion}.
*
* @param name Field name.
* @param val {@link AffinityTopologyVersion}.
* @return Whether value was fully written.
*/
public boolean writeAffinityTopologyVersion(String name, AffinityTopologyVersion val);
/**
* Writes nested message.
*
* @param name Field name.
* @param val Message.
* @return Whether value was fully written.
*/
public boolean writeMessage(String name, Message val);
/**
* Writes array of objects.
*
* @param name Field name.
* @param arr Array of objects.
* @param itemType Array component type.
* @param <T> Type of the objects that array contains.
* @return Whether array was fully written.
*/
public <T> boolean writeObjectArray(String name, T[] arr, MessageCollectionItemType itemType);
/**
* Writes collection.
*
* @param name Field name.
* @param col Collection.
* @param itemType Collection item type.
* @param <T> Type of the objects that collection contains.
* @return Whether value was fully written.
*/
public <T> boolean writeCollection(String name, Collection<T> col, MessageCollectionItemType itemType);
/**
* Writes map.
*
* @param name Field name.
* @param map Map.
* @param keyType Map key type.
* @param valType Map value type.
* @param <K> Initial key types of the map to write.
* @param <V> Initial value types of the map to write.
* @return Whether value was fully written.
*/
public <K, V> boolean writeMap(String name, Map<K, V> map, MessageCollectionItemType keyType,
MessageCollectionItemType valType);
/**
* @return Whether header of current message is already written.
*/
public boolean isHeaderWritten();
/**
* Callback called when header of the message is written.
*/
public void onHeaderWritten();
/**
* Gets current message state.
*
* @return State.
*/
public int state();
/**
* Increments state.
*/
public void incrementState();
/**
* Callback called before inner message is written.
*/
public void beforeInnerMessageWrite();
/**
* Callback called after inner message is written.
*
* @param finished Whether message was fully written.
*/
public void afterInnerMessageWrite(boolean finished);
/**
* Resets this writer.
*/
public void reset();
}