/*************************************************************************** * Copyright (C) 2013 by H-Store Project * * Brown University * * Massachusetts Institute of Technology * * Yale University * * * * Permission is hereby granted, free of charge, to any person obtaining * * a copy of this software and associated documentation files (the * * "Software"), to deal in the Software without restriction, including * * without limitation the rights to use, copy, modify, merge, publish, * * distribute, sublicense, and/or sell copies of the Software, and to * * permit persons to whom the Software is furnished to do so, subject to * * the following conditions: * * * * The above copyright notice and this permission notice shall be * * included in all copies or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * * OTHER DEALINGS IN THE SOFTWARE. * ***************************************************************************/ package edu.brown.benchmark.smallbank.procedures; import org.voltdb.ProcInfo; import org.voltdb.SQLStmt; import org.voltdb.VoltProcedure; import org.voltdb.VoltTable; import org.voltdb.VoltType; import edu.brown.benchmark.smallbank.SmallBankConstants; @ProcInfo ( partitionParam=0 ) public class Balance extends VoltProcedure { private static final VoltTable.ColumnInfo[] RESULT_COLS = { new VoltTable.ColumnInfo("TOTAL", VoltType.FLOAT), }; // 2013-05-05 // In the original version of the benchmark, this is suppose to be a look up // on the customer's name. We don't have fast implementation of replicated // secondary indexes, so we'll just ignore that part for now. public final SQLStmt GetAccount = new SQLStmt( "SELECT * FROM " + SmallBankConstants.TABLENAME_ACCOUNTS + " WHERE custid = ?" ); public final SQLStmt GetSavingsBalance = new SQLStmt( "SELECT bal FROM " + SmallBankConstants.TABLENAME_SAVINGS + " WHERE custid = ?" ); public final SQLStmt GetCheckingBalance = new SQLStmt( "SELECT bal FROM " + SmallBankConstants.TABLENAME_CHECKING + " WHERE custid = ?" ); public VoltTable run(long acctId) { voltQueueSQL(GetAccount, acctId); VoltTable results[] = voltExecuteSQL(); if (results[0].getRowCount() != 1) { String msg = "Invalid account '" + acctId + "'"; throw new VoltAbortException(msg); } // long acctId = results[0].asScalarLong(); voltQueueSQL(GetSavingsBalance, acctId); voltQueueSQL(GetCheckingBalance, acctId); results = voltExecuteSQL(true); if (results[0].getRowCount() != 1) { String msg = String.format("No %s for customer #%d", SmallBankConstants.TABLENAME_SAVINGS, acctId); throw new VoltAbortException(msg); } if (results[1].getRowCount() != 1) { String msg = String.format("No %s for customer #%d", SmallBankConstants.TABLENAME_CHECKING, acctId); throw new VoltAbortException(msg); } results[0].advanceRow(); results[1].advanceRow(); double total = results[0].getDouble(0) + results[1].getDouble(0); final VoltTable finalResult = new VoltTable(RESULT_COLS); finalResult.addRow(total); return (finalResult); } }