mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
e73d1aa04f
storage/ndb/include/kernel/ndb_limits.h: remove hardcoded limit storage/ndb/include/kernel/signaldata/FsReadWriteReq.hpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/include/mgmapi/mgmapi_config_parameters.h: Introduce new config parameter for "SharedGlobalMemory", only user is so far undo log buffer memory storage/ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/SimBlockList.cpp: Fix compiler error storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/blocks/lgman.cpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/vm/GlobalData.hpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/vm/SimulatedBlock.cpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/vm/SimulatedBlock.hpp: Add new format "shared" page to easily migrate from/to superpool storage/ndb/src/kernel/vm/ndbd_malloc_impl.cpp: better startup printouts storage/ndb/src/mgmsrv/ConfigInfo.cpp: Introduce new config parameter for "SharedGlobalMemory", only user is so far undo log buffer memory storage/ndb/src/mgmsrv/InitConfigFileParser.cpp: Fix bug in handling of my.cnf files
172 lines
4 KiB
C++
172 lines
4 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 FS_READWRITEREQ_H
|
|
#define FS_READWRITEREQ_H
|
|
|
|
#include "SignalData.hpp"
|
|
|
|
/**
|
|
* FsReadWriteReq - Common signal class for FSWRITEREQ and FSREADREQ
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* SENDER:
|
|
* RECIVER: Ndbfs
|
|
*/
|
|
class FsReadWriteReq {
|
|
/**
|
|
* Reciver(s)
|
|
*/
|
|
friend class Ndbfs;
|
|
friend class VoidFs;
|
|
friend class AsyncFile;
|
|
|
|
/**
|
|
* Sender(s)
|
|
*/
|
|
friend class Dbdict;
|
|
friend class Lgman;
|
|
friend class Tsman;
|
|
friend class Pgman;
|
|
friend class Restore;
|
|
|
|
/**
|
|
* For printing
|
|
*/
|
|
friend bool printFSREADWRITEREQ(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
|
|
|
|
public:
|
|
/**
|
|
* Enum type for errorCode
|
|
*/
|
|
enum NdbfsFormatType {
|
|
fsFormatListOfPairs=0,
|
|
fsFormatArrayOfPages=1,
|
|
fsFormatListOfMemPages=2,
|
|
fsFormatGlobalPage=3,
|
|
fsFormatSharedPage=4,
|
|
fsFormatMax
|
|
};
|
|
|
|
/**
|
|
* Length of signal
|
|
*/
|
|
STATIC_CONST( FixedLength = 6 );
|
|
|
|
private:
|
|
|
|
/**
|
|
* DATA VARIABLES
|
|
*/
|
|
UintR filePointer; // DATA 0
|
|
UintR userReference; // DATA 1
|
|
UintR userPointer; // DATA 2
|
|
UintR operationFlag; // DATA 3
|
|
UintR varIndex; // DATA 4
|
|
UintR numberOfPages; // DATA 5
|
|
|
|
//-------------------------------------------------------------
|
|
// Variable sized part. Those will contain
|
|
// info about memory/file pages to read/write
|
|
//-------------------------------------------------------------
|
|
union {
|
|
UintR pageData[16]; // DATA 6 - 21
|
|
struct {
|
|
Uint32 varIndex; // In unit cluster size
|
|
Uint32 fileOffset; // In unit page size
|
|
} listOfPair[8];
|
|
struct {
|
|
Uint32 varIndex;
|
|
Uint32 fileOffset;
|
|
} arrayOfPages;
|
|
struct {
|
|
Uint32 varIndex[1]; // Size = numberOfPages
|
|
Uint32 fileOffset;
|
|
} listOfMemPages;
|
|
} data;
|
|
|
|
static Uint8 getSyncFlag(const UintR & opFlag);
|
|
static void setSyncFlag(UintR & opFlag, Uint8 flag);
|
|
|
|
static NdbfsFormatType getFormatFlag(const UintR & opFlag);
|
|
static void setFormatFlag(UintR & opFlag, Uint8 flag);
|
|
|
|
static Uint32 getPartialReadFlag(UintR opFlag);
|
|
static void setPartialReadFlag(UintR & opFlag, Uint32 flag);
|
|
};
|
|
|
|
/**
|
|
* Operation flag
|
|
*
|
|
f = Format of pageData - 4 Bits -> max 15
|
|
s = sync after write flag - 1 Bit
|
|
|
|
1111111111222222222233
|
|
01234567890123456789012345678901
|
|
ffffs
|
|
*/
|
|
|
|
#define SYNC_SHIFT (4)
|
|
#define SYNC_MASK (0x01)
|
|
|
|
#define FORMAT_MASK (0x0F)
|
|
|
|
#define PARTIAL_READ_SHIFT (5)
|
|
|
|
inline
|
|
Uint8
|
|
FsReadWriteReq::getSyncFlag(const UintR & opFlag){
|
|
return (Uint8)((opFlag >> SYNC_SHIFT) & SYNC_MASK);
|
|
}
|
|
|
|
inline
|
|
FsReadWriteReq::NdbfsFormatType
|
|
FsReadWriteReq::getFormatFlag(const UintR & opFlag){
|
|
return (NdbfsFormatType)(opFlag & FORMAT_MASK);
|
|
}
|
|
|
|
inline
|
|
void
|
|
FsReadWriteReq::setSyncFlag(UintR & opFlag, Uint8 flag){
|
|
ASSERT_BOOL(flag, "FsReadWriteReq::setSyncFlag");
|
|
opFlag |= (flag << SYNC_SHIFT);
|
|
}
|
|
|
|
inline
|
|
void
|
|
FsReadWriteReq::setFormatFlag(UintR & opFlag, Uint8 flag){
|
|
ASSERT_MAX(flag, fsFormatMax, "FsReadWriteReq::setSyncFlag");
|
|
opFlag |= flag;
|
|
}
|
|
|
|
inline
|
|
void
|
|
FsReadWriteReq::setPartialReadFlag(UintR & opFlag, Uint32 flag){
|
|
ASSERT_BOOL(flag, "FsReadWriteReq::setSyncFlag");
|
|
opFlag |= (flag << PARTIAL_READ_SHIFT);
|
|
}
|
|
|
|
inline
|
|
Uint32
|
|
FsReadWriteReq::getPartialReadFlag(UintR opFlag){
|
|
return (opFlag >> PARTIAL_READ_SHIFT) & 1;
|
|
}
|
|
|
|
|
|
#endif
|