mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
488 lines
11 KiB
C++
488 lines
11 KiB
C++
/* Copyright (C) 2003 MySQL AB
|
|
|
|
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; either version 2 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#ifndef CREATE_EVNT_HPP
|
|
#define CREATE_EVNT_HPP
|
|
|
|
#include "SignalData.hpp"
|
|
#include <NodeBitmask.hpp>
|
|
#include <signaldata/DictTabInfo.hpp>
|
|
|
|
/**
|
|
* DropEvntReq.
|
|
*/
|
|
class DropEvntReq {
|
|
friend bool printDROP_EVNT_REQ(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
public:
|
|
STATIC_CONST( SignalLength = 2 );
|
|
SECTION( EVENT_NAME_SECTION = 0 );
|
|
|
|
union { // user block reference
|
|
Uint32 senderRef;
|
|
Uint32 m_userRef;
|
|
};
|
|
union {
|
|
Uint32 senderData;
|
|
Uint32 m_userData; // user
|
|
};
|
|
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* DropEvntConf.
|
|
*/
|
|
class DropEvntConf {
|
|
friend bool printDROP_EVNT_CONF(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
public:
|
|
STATIC_CONST( SignalLength = 2 );
|
|
|
|
union { // user block reference
|
|
Uint32 senderRef;
|
|
Uint32 m_userRef;
|
|
};
|
|
union {
|
|
Uint32 senderData;
|
|
Uint32 m_userData; // user
|
|
};
|
|
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* DropEvntRef.
|
|
*/
|
|
class DropEvntRef {
|
|
friend bool printDROP_EVNT_REF(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
public:
|
|
enum ErrorCode {
|
|
NoError = 0,
|
|
Undefined = 1,
|
|
UndefinedTCError = 2,
|
|
NF_FakeErrorREF = 11,
|
|
Busy = 701,
|
|
NotMaster = 702,
|
|
SeizeError = 703,
|
|
EventNotFound = 4238,
|
|
EventNameTooLong = 4241,
|
|
TooManyEvents = 4242,
|
|
BadRequestType = 4247,
|
|
InvalidName = 4248,
|
|
InvalidPrimaryTable = 4249,
|
|
InvalidEventType = 4250,
|
|
NotUnique = 4251,
|
|
AllocationError = 4252,
|
|
CreateEventTableFailed = 4253,
|
|
InvalidAttributeOrder = 4255,
|
|
Temporary = 0x1 << 16
|
|
};
|
|
|
|
STATIC_CONST( SignalLength = 5 );
|
|
|
|
union { // user block reference
|
|
Uint32 senderRef;
|
|
Uint32 m_userRef;
|
|
};
|
|
union {
|
|
Uint32 senderData;
|
|
Uint32 m_userData; // user
|
|
};
|
|
union {
|
|
Uint32 errorCode;
|
|
Uint32 m_errorCode;
|
|
};
|
|
Uint32 m_errorLine;
|
|
Uint32 m_errorNode;
|
|
|
|
bool isTemporary() const
|
|
{ return (errorCode & Temporary) > 0; }
|
|
|
|
void setTemporary()
|
|
{ errorCode |= Temporary; }
|
|
|
|
ErrorCode setTemporary(ErrorCode ec)
|
|
{ return (ErrorCode) (errorCode = ((Uint32) ec | (Uint32)Temporary)); }
|
|
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
DropEvntRef::ErrorCode getErrorCode() const {
|
|
return (DropEvntRef::ErrorCode)m_errorCode;
|
|
}
|
|
void setErrorCode(DropEvntRef::ErrorCode val) {
|
|
m_errorCode = (Uint32)val;
|
|
}
|
|
Uint32 getErrorLine() const {
|
|
return m_errorLine;
|
|
}
|
|
void setErrorLine(Uint32 val) {
|
|
m_errorLine = val;
|
|
}
|
|
Uint32 getErrorNode() const {
|
|
return m_errorNode;
|
|
}
|
|
void setErrorNode(Uint32 val) {
|
|
m_errorNode = val;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* CreateEvntReq.
|
|
*/
|
|
struct CreateEvntReq {
|
|
friend bool printCREATE_EVNT_REQ(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
enum RequestType {
|
|
RT_UNDEFINED = 0,
|
|
RT_USER_CREATE = 1,
|
|
RT_USER_GET = 2,
|
|
|
|
RT_DICT_AFTER_GET = 0x1 << 4
|
|
// RT_DICT_MASTER = 0x2 << 4,
|
|
|
|
// RT_DICT_COMMIT = 0xC << 4,
|
|
// RT_DICT_ABORT = 0xF << 4,
|
|
// RT_TC = 5 << 8
|
|
};
|
|
STATIC_CONST( SignalLengthGet = 3 );
|
|
STATIC_CONST( SignalLengthCreate = 5+MAXNROFATTRIBUTESINWORDS );
|
|
STATIC_CONST( SignalLength = 7+MAXNROFATTRIBUTESINWORDS );
|
|
// SECTION( ATTRIBUTE_LIST_SECTION = 0 );
|
|
SECTION( EVENT_NAME_SECTION = 0 );
|
|
|
|
union {
|
|
Uint32 m_userRef; // user block reference
|
|
Uint32 senderRef; // user block reference
|
|
};
|
|
union {
|
|
Uint32 m_userData; // user
|
|
Uint32 senderData; // user
|
|
};
|
|
Uint32 m_requestInfo;
|
|
Uint32 m_tableId; // table to event
|
|
AttributeMask::Data m_attrListBitmask;
|
|
Uint32 m_eventType; // from DictTabInfo::TableType
|
|
Uint32 m_eventId; // event table id set by DICT/SUMA
|
|
Uint32 m_eventKey; // event table key set by DICT/SUMA
|
|
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
CreateEvntReq::RequestType getRequestType() const {
|
|
const Uint32 val = BitmaskImpl::getField(1, &m_requestInfo, 0, 16);
|
|
return (CreateEvntReq::RequestType)val;
|
|
}
|
|
void setRequestType(CreateEvntReq::RequestType val) {
|
|
m_requestInfo = (Uint32)val;
|
|
}
|
|
Uint32 getRequestFlag() const {
|
|
return BitmaskImpl::getField(1, &m_requestInfo, 16, 16);
|
|
};
|
|
void addRequestFlag(Uint32 val) {
|
|
val |= BitmaskImpl::getField(1, &m_requestInfo, 16, 16);
|
|
BitmaskImpl::setField(1, &m_requestInfo, 16, 16, val);
|
|
};
|
|
Uint32 getTableId() const {
|
|
return m_tableId;
|
|
}
|
|
void setTableId(Uint32 val) {
|
|
m_tableId = val;
|
|
}
|
|
AttributeMask getAttrListBitmask() const {
|
|
AttributeMask tmp;
|
|
tmp.assign(m_attrListBitmask);
|
|
return tmp;
|
|
}
|
|
void setAttrListBitmask(const AttributeMask & val) {
|
|
m_attrListBitmask = val;
|
|
}
|
|
Uint32 getEventType() const {
|
|
return m_eventType;
|
|
}
|
|
void setEventType(Uint32 val) {
|
|
m_eventType = (Uint32)val;
|
|
}
|
|
Uint32 getEventId() const {
|
|
return m_eventId;
|
|
}
|
|
void setEventId(Uint32 val) {
|
|
m_eventId = val;
|
|
}
|
|
Uint32 getEventKey() const {
|
|
return m_eventKey;
|
|
}
|
|
void setEventKey(Uint32 val) {
|
|
m_eventKey = val;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* CreateEvntConf.
|
|
*/
|
|
class CreateEvntConf {
|
|
friend bool printCREATE_EVNT_CONF(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
public:
|
|
// STATIC_CONST( InternalLength = 3 );
|
|
STATIC_CONST( SignalLength = 7+MAXNROFATTRIBUTESINWORDS );
|
|
|
|
union {
|
|
Uint32 m_userRef; // user block reference
|
|
Uint32 senderRef; // user block reference
|
|
};
|
|
union {
|
|
Uint32 m_userData; // user
|
|
Uint32 senderData; // user
|
|
};
|
|
Uint32 m_requestInfo;
|
|
Uint32 m_tableId;
|
|
AttributeMask m_attrListBitmask;
|
|
Uint32 m_eventType;
|
|
Uint32 m_eventId;
|
|
Uint32 m_eventKey;
|
|
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
CreateEvntReq::RequestType getRequestType() const {
|
|
return (CreateEvntReq::RequestType)m_requestInfo;
|
|
}
|
|
void setRequestType(CreateEvntReq::RequestType val) {
|
|
m_requestInfo = (Uint32)val;
|
|
}
|
|
Uint32 getTableId() const {
|
|
return m_tableId;
|
|
}
|
|
void setTableId(Uint32 val) {
|
|
m_tableId = val;
|
|
}
|
|
AttributeMask getAttrListBitmask() const {
|
|
return m_attrListBitmask;
|
|
}
|
|
void setAttrListBitmask(const AttributeMask & val) {
|
|
m_attrListBitmask = val;
|
|
}
|
|
Uint32 getEventType() const {
|
|
return m_eventType;
|
|
}
|
|
void setEventType(Uint32 val) {
|
|
m_eventType = (Uint32)val;
|
|
}
|
|
Uint32 getEventId() const {
|
|
return m_eventId;
|
|
}
|
|
void setEventId(Uint32 val) {
|
|
m_eventId = val;
|
|
}
|
|
Uint32 getEventKey() const {
|
|
return m_eventKey;
|
|
}
|
|
void setEventKey(Uint32 val) {
|
|
m_eventKey = val;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* CreateEvntRef.
|
|
*/
|
|
struct CreateEvntRef {
|
|
friend class SafeCounter;
|
|
friend bool printCREATE_EVNT_REF(FILE*, const Uint32*, Uint32, Uint16);
|
|
|
|
STATIC_CONST( SignalLength = 10 );
|
|
enum ErrorCode {
|
|
NoError = 0,
|
|
Undefined = 1,
|
|
UndefinedTCError = 2,
|
|
NF_FakeErrorREF = 11,
|
|
Busy = 701,
|
|
NotMaster = 702,
|
|
SeizeError = 703,
|
|
EventNotFound = 4238,
|
|
EventExists = 4239,
|
|
EventNameTooLong = 4241,
|
|
TooManyEvents = 4242,
|
|
// EventExists = 4244,
|
|
AttributeNotStored = 4245,
|
|
AttributeNullable = 4246,
|
|
BadRequestType = 4247,
|
|
InvalidName = 4248,
|
|
InvalidPrimaryTable = 4249,
|
|
InvalidEventType = 4250,
|
|
NotUnique = 4251,
|
|
AllocationError = 4252,
|
|
CreateEventTableFailed = 4253,
|
|
InvalidAttributeOrder = 4255,
|
|
Temporary = 0x1 << 16
|
|
};
|
|
bool isTemporary() const;
|
|
void setTemporary();
|
|
ErrorCode setTemporary(ErrorCode ec);
|
|
static ErrorCode makeTemporary(ErrorCode ec);
|
|
|
|
union {
|
|
Uint32 m_userRef; // user block reference
|
|
Uint32 senderRef; // user block reference
|
|
};
|
|
union {
|
|
Uint32 m_userData; // user
|
|
Uint32 senderData; // user
|
|
};
|
|
|
|
Uint32 m_requestInfo;
|
|
Uint32 m_tableId;
|
|
Uint32 m_eventType;
|
|
Uint32 m_eventId;
|
|
Uint32 m_eventKey;
|
|
Uint32 errorCode;
|
|
Uint32 m_errorLine;
|
|
Uint32 m_errorNode;
|
|
|
|
#if 0
|
|
CreateEvntConf* getConf() {
|
|
return &m_conf;
|
|
}
|
|
const CreateEvntConf* getConf() const {
|
|
return &m_conf;
|
|
}
|
|
#endif
|
|
Uint32 getUserRef() const {
|
|
return m_userRef;
|
|
}
|
|
void setUserRef(Uint32 val) {
|
|
m_userRef = val;
|
|
}
|
|
Uint32 getUserData() const {
|
|
return m_userData;
|
|
}
|
|
void setUserData(Uint32 val) {
|
|
m_userData = val;
|
|
}
|
|
CreateEvntReq::RequestType getRequestType() const {
|
|
return (CreateEvntReq::RequestType)m_requestInfo;
|
|
}
|
|
void setRequestType(CreateEvntReq::RequestType val) {
|
|
m_requestInfo = (Uint32)val;
|
|
}
|
|
Uint32 getTableId() const {
|
|
return m_tableId;
|
|
}
|
|
void setTableId(Uint32 val) {
|
|
m_tableId = val;
|
|
}
|
|
|
|
Uint32 getEventType() const {
|
|
return m_eventType;
|
|
}
|
|
void setEventType(Uint32 val) {
|
|
m_eventType = (Uint32)val;
|
|
}
|
|
Uint32 getEventId() const {
|
|
return m_eventId;
|
|
}
|
|
void setEventId(Uint32 val) {
|
|
m_eventId = val;
|
|
}
|
|
Uint32 getEventKey() const {
|
|
return m_eventKey;
|
|
}
|
|
void setEventKey(Uint32 val) {
|
|
m_eventKey = val;
|
|
}
|
|
|
|
CreateEvntRef::ErrorCode getErrorCode() const {
|
|
return (CreateEvntRef::ErrorCode)errorCode;
|
|
}
|
|
void setErrorCode(CreateEvntRef::ErrorCode val) {
|
|
errorCode = (Uint32)val;
|
|
}
|
|
Uint32 getErrorLine() const {
|
|
return m_errorLine;
|
|
}
|
|
void setErrorLine(Uint32 val) {
|
|
m_errorLine = val;
|
|
}
|
|
Uint32 getErrorNode() const {
|
|
return m_errorNode;
|
|
}
|
|
void setErrorNode(Uint32 val) {
|
|
m_errorNode = val;
|
|
}
|
|
};
|
|
inline bool CreateEvntRef::isTemporary() const
|
|
{ return (errorCode & CreateEvntRef::Temporary) > 0; };
|
|
inline void CreateEvntRef::setTemporary()
|
|
{ errorCode |= CreateEvntRef::Temporary; };
|
|
inline CreateEvntRef::ErrorCode CreateEvntRef::setTemporary(ErrorCode ec)
|
|
{ return (CreateEvntRef::ErrorCode)
|
|
(errorCode = ((Uint32) ec | (Uint32)CreateEvntRef::Temporary)); };
|
|
inline CreateEvntRef::ErrorCode CreateEvntRef::makeTemporary(ErrorCode ec)
|
|
{ return (CreateEvntRef::ErrorCode)
|
|
( (Uint32) ec | (Uint32)CreateEvntRef::Temporary ); };
|
|
|
|
#endif
|