SocketServer.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <my_pthread.h>
  15. #include <SocketServer.hpp>
  16. #include <NdbTCP.h>
  17. #include <NdbOut.hpp>
  18. #include <NdbThread.h>
  19. #include <NdbSleep.h>
  20. #define DEBUG(x) ndbout << x << endl;
  21. SocketServer::SocketServer(int maxSessions) :
  22.   m_sessions(10),
  23.   m_services(5)
  24. {
  25.   m_thread = 0;
  26.   m_stopThread = false;
  27.   m_maxSessions = maxSessions;
  28. }
  29. SocketServer::~SocketServer() {
  30.   unsigned i;
  31.   for(i = 0; i<m_sessions.size(); i++){
  32.     delete m_sessions[i].m_session;
  33.   }
  34.   for(i = 0; i<m_services.size(); i++){
  35.     delete m_services[i].m_service;
  36.   }
  37. }
  38. bool
  39. SocketServer::tryBind(unsigned short port, const char * intface) {
  40.   struct sockaddr_in servaddr;
  41.   memset(&servaddr, 0, sizeof(servaddr));
  42.   servaddr.sin_family = AF_INET;
  43.   servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
  44.   servaddr.sin_port = htons(port);
  45.   
  46.   if(intface != 0){
  47.     if(Ndb_getInAddr(&servaddr.sin_addr, intface))
  48.       return false;
  49.   }
  50.   
  51.   const NDB_SOCKET_TYPE sock  = socket(AF_INET, SOCK_STREAM, 0);
  52.   if (sock == NDB_INVALID_SOCKET) {
  53.     return false;
  54.   }
  55.   
  56.   DBUG_PRINT("info",("NDB_SOCKET: %d", sock));
  57.   const int on = 1;
  58.   if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, 
  59.  (const char*)&on, sizeof(on)) == -1) {
  60.     NDB_CLOSE_SOCKET(sock);
  61.     return false;
  62.   }
  63.   
  64.   if (bind(sock, (struct sockaddr*) &servaddr, sizeof(servaddr)) == -1) {
  65.     NDB_CLOSE_SOCKET(sock);
  66.     return false;
  67.   }
  68.   NDB_CLOSE_SOCKET(sock);
  69.   return true;
  70. }
  71. bool
  72. SocketServer::setup(SocketServer::Service * service, 
  73.     unsigned short port, 
  74.     const char * intface){
  75.   DBUG_ENTER("SocketServer::setup");
  76.   DBUG_PRINT("enter",("interface=%s, port=%d", intface, port));
  77.   struct sockaddr_in servaddr;
  78.   memset(&servaddr, 0, sizeof(servaddr));
  79.   servaddr.sin_family = AF_INET;
  80.   servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
  81.   servaddr.sin_port = htons(port);
  82.   
  83.   if(intface != 0){
  84.     if(Ndb_getInAddr(&servaddr.sin_addr, intface))
  85.       DBUG_RETURN(false);
  86.   }
  87.   
  88.   const NDB_SOCKET_TYPE sock  = socket(AF_INET, SOCK_STREAM, 0);
  89.   if (sock == NDB_INVALID_SOCKET) {
  90.     DBUG_PRINT("error",("socket() - %d - %s",
  91. errno, strerror(errno)));
  92.     DBUG_RETURN(false);
  93.   }
  94.   
  95.   DBUG_PRINT("info",("NDB_SOCKET: %d", sock));
  96.  
  97.   const int on = 1;
  98.   if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, 
  99.  (const char*)&on, sizeof(on)) == -1) {
  100.     DBUG_PRINT("error",("getsockopt() - %d - %s",
  101. errno, strerror(errno)));
  102.     NDB_CLOSE_SOCKET(sock);
  103.     DBUG_RETURN(false);
  104.   }
  105.   
  106.   if (bind(sock, (struct sockaddr*) &servaddr, sizeof(servaddr)) == -1) {
  107.     DBUG_PRINT("error",("bind() - %d - %s",
  108. errno, strerror(errno)));
  109.     NDB_CLOSE_SOCKET(sock);
  110.     DBUG_RETURN(false);
  111.   }
  112.   
  113.   if (listen(sock, m_maxSessions) == -1){
  114.     DBUG_PRINT("error",("listen() - %d - %s",
  115. errno, strerror(errno)));
  116.     NDB_CLOSE_SOCKET(sock);
  117.     DBUG_RETURN(false);
  118.   }
  119.   
  120.   ServiceInstance i;
  121.   i.m_socket = sock;
  122.   i.m_service = service;
  123.   m_services.push_back(i);
  124.   DBUG_RETURN(true);
  125. }
  126. void
  127. SocketServer::doAccept(){
  128.   fd_set readSet, exceptionSet;
  129.   FD_ZERO(&readSet);
  130.   FD_ZERO(&exceptionSet);
  131.   
  132.   m_services.lock();
  133.   int maxSock = 0;
  134.   for (unsigned i = 0; i < m_services.size(); i++){
  135.     const NDB_SOCKET_TYPE s = m_services[i].m_socket;
  136.     FD_SET(s, &readSet);
  137.     FD_SET(s, &exceptionSet);
  138.     maxSock = (maxSock > s ? maxSock : s);
  139.   }
  140.   struct timeval timeout;
  141.   timeout.tv_sec  = 1;
  142.   timeout.tv_usec = 0;
  143.   
  144.   if(select(maxSock + 1, &readSet, 0, &exceptionSet, &timeout) > 0){
  145.     for (unsigned i = 0; i < m_services.size(); i++){
  146.       ServiceInstance & si = m_services[i];
  147.       
  148.       if(FD_ISSET(si.m_socket, &readSet)){
  149. NDB_SOCKET_TYPE childSock = accept(si.m_socket, 0, 0);
  150. if(childSock == NDB_INVALID_SOCKET){
  151.   continue;
  152. }
  153. SessionInstance s;
  154. s.m_service = si.m_service;
  155. s.m_session = si.m_service->newSession(childSock);
  156. if(s.m_session != 0){
  157.   m_sessions.push_back(s);
  158.   startSession(m_sessions.back());
  159. }
  160. continue;
  161.       }      
  162.       
  163.       if(FD_ISSET(si.m_socket, &exceptionSet)){
  164. DEBUG("socket in the exceptionSet");
  165. continue;
  166.       }
  167.     }
  168.   }
  169.   m_services.unlock();
  170. }
  171. extern "C"
  172. void* 
  173. socketServerThread_C(void* _ss){
  174.   SocketServer * ss = (SocketServer *)_ss;
  175.   ss->doRun();
  176.   return 0;
  177. }
  178. void
  179. SocketServer::startServer(){
  180.   m_threadLock.lock();
  181.   if(m_thread == 0 && m_stopThread == false){
  182.     m_thread = NdbThread_Create(socketServerThread_C,
  183. (void**)this,
  184. 32768,
  185. "NdbSockServ",
  186. NDB_THREAD_PRIO_LOW);
  187.   }
  188.   m_threadLock.unlock();
  189. }
  190. void
  191. SocketServer::stopServer(){
  192.   m_threadLock.lock();
  193.   if(m_thread != 0){
  194.     m_stopThread = true;
  195.     
  196.     void * res;
  197.     NdbThread_WaitFor(m_thread, &res);
  198.     NdbThread_Destroy(&m_thread);
  199.     m_thread = 0;
  200.   }
  201.   m_threadLock.unlock();
  202. }
  203. void
  204. SocketServer::doRun(){
  205.   while(!m_stopThread){
  206.     checkSessions();
  207.     if(m_sessions.size() < m_maxSessions){
  208.       doAccept();
  209.     } else {
  210.       NdbSleep_MilliSleep(200);
  211.     }
  212.   }
  213. }
  214. void
  215. SocketServer::startSession(SessionInstance & si){
  216.   si.m_thread = NdbThread_Create(sessionThread_C,
  217.  (void**)si.m_session,
  218.  32768,
  219.  "NdbSock_Session",
  220.  NDB_THREAD_PRIO_LOW);
  221. }
  222. static
  223. bool 
  224. transfer(NDB_SOCKET_TYPE sock){
  225. #if defined NDB_OSE || defined NDB_SOFTOSE
  226.   const PROCESS p = current_process();
  227.   const size_t ps = sizeof(PROCESS);
  228.   int res = setsockopt(sock, SOL_SOCKET, SO_OSEOWNER, &p, ps);
  229.   if(res != 0){
  230.     ndbout << "Failed to transfer ownership of socket" << endl;
  231.     return false;
  232.   }
  233. #endif
  234.   return true;
  235. }
  236. void
  237. SocketServer::foreachSession(void (*func)(SocketServer::Session*, void *), void *data)
  238. {
  239.   for(int i = m_sessions.size() - 1; i >= 0; i--){
  240.     (*func)(m_sessions[i].m_session, data);
  241.   }
  242.   checkSessions();
  243. }
  244. void
  245. SocketServer::checkSessions(){
  246.   for(int i = m_sessions.size() - 1; i >= 0; i--){
  247.     if(m_sessions[i].m_session->m_stopped){
  248.       if(m_sessions[i].m_thread != 0){
  249. void* ret;
  250. NdbThread_WaitFor(m_sessions[i].m_thread, &ret);
  251. NdbThread_Destroy(&m_sessions[i].m_thread);
  252.       } 
  253.       m_sessions[i].m_session->stopSession();
  254.       delete m_sessions[i].m_session;
  255.       m_sessions.erase(i);
  256.     }
  257.   }
  258. }
  259. void
  260. SocketServer::stopSessions(bool wait){
  261.   int i;
  262.   for(i = m_sessions.size() - 1; i>=0; i--)
  263.   {
  264.     m_sessions[i].m_session->stopSession();
  265.     m_sessions[i].m_session->m_stop = true; // to make sure
  266.   }
  267.   for(i = m_services.size() - 1; i>=0; i--)
  268.     m_services[i].m_service->stopSessions();
  269.   
  270.   if(wait){
  271.     while(m_sessions.size() > 0){
  272.       checkSessions();
  273.       NdbSleep_MilliSleep(100);
  274.     }
  275.   }
  276. }
  277. /***** Session code ******/
  278. extern "C"
  279. void* 
  280. sessionThread_C(void* _sc){
  281.   SocketServer::Session * si = (SocketServer::Session *)_sc;
  282.   if(!transfer(si->m_socket)){
  283.     si->m_stopped = true;
  284.     return 0;
  285.   }
  286.   
  287.   if(!si->m_stop){
  288.     si->m_stopped = false;
  289.     si->runSession();
  290.   } else {
  291.     NDB_CLOSE_SOCKET(si->m_socket);
  292.   }
  293.   
  294.   si->m_stopped = true;
  295.   return 0;
  296. }
  297. template class MutexVector<SocketServer::ServiceInstance>;
  298. template class MutexVector<SocketServer::SessionInstance>;