shm_transporter.win32.cpp

来自「MySQL数据库开发源码 值得一看哦」· C++ 代码 · 共 179 行

CPP
179
字号
/* 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>void SHM_Transporter::make_error_info(char info[], int sz){  snprintf(info,sz,"Shm key=%d sz=%d",	   shmKey, shmSize);}boolSHM_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;}boolSHM_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;}boolSHM_Transporter::checkConnected(){  volatile Uint32 * sharedCountAttached =     (volatile Uint32*)(shmBuf + 6*sizeof(Uint32*));  if(*sharedCountAttached != 2) {    reportError(callbackObj, remoteNodeId, TE_SHM_DISCONNECT);    return false;  }  return true;}voidSHM_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;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?