/* * 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.internal.processors.cache.distributed; import java.nio.ByteBuffer; import org.apache.ignite.IgniteLogger; import org.apache.ignite.internal.managers.communication.GridIoMessageFactory; import org.apache.ignite.internal.processors.cache.GridCacheMessage; import org.apache.ignite.internal.processors.cache.GridCacheSharedContext; import org.apache.ignite.internal.processors.cache.version.GridCacheVersion; import org.apache.ignite.internal.util.tostring.GridToStringBuilder; import org.apache.ignite.internal.util.tostring.GridToStringExclude; import org.apache.ignite.lang.IgniteUuid; import org.apache.ignite.plugin.extensions.communication.MessageReader; import org.apache.ignite.plugin.extensions.communication.MessageWriter; /** * Transaction finish response. */ public class GridDistributedTxFinishResponse extends GridCacheMessage { /** */ private static final long serialVersionUID = 0L; /** */ private GridCacheVersion txId; /** Future ID. */ private IgniteUuid futId; /** */ @GridToStringExclude private byte flags; /** */ private int part; /** * Empty constructor required by {@link GridIoMessageFactory}. */ public GridDistributedTxFinishResponse() { /* No-op. */ } /** * @param part Partition. * @param txId Transaction id. * @param futId Future ID. */ public GridDistributedTxFinishResponse(int part, GridCacheVersion txId, IgniteUuid futId) { assert txId != null; assert futId != null; this.part = part; this.txId = txId; this.futId = futId; } /** {@inheritDoc} */ @Override public final int partition() { return part; } /** * Sets flag mask. * * @param flag Set or clear. * @param mask Mask. */ protected final void setFlag(boolean flag, int mask) { flags = flag ? (byte)(flags | mask) : (byte)(flags & ~mask); } /** * Reags flag mask. * * @param mask Mask to read. * @return Flag value. */ protected final boolean isFlag(int mask) { return (flags & mask) != 0; } /** * * @return Transaction id. */ public GridCacheVersion xid() { return txId; } /** * @return Future ID. */ public IgniteUuid futureId() { return futId; } /** {@inheritDoc} */ @Override public boolean addDeploymentInfo() { return false; } /** {@inheritDoc} */ @Override public IgniteLogger messageLogger(GridCacheSharedContext ctx) { return ctx.txFinishMessageLogger(); } /** {@inheritDoc} */ @Override public boolean writeTo(ByteBuffer buf, MessageWriter writer) { writer.setBuffer(buf); if (!super.writeTo(buf, writer)) return false; if (!writer.isHeaderWritten()) { if (!writer.writeHeader(directType(), fieldsCount())) return false; writer.onHeaderWritten(); } switch (writer.state()) { case 3: if (!writer.writeByte("flags", flags)) return false; writer.incrementState(); case 4: if (!writer.writeIgniteUuid("futId", futId)) return false; writer.incrementState(); case 5: if (!writer.writeInt("part", part)) return false; writer.incrementState(); case 6: if (!writer.writeMessage("txId", txId)) return false; writer.incrementState(); } return true; } /** {@inheritDoc} */ @Override public boolean readFrom(ByteBuffer buf, MessageReader reader) { reader.setBuffer(buf); if (!reader.beforeMessageRead()) return false; if (!super.readFrom(buf, reader)) return false; switch (reader.state()) { case 3: flags = reader.readByte("flags"); if (!reader.isLastRead()) return false; reader.incrementState(); case 4: futId = reader.readIgniteUuid("futId"); if (!reader.isLastRead()) return false; reader.incrementState(); case 5: part = reader.readInt("part"); if (!reader.isLastRead()) return false; reader.incrementState(); case 6: txId = reader.readMessage("txId"); if (!reader.isLastRead()) return false; reader.incrementState(); } return reader.afterMessageRead(GridDistributedTxFinishResponse.class); } /** {@inheritDoc} */ @Override public short directType() { return 24; } /** {@inheritDoc} */ @Override public byte fieldsCount() { return 7; } /** {@inheritDoc} */ @Override public String toString() { return GridToStringBuilder.toString(GridDistributedTxFinishResponse.class, this); } }