SHM_Transporter.win32.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:
MySQL数据库
开发平台:
Visual 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 */
- #include <ndb_global.h>
- #include "SHM_Transporter.hpp"
- #include "TransporterInternalDefinitions.hpp"
- #include <TransporterCallback.hpp>
- #include <NdbSleep.h>
- #include <NdbOut.hpp>
- #include <windows.h>
- bool
- SHM_Transporter::connectServer(Uint32 timeOutMillis){
- if(!_shmSegCreated)
- {
- char szName[32];
- sprintf(szName, "ndb%lu", shmKey);
- hFileMapping = CreateFileMapping(INVALID_HANDLE_VALUE,
- 0,
- PAGE_READWRITE,
- 0,
- shmSize,
- szName);
- if(!hFileMapping)
- {
- reportThreadError(remoteNodeId, TE_SHM_UNABLE_TO_CREATE_SEGMENT);
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- _shmSegCreated = true;
- }
- if(!_attached){
- shmBuf = (char*)MapViewOfFile(hFileMapping, FILE_MAP_ALL_ACCESS, 0, 0, 0);
- if(shmBuf == 0){
- reportThreadError(remoteNodeId, TE_SHM_UNABLE_TO_ATTACH_SEGMENT);
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- ++*sharedCountAttached;
- _attached = true;
- }
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- if(*sharedCountAttached == 2 && !setupBuffersDone) {
- setupBuffers();
- setupBuffersDone=true;
- }
- if(*sharedCountAttached > 2) {
- reportThreadError(remoteNodeId, TE_SHM_DISCONNECT);
- return false;
- }
- if(setupBuffersDone) {
- NdbSleep_MilliSleep(timeOutMillis);
- if(*serverStatusFlag==1 && *clientStatusFlag==1)
- return true;
- }
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- bool
- SHM_Transporter::connectClient(Uint32 timeOutMillis){
- if(!_shmSegCreated)
- {
- char szName[32];
- sprintf(szName, "ndb%lu", shmKey);
- hFileMapping = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, szName);
- if(!hFileMapping)
- {
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- _shmSegCreated = true;
- }
- if(!_attached){
- shmBuf = (char*)MapViewOfFile(hFileMapping, FILE_MAP_ALL_ACCESS, 0, 0, 0);
- if(shmBuf == 0){
- reportThreadError(remoteNodeId, TE_SHM_UNABLE_TO_ATTACH_SEGMENT);
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- ++*sharedCountAttached;
- _attached = true;
- }
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- if(*sharedCountAttached == 2 && !setupBuffersDone) {
- setupBuffers();
- setupBuffersDone=true;
- }
- if(setupBuffersDone) {
- if(*serverStatusFlag==1 && *clientStatusFlag==1)
- return true;
- }
- NdbSleep_MilliSleep(timeOutMillis);
- return false;
- }
- bool
- SHM_Transporter::checkConnected(){
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- if(*sharedCountAttached != 2) {
- reportError(callbackObj, remoteNodeId, TE_SHM_DISCONNECT);
- return false;
- }
- return true;
- }
- void
- SHM_Transporter::disconnectImpl(){
- if(_attached) {
- volatile Uint32 * sharedCountAttached =
- (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));
- --*sharedCountAttached;
- if(!UnmapViewOfFile(shmBuf)) {
- reportError(callbackObj, remoteNodeId, TE_SHM_UNABLE_TO_REMOVE_SEGMENT);
- return;
- }
- _attached = false;
- if(!isServer && _shmSegCreated)
- _shmSegCreated = false;
- }
- if(_shmSegCreated){
- if(!CloseHandle(hFileMapping)) {
- reportError(callbackObj, remoteNodeId, TE_SHM_UNABLE_TO_REMOVE_SEGMENT);
- return;
- }
- _shmSegCreated = false;
- }
- setupBuffersDone=false;
- }