SocketClient.cpp 2.25 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
/* 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 <NdbOut.hpp>

#include <SocketClient.hpp>
#include <SocketAuthenticator.hpp>

SocketClient::SocketClient(const char *server_name, unsigned short port, SocketAuthenticator *sa)
{
  m_auth= sa;
  m_port= port;
  m_server_name= strdup(server_name);
  m_sockfd= -1;
}

SocketClient::~SocketClient()
{
  if (m_server_name)
    free(m_server_name);
  if (m_sockfd >= 0)
    NDB_CLOSE_SOCKET(m_sockfd);
  if (m_auth)
    delete m_auth;
}

bool
SocketClient::init()
{
  if (m_sockfd >= 0)
    NDB_CLOSE_SOCKET(m_sockfd);

  memset(&m_servaddr, 0, sizeof(m_servaddr));
  m_servaddr.sin_family = AF_INET;
  m_servaddr.sin_port = htons(m_port);
  // Convert ip address presentation format to numeric format
  if (Ndb_getInAddr(&m_servaddr.sin_addr, m_server_name))
    return false;

  m_sockfd= socket(AF_INET, SOCK_STREAM, 0);
  if (m_sockfd == NDB_INVALID_SOCKET) {
    return false;
  }
  
  return true;
}

NDB_SOCKET_TYPE
SocketClient::connect()
{
  if (m_sockfd < 0)
  {
    if (!init()) {
69
#ifdef VM_TRACE
unknown's avatar
unknown committed
70
      ndbout << "SocketClient::connect() failed " << m_server_name << " " << m_port << endl;
71
#endif
unknown's avatar
unknown committed
72 73 74 75
      return -1;
    }
  }
  const int r = ::connect(m_sockfd, (struct sockaddr*) &m_servaddr, sizeof(m_servaddr));
unknown's avatar
unknown committed
76 77 78
  if (r == -1) {
    NDB_CLOSE_SOCKET(m_sockfd);
    m_sockfd= -1;
unknown's avatar
unknown committed
79
    return -1;
unknown's avatar
unknown committed
80
  }
unknown's avatar
unknown committed
81

unknown's avatar
unknown committed
82
  if (m_auth) {
unknown's avatar
unknown committed
83 84 85 86 87 88
    if (!m_auth->client_authenticate(m_sockfd))
    {
      NDB_CLOSE_SOCKET(m_sockfd);
      m_sockfd= -1;
      return -1;
    }
unknown's avatar
unknown committed
89
  }
unknown's avatar
unknown committed
90 91 92 93 94
  NDB_SOCKET_TYPE sockfd= m_sockfd;
  m_sockfd= -1;

  return sockfd;
}