#include <AlterTrig.hpp>
Definition at line 27 of file AlterTrig.hpp.
| RT_UNDEFINED | |
| RT_USER | |
| RT_CREATE_TRIGGER | |
| RT_DROP_TRIGGER | |
| RT_DICT_PREPARE | |
| RT_DICT_TC | |
| RT_DICT_LQH | |
| RT_DICT_COMMIT | |
| RT_DICT_ABORT |
Definition at line 31 of file AlterTrig.hpp.
00031 { 00032 RT_UNDEFINED = 0, 00033 RT_USER = 1, 00034 RT_CREATE_TRIGGER = 2, 00035 RT_DROP_TRIGGER = 3, 00036 RT_DICT_PREPARE = 1 << 4, 00037 RT_DICT_TC = 5 << 4, 00038 RT_DICT_LQH = 6 << 4, 00039 RT_DICT_COMMIT = 0xC << 4, 00040 RT_DICT_ABORT = 0xF << 4 00041 };
| void AlterTrigReq::addRequestFlag | ( | Uint32 | val | ) | [inline] |
Definition at line 79 of file AlterTrig.hpp.
References BitmaskImpl::getField(), m_requestInfo, and BitmaskImpl::setField().
Referenced by Dbdict::alterTrigger_sendSlaveReq(), Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00079 { 00080 val |= BitmaskImpl::getField(1, &m_requestInfo, 16, 16); 00081 BitmaskImpl::setField(1, &m_requestInfo, 16, 16, val); 00082 };
Here is the call graph for this function:

Here is the caller graph for this function:

| Uint32 AlterTrigReq::getConnectionPtr | ( | ) | const [inline] |
Definition at line 63 of file AlterTrig.hpp.
References m_connectionPtr.
Referenced by Dbdict::execALTER_TRIG_REQ().
00063 { 00064 return m_connectionPtr; 00065 }
Here is the caller graph for this function:

| bool AlterTrigReq::getMonitorAllAttributes | ( | ) | const [inline] |
Definition at line 128 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_triggerInfo.
00128 { 00129 return BitmaskImpl::getField(1, &m_triggerInfo, 25, 1); 00130 }
Here is the call graph for this function:

| bool AlterTrigReq::getMonitorReplicas | ( | ) | const [inline] |
Definition at line 122 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_triggerInfo.
00122 { 00123 return BitmaskImpl::getField(1, &m_triggerInfo, 24, 1); 00124 }
Here is the call graph for this function:

| Uint32 AlterTrigReq::getOnline | ( | ) | const [inline] |
Definition at line 134 of file AlterTrig.hpp.
References m_online.
Referenced by Dbdict::execALTER_TRIG_REQ().
00134 { 00135 return m_online; 00136 }
Here is the caller graph for this function:

| Uint32 AlterTrigReq::getOpKey | ( | ) | const [inline] |
Definition at line 146 of file AlterTrig.hpp.
References m_opKey.
Referenced by Dbdict::execALTER_TRIG_REQ().
00146 { 00147 return m_opKey; 00148 }
Here is the caller graph for this function:

| Uint32 AlterTrigReq::getReceiverRef | ( | ) | const [inline] |
Definition at line 140 of file AlterTrig.hpp.
References m_receiverRef.
00140 { 00141 return m_receiverRef; 00142 }
| Uint32 AlterTrigReq::getRequestFlag | ( | ) | const [inline] |
Definition at line 76 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_requestInfo.
Referenced by Dbdict::execALTER_TRIG_REQ(), and Dbdict::OpAlterTrigger::save().
00076 { 00077 return BitmaskImpl::getField(1, &m_requestInfo, 16, 16); 00078 };
Here is the call graph for this function:

Here is the caller graph for this function:

| AlterTrigReq::RequestType AlterTrigReq::getRequestType | ( | ) | const [inline] |
Definition at line 69 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_requestInfo.
Referenced by Dbdict::execALTER_TRIG_REQ(), and Dbdict::OpAlterTrigger::save().
00069 { 00070 const Uint32 val = BitmaskImpl::getField(1, &m_requestInfo, 0, 16); 00071 return (AlterTrigReq::RequestType)val; 00072 }
Here is the call graph for this function:

Here is the caller graph for this function:

