main.cpp 4.7 KB
Newer Older
羽飞's avatar
羽飞 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* Copyright (c) 2021 Xie Meiyi(xiemeiyi@hust.edu.cn) and OceanBase and/or its affiliates. All rights reserved.
miniob is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
         http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details. */

// __CR__

/*
 *  Created on: Mar 11, 2012
 *      Author: Longda Feng
 */

#include <netinet/in.h>
#include <unistd.h>
#include <iostream>

#include "init.h"
羽飞's avatar
羽飞 已提交
23
#include "ini_setting.h"
羽飞's avatar
羽飞 已提交
24 25 26 27 28 29 30 31 32 33 34
#include "common/os/process.h"
#include "common/os/signal.h"
#include "net/server.h"
#include "net/server_param.h"

using namespace common;

#define NET "NET"

static Server *g_server = nullptr;

35 36
void usage()
{
羽飞's avatar
羽飞 已提交
37 38 39 40
  std::cout << "Useage " << std::endl;
  std::cout << "-p: server port. if not specified, the item in the config file will be used" << std::endl;
  std::cout << "-f: path of config file." << std::endl;
  std::cout << "-s: use unix socket and the argument is socket address" << std::endl;
羽飞's avatar
羽飞 已提交
41
  std::cout << "-P: protocol. {plain, mysql}. plain is default." << std::endl;
羽飞's avatar
羽飞 已提交
42 43 44
  exit(0);
}

45 46
void parse_parameter(int argc, char **argv)
{
羽飞's avatar
羽飞 已提交
47 48 49 50 51 52 53 54 55
  std::string process_name = get_process_name(argv[0]);

  ProcessParam *process_param = the_process_param();

  process_param->init_default(process_name);

  // Process args
  int opt;
  extern char *optarg;
羽飞's avatar
羽飞 已提交
56
  while ((opt = getopt(argc, argv, "dp:P:s:f:o:e:h")) > 0) {
羽飞's avatar
羽飞 已提交
57
    switch (opt) {
58 59 60 61 62 63
      case 's':
        process_param->set_unix_socket_path(optarg);
        break;
      case 'p':
        process_param->set_server_port(atoi(optarg));
        break;
羽飞's avatar
羽飞 已提交
64 65 66
      case 'P':
        process_param->set_protocol(optarg);
        break;
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
      case 'f':
        process_param->set_conf(optarg);
        break;
      case 'o':
        process_param->set_std_out(optarg);
        break;
      case 'e':
        process_param->set_std_err(optarg);
        break;
      case 'd':
        process_param->set_demon(true);
        break;
      case 'h':
      default:
        usage();
        return;
羽飞's avatar
羽飞 已提交
83 84 85 86
    }
  }
}

87 88 89
Server *init_server()
{
  std::map<std::string, std::string> net_section = get_properties()->get(NET);
羽飞's avatar
羽飞 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

  ProcessParam *process_param = the_process_param();

  long listen_addr = INADDR_ANY;
  long max_connection_num = MAX_CONNECTION_NUM_DEFAULT;
  int port = PORT_DEFAULT;

  std::map<std::string, std::string>::iterator it = net_section.find(CLIENT_ADDRESS);
  if (it != net_section.end()) {
    std::string str = it->second;
    str_to_val(str, listen_addr);
  }

  it = net_section.find(MAX_CONNECTION_NUM);
  if (it != net_section.end()) {
    std::string str = it->second;
    str_to_val(str, max_connection_num);
  }

  if (process_param->get_server_port() > 0) {
    port = process_param->get_server_port();
    LOG_INFO("Use port config in command line: %d", port);
  } else {
    it = net_section.find(PORT);
    if (it != net_section.end()) {
      std::string str = it->second;
      str_to_val(str, port);
    }
  }

  ServerParam server_param;
  server_param.listen_addr = listen_addr;
  server_param.max_connection_num = max_connection_num;
  server_param.port = port;
羽飞's avatar
羽飞 已提交
124 125 126 127 128
  if (0 == strcasecmp(process_param->get_protocol().c_str(), "mysql")) {
    server_param.protocol = CommunicateProtocol::MYSQL;
  } else {
    server_param.protocol = CommunicateProtocol::PLAIN;
  }
羽飞's avatar
羽飞 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

  if (process_param->get_unix_socket_path().size() > 0) {
    server_param.use_unix_socket = true;
    server_param.unix_socket_path = process_param->get_unix_socket_path();
  }

  Server *server = new Server(server_param);
  return server;
}

/**
 * 如果收到terminal信号的时候,正在处理某些事情,比如打日志,并且拿着日志的锁
 * 那么直接在signal_handler里面处理的话,可能会导致死锁
 * 所以这里单独创建一个线程
 */
144 145
void *quit_thread_func(void *_signum)
{
羽飞's avatar
羽飞 已提交
146 147 148 149 150 151 152
  intptr_t signum = (intptr_t)_signum;
  LOG_INFO("Receive signal: %ld", signum);
  if (g_server) {
    g_server->shutdown();
  }
  return nullptr;
}
153 154
void quit_signal_handle(int signum)
{
羽飞's avatar
羽飞 已提交
155 156 157 158
  pthread_t tid;
  pthread_create(&tid, nullptr, quit_thread_func, (void *)(intptr_t)signum);
}

159 160
int main(int argc, char **argv)
{
羽飞's avatar
羽飞 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
  setSignalHandler(quit_signal_handle);

  parse_parameter(argc, argv);

  int rc = STATUS_SUCCESS;
  rc = init(the_process_param());
  if (rc) {
    std::cerr << "Shutdown due to failed to init!" << std::endl;
    cleanup();
    return rc;
  }

  g_server = init_server();
  Server::init();
  g_server->serve();

  LOG_INFO("Server stopped");

  cleanup();
羽飞's avatar
羽飞 已提交
180 181

  delete g_server;
羽飞's avatar
羽飞 已提交
182
}