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

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 <NdbOut.hpp>
  15. #include <SocketClient.hpp>
  16. #include <SocketAuthenticator.hpp>
  17. SocketClient::SocketClient(const char *server_name, unsigned short port, SocketAuthenticator *sa)
  18. {
  19.   m_auth= sa;
  20.   m_port= port;
  21.   m_server_name= strdup(server_name);
  22.   m_sockfd= NDB_INVALID_SOCKET;
  23. }
  24. SocketClient::~SocketClient()
  25. {
  26.   if (m_server_name)
  27.     free(m_server_name);
  28.   if (m_sockfd != NDB_INVALID_SOCKET)
  29.     NDB_CLOSE_SOCKET(m_sockfd);
  30.   if (m_auth)
  31.     delete m_auth;
  32. }
  33. bool
  34. SocketClient::init()
  35. {
  36.   if (m_sockfd != NDB_INVALID_SOCKET)
  37.     NDB_CLOSE_SOCKET(m_sockfd);
  38.   memset(&m_servaddr, 0, sizeof(m_servaddr));
  39.   m_servaddr.sin_family = AF_INET;
  40.   m_servaddr.sin_port = htons(m_port);
  41.   // Convert ip address presentation format to numeric format
  42.   if (Ndb_getInAddr(&m_servaddr.sin_addr, m_server_name))
  43.     return false;
  44.   m_sockfd= socket(AF_INET, SOCK_STREAM, 0);
  45.   if (m_sockfd == NDB_INVALID_SOCKET) {
  46.     return false;
  47.   }
  48.   
  49.   DBUG_PRINT("info",("NDB_SOCKET: %d", m_sockfd));
  50.   return true;
  51. }
  52. NDB_SOCKET_TYPE
  53. SocketClient::connect()
  54. {
  55.   if (m_sockfd == NDB_INVALID_SOCKET)
  56.   {
  57.     if (!init()) {
  58. #ifdef VM_TRACE
  59.       ndbout << "SocketClient::connect() failed " << m_server_name << " " << m_port << endl;
  60. #endif
  61.       return NDB_INVALID_SOCKET;
  62.     }
  63.   }
  64.   const int r = ::connect(m_sockfd, (struct sockaddr*) &m_servaddr, sizeof(m_servaddr));
  65.   if (r == -1) {
  66.     NDB_CLOSE_SOCKET(m_sockfd);
  67.     m_sockfd= NDB_INVALID_SOCKET;
  68.     return NDB_INVALID_SOCKET;
  69.   }
  70.   if (m_auth) {
  71.     if (!m_auth->client_authenticate(m_sockfd))
  72.     {
  73.       NDB_CLOSE_SOCKET(m_sockfd);
  74.       m_sockfd= NDB_INVALID_SOCKET;
  75.       return NDB_INVALID_SOCKET;
  76.     }
  77.   }
  78.   NDB_SOCKET_TYPE sockfd= m_sockfd;
  79.   m_sockfd= NDB_INVALID_SOCKET;
  80.   return sockfd;
  81. }