| Uint32 AlterTrigReq::getTableId | ( | ) | const [inline] |
Definition at line 83 of file AlterTrig.hpp.
References m_tableId.
00083 { 00084 return m_tableId; 00085 }
| TriggerActionTime::Value AlterTrigReq::getTriggerActionTime | ( | ) | const [inline] |
Definition at line 108 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_triggerInfo.
00108 { 00109 const Uint32 val = BitmaskImpl::getField(1, &m_triggerInfo, 8, 8); 00110 return (TriggerActionTime::Value)val; 00111 }
Here is the call graph for this function:

| TriggerEvent::Value AlterTrigReq::getTriggerEvent | ( | ) | const [inline] |
Definition at line 115 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_triggerInfo.
00115 { 00116 const Uint32 val = BitmaskImpl::getField(1, &m_triggerInfo, 16, 8); 00117 return (TriggerEvent::Value)val; 00118 }
Here is the call graph for this function:

| Uint32 AlterTrigReq::getTriggerId | ( | ) | const [inline] |
Definition at line 89 of file AlterTrig.hpp.
References m_triggerId.
Referenced by Dbdict::alterTrigger_slavePrepare().
00089 { 00090 return m_triggerId; 00091 }
Here is the caller graph for this function:

| Uint32 AlterTrigReq::getTriggerInfo | ( | ) | const [inline] |
Definition at line 95 of file AlterTrig.hpp.
References m_triggerInfo.
00095 { 00096 return m_triggerInfo; 00097 }
| TriggerType::Value AlterTrigReq::getTriggerType | ( | ) | const [inline] |
Definition at line 101 of file AlterTrig.hpp.
References BitmaskImpl::getField(), and m_triggerInfo.
00101 { 00102 const Uint32 val = BitmaskImpl::getField(1, &m_triggerInfo, 0, 8); 00103 return (TriggerType::Value)val; 00104 }
Here is the call graph for this function:

| Uint32 AlterTrigReq::getUserRef | ( | ) | const [inline] |
Definition at line 57 of file AlterTrig.hpp.
References m_userRef.
00057 { 00058 return m_userRef; 00059 }
| void AlterTrigReq::setConnectionPtr | ( | Uint32 | val | ) | [inline] |
Definition at line 66 of file AlterTrig.hpp.
References m_connectionPtr.
Referenced by Dbdict::alterTrigger_sendSlaveReq(), Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00066 { 00067 m_connectionPtr = val; 00068 }
Here is the caller graph for this function:

| void AlterTrigReq::setMonitorAllAttributes | ( | bool | val | ) | [inline] |
Definition at line 131 of file AlterTrig.hpp.
References m_triggerInfo, and BitmaskImpl::setField().
00131 { 00132 BitmaskImpl::setField(1, &m_triggerInfo, 25, 1, val); 00133 }
Here is the call graph for this function:

| void AlterTrigReq::setMonitorReplicas | ( | bool | val | ) | [inline] |
Definition at line 125 of file AlterTrig.hpp.
References m_triggerInfo, and BitmaskImpl::setField().
00125 { 00126 BitmaskImpl::setField(1, &m_triggerInfo, 24, 1, val); 00127 }
Here is the call graph for this function:

| void AlterTrigReq::setOnline | ( | Uint32 | val | ) | [inline] |
Definition at line 137 of file AlterTrig.hpp.
References m_online.
Referenced by Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00137 { 00138 m_online = val; 00139 }
Here is the caller graph for this function:

| void AlterTrigReq::setOpKey | ( | Uint32 | val | ) | [inline] |
Definition at line 149 of file AlterTrig.hpp.
References m_opKey.
Referenced by Dbdict::execALTER_TRIG_REQ().
00149 { 00150 m_opKey = val; 00151 }
Here is the caller graph for this function:

| void AlterTrigReq::setReceiverRef | ( | Uint32 | val | ) | [inline] |
Definition at line 143 of file AlterTrig.hpp.
References m_receiverRef.
Referenced by Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00143 { 00144 m_receiverRef = val; 00145 }
Here is the caller graph for this function:

| void AlterTrigReq::setRequestType | ( | AlterTrigReq::RequestType | val | ) | [inline] |
Definition at line 73 of file AlterTrig.hpp.
References m_requestInfo.
Referenced by Dbdict::alterTrigger_sendSlaveReq(), Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00073 { 00074 m_requestInfo = (Uint32)val; 00075 }
Here is the caller graph for this function:

