All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.voltdb.messaging.BorrowTaskMessage Maven / Gradle / Ivy

There is a newer version: 10.1.1
Show newest version
/* This file is part of VoltDB.
 * Copyright (C) 2008-2018 VoltDB Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with VoltDB.  If not, see .
 */

package org.voltdb.messaging;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.List;
import java.util.Map;

import org.voltcore.logging.VoltLogger;
import org.voltcore.messaging.Subject;
import org.voltcore.messaging.TransactionInfoBaseMessage;
import org.voltcore.utils.CoreUtils;
import org.voltdb.VoltTable;
import org.voltdb.iv2.TxnEgo;

import com.google_voltpatches.common.collect.ImmutableList;
import com.google_voltpatches.common.collect.ImmutableMap;

/**
 * Message from a stored procedure coordinator to an execution site
 * which is participating in the transaction. This message specifies
 * which planfragment to run and with which parameters.
 *
 * This message should NEVER go over the network, so there
 */
public class BorrowTaskMessage extends TransactionInfoBaseMessage
{
    protected static final VoltLogger hostLog = new VoltLogger("HOST");

    Map> m_inputDeps = null;
    FragmentTaskMessage m_fragTask;

    /** Empty constructor for de-serialization */
    BorrowTaskMessage() {
        m_subject = Subject.DEFAULT.getId();
    }

    public BorrowTaskMessage(FragmentTaskMessage frag)
    {
        super(frag.getInitiatorHSId(),
              frag.getCoordinatorHSId(),
              frag.getTxnId(),
              frag.getUniqueId(),
              frag.isReadOnly(), false);
        m_subject = Subject.DEFAULT.getId();
        m_fragTask = frag;
    }

    public FragmentTaskMessage getFragmentTaskMessage()
    {
        return m_fragTask;
    }

    public void addInputDepMap(Map> inputDeps)
    {
        final ImmutableMap.Builder> builder = ImmutableMap.builder();
        for (Map.Entry> e : inputDeps.entrySet()) {
            builder.put(e.getKey(), ImmutableList.copyOf(e.getValue()));
        }
        m_inputDeps = builder.build();
    }

    public Map> getInputDepMap()
    {
        return m_inputDeps;
    }

    @Override
    public int getSerializedSize()
    {
        throw new RuntimeException("Preparing to serialize BorrowTaskMessage, " +
                                   "which should never happen");
    }

    @Override
    public void flattenToBuffer(ByteBuffer buf) throws IOException {
        throw new RuntimeException("Preparing to serialize BorrowTaskMessage, " +
                                   "which should never happen");
    }

    @Override
    public void initFromBuffer(ByteBuffer buf) throws IOException {
        throw new RuntimeException("Preparing to serialize BorrowTaskMessage, " +
                                   "which should never happen");
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();

        sb.append("BORROW_TASK (FROM ");
        sb.append(CoreUtils.hsIdToString(m_coordinatorHSId));
        sb.append(") FOR TXN ");
        sb.append(TxnEgo.txnIdToString(m_txnId));

        sb.append("\n");
        sb.append(" UNIQUE ID ").append(m_uniqueId).append("\n");
        if (m_isReadOnly)
            sb.append("  READ, COORD ");
        else
            sb.append("  WRITE, COORD ");
        sb.append(CoreUtils.hsIdToString(m_coordinatorHSId));

        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy