272 lines
6.3 KiB
C++

/*
Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef TUP_KEY_H
#define TUP_KEY_H
#include "SignalData.hpp"
#define JAM_FILE_ID 57
class TupKeyReq {
/**
* Reciver(s)
*/
friend class Dbtup;
/**
* Sender(s)
*/
friend class Dblqh;
/**
* For printing
*/
friend bool printTUPKEYREQ(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
public:
STATIC_CONST( SignalLength = 21 );
private:
/**
* DATA VARIABLES
*/
Uint32 connectPtr;
Uint32 request;
Uint32 keyRef1;
Uint32 keyRef2;
Uint32 attrBufLen;
Uint32 opRef;
Uint32 applRef;
Uint32 storedProcedure;
Uint32 transId1;
Uint32 transId2;
Uint32 fragPtr;
Uint32 primaryReplica;
Uint32 coordinatorTC;
Uint32 tcOpIndex;
Uint32 savePointId;
Uint32 disk_page;
Uint32 m_row_id_page_no;
Uint32 m_row_id_page_idx;
Uint32 attrInfoIVal;
Uint32 deferred_constraints;
Uint32 disable_fk_checks;
static Uint32 getDirtyFlag(Uint32 const& requestInfo);
static Uint32 getSimpleFlag(Uint32 const& requestInfo);
static Uint32 getOperation(Uint32 const& requestInfo);
static Uint32 getInterpretedFlag(Uint32 const& requestInfo);
static Uint32 getRowidFlag(Uint32 const& requestInfo);
static Uint32 getReorgFlag(Uint32 const& requestInfo);
static Uint32 getPrioAFlag(Uint32 const& requestInfo);
static void setDirtyFlag(Uint32 & requestInfo, Uint32 value);
static void setSimpleFlag(Uint32 & requestInfo, Uint32 value);
static void setOperation(Uint32 & requestInfo, Uint32 value);
static void setInterpretedFlag(Uint32 & requestInfo, Uint32 value);
static void setRowidFlag(Uint32 & requestInfo, Uint32 value);
static void setReorgFlag(Uint32 & requestInfo, Uint32 value);
static void setPrioAFlag(Uint32 & requestInfo, Uint32 value);
/*
Request Info
111111 1111222222222233
0123456789012345 6789012345678901
ds....ooo.izrra. ................
*/
enum RequestInfo {
DIRTY_POS = 0, DIRTY_MASK = 1,
SIMPLE_POS = 1, SIMPLE_MASK = 1,
OPERATION_POS = 6, OPERATION_MASK = 7,
INTERPRETED_POS = 10, INTERPRETED_MASK = 1,
ROWID_POS = 11, ROWID_MASK = 1,
REORG_POS = 12, REORG_MASK = 3,
PRIO_A_POS = 14, PRIO_A_MASK = 1
};
};
inline Uint32
TupKeyReq::getDirtyFlag(Uint32 const& requestInfo)
{
return (requestInfo >> DIRTY_POS) & DIRTY_MASK;
}
inline Uint32
TupKeyReq::getSimpleFlag(Uint32 const& requestInfo)
{
return (requestInfo >> SIMPLE_POS) & SIMPLE_MASK;
}
inline Uint32
TupKeyReq::getOperation(Uint32 const& requestInfo)
{
return (requestInfo >> OPERATION_POS) & OPERATION_MASK;
}
inline Uint32
TupKeyReq::getInterpretedFlag(Uint32 const& requestInfo)
{
return (requestInfo >> INTERPRETED_POS) & INTERPRETED_MASK;
}
inline Uint32
TupKeyReq::getRowidFlag(Uint32 const& requestInfo)
{
return (requestInfo >> ROWID_POS) & ROWID_MASK;
}
inline Uint32
TupKeyReq::getReorgFlag(Uint32 const& requestInfo)
{
return (requestInfo >> REORG_POS) & REORG_MASK;
}
inline Uint32
TupKeyReq::getPrioAFlag(Uint32 const& requestInfo)
{
return (requestInfo >> PRIO_A_POS) & PRIO_A_MASK;
}
inline void
TupKeyReq::setDirtyFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= DIRTY_MASK);
assert((requestInfo & (DIRTY_MASK << DIRTY_POS)) == 0);
requestInfo |= value << DIRTY_POS;
}
inline void
TupKeyReq::setSimpleFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= SIMPLE_MASK);
assert((requestInfo & (SIMPLE_MASK << SIMPLE_POS)) == 0);
requestInfo |= value << SIMPLE_POS;
}
inline void
TupKeyReq::setOperation(Uint32 & requestInfo, Uint32 value)
{
assert(value <= OPERATION_MASK);
assert((requestInfo & (OPERATION_MASK << OPERATION_POS)) == 0);
requestInfo |= value << OPERATION_POS;
}
inline void
TupKeyReq::setInterpretedFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= INTERPRETED_MASK);
assert((requestInfo & (INTERPRETED_MASK << INTERPRETED_POS)) == 0);
requestInfo |= value << INTERPRETED_POS;
}
inline void
TupKeyReq::setRowidFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= ROWID_MASK);
assert((requestInfo & (ROWID_MASK << ROWID_POS)) == 0);
requestInfo |= value << ROWID_POS;
}
inline void
TupKeyReq::setReorgFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= REORG_MASK);
assert((requestInfo & (REORG_MASK << REORG_POS)) == 0);
requestInfo |= value << REORG_POS;
}
inline void
TupKeyReq::setPrioAFlag(Uint32 & requestInfo, Uint32 value)
{
assert(value <= PRIO_A_MASK);
assert((requestInfo & (PRIO_A_MASK << PRIO_A_POS)) == 0);
requestInfo |= value << PRIO_A_POS;
}
class TupKeyConf {
/**
* Reciver(s)
*/
friend class Dblqh;
/**
* Sender(s)
*/
friend class Dbtup;
/**
* For printing
*/
friend bool printTUPKEYCONF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
public:
STATIC_CONST( SignalLength = 7 );
private:
/**
* DATA VARIABLES
*/
Uint32 userPtr;
Uint32 readLength; // Length in Uint32 words
Uint32 writeLength;
Uint32 numFiredTriggers;
Uint32 lastRow;
Uint32 rowid;
// Number of interpreter instructions executed.
Uint32 noExecInstructions;
};
class TupKeyRef {
/**
* Reciver(s)
*/
friend class Dblqh;
/**
* Sender(s)
*/
friend class Dbtup;
/**
* For printing
*/
friend bool printTUPKEYREF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
public:
STATIC_CONST( SignalLength = 3 );
private:
/**
* DATA VARIABLES
*/
Uint32 userRef;
Uint32 errorCode;
// Number of interpreter instructions executed.
Uint32 noExecInstructions;
};
#undef JAM_FILE_ID
#endif