| void AlterTrigReq::setTableId | ( | Uint32 | val | ) | [inline] |
Definition at line 86 of file AlterTrig.hpp.
References m_tableId.
Referenced by Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00086 { 00087 m_tableId = val; 00088 }
Here is the caller graph for this function:

| void AlterTrigReq::setTriggerActionTime | ( | TriggerActionTime::Value | val | ) | [inline] |
Definition at line 112 of file AlterTrig.hpp.
References m_triggerInfo, and BitmaskImpl::setField().
00112 { 00113 BitmaskImpl::setField(1, &m_triggerInfo, 8, 8, (Uint32)val); 00114 }
Here is the call graph for this function:

| void AlterTrigReq::setTriggerEvent | ( | TriggerEvent::Value | val | ) | [inline] |
Definition at line 119 of file AlterTrig.hpp.
References m_triggerInfo, and BitmaskImpl::setField().
00119 { 00120 BitmaskImpl::setField(1, &m_triggerInfo, 16, 8, (Uint32)val); 00121 }
Here is the call graph for this function:

| void AlterTrigReq::setTriggerId | ( | Uint32 | val | ) | [inline] |
Definition at line 92 of file AlterTrig.hpp.
References m_triggerId.
Referenced by Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00092 { 00093 m_triggerId = val; 00094 }
Here is the caller graph for this function:

| void AlterTrigReq::setTriggerInfo | ( | Uint32 | val | ) | [inline] |
Definition at line 98 of file AlterTrig.hpp.
References m_triggerInfo.
Referenced by Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00098 { 00099 m_triggerInfo = val; 00100 }
Here is the caller graph for this function:

| void AlterTrigReq::setTriggerType | ( | TriggerType::Value | val | ) | [inline] |
Definition at line 105 of file AlterTrig.hpp.
References m_triggerInfo, and BitmaskImpl::setField().
00105 { 00106 BitmaskImpl::setField(1, &m_triggerInfo, 0, 8, (Uint32)val); 00107 }
Here is the call graph for this function:

| void AlterTrigReq::setUserRef | ( | Uint32 | val | ) | [inline] |
Definition at line 60 of file AlterTrig.hpp.
References m_userRef.
Referenced by Dbdict::alterTrigger_sendSlaveReq(), Dbdict::createTrigger_toAlterTrigger(), and Dbdict::dropTrigger_toAlterTrigger().
00060 { 00061 m_userRef = val; 00062 }
Here is the caller graph for this function:

| AlterTrigReq::STATIC_CONST | ( | SignalLength | = 8 |
) |
| bool printALTER_TRIG_REQ | ( | FILE * | output, | |
| const Uint32 * | theData, | |||
| Uint32 | len, | |||
| Uint16 | receiverBlockNo | |||
| ) | [friend] |
Definition at line 19 of file AlterTrig.cpp.
00020 { 00021 const AlterTrigReq * const sig = (AlterTrigReq *) theData; 00022 00023 fprintf(output, "User: %u, ", sig->getUserRef()); 00024 fprintf(output, "Trigger id: %u, ", sig->getTriggerId()); 00025 fprintf(output, "\n"); 00026 00027 return false; 00028 }
Uint32 AlterTrigReq::m_connectionPtr [private] |
Definition at line 46 of file AlterTrig.hpp.
Referenced by getConnectionPtr(), and setConnectionPtr().
Uint32 AlterTrigReq::m_online [private] |
Uint32 AlterTrigReq::m_opKey [private] |
Uint32 AlterTrigReq::m_receiverRef [private] |
Uint32 AlterTrigReq::m_requestInfo [private] |
Definition at line 47 of file AlterTrig.hpp.
Referenced by addRequestFlag(), getRequestFlag(), getRequestType(), and setRequestType().
Uint32 AlterTrigReq::m_tableId [private] |
Uint32 AlterTrigReq::m_triggerId [private] |
Uint32 AlterTrigReq::m_triggerInfo [private] |
Definition at line 50 of file AlterTrig.hpp.
Referenced by getMonitorAllAttributes(), getMonitorReplicas(), getTriggerActionTime(), getTriggerEvent(), getTriggerInfo(), getTriggerType(), setMonitorAllAttributes(), setMonitorReplicas(), setTriggerActionTime(), setTriggerEvent(), setTriggerInfo(), and setTriggerType().
Uint32 AlterTrigReq::m_userRef [private] |
1.4.7

