main.cpp 5.0 KB
Newer Older
羽飞's avatar
羽飞 已提交
1
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
羽飞's avatar
羽飞 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
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>

羽飞's avatar
羽飞 已提交
22 23
#include "common/init.h"
#include "common/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 42
  std::cout << "-P: protocol. {plain(default), mysql}." << std::endl;
  std::cout << "-t: transaction model. {vacuous(default), mvcc}." << std::endl;
43
  std::cout << "-n: buffer pool memory size in byte" << std::endl;
羽飞's avatar
羽飞 已提交
44 45 46
  exit(0);
}

47 48
void parse_parameter(int argc, char **argv)
{
羽飞's avatar
羽飞 已提交
49 50 51 52 53 54 55 56 57
  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;
58
  while ((opt = getopt(argc, argv, "dp:P:s:t:f:o:e:hn:")) > 0) {
羽飞's avatar
羽飞 已提交
59
    switch (opt) {
60 61 62 63 64 65
      case 's':
        process_param->set_unix_socket_path(optarg);
        break;
      case 'p':
        process_param->set_server_port(atoi(optarg));
        break;
羽飞's avatar
羽飞 已提交
66 67 68
      case 'P':
        process_param->set_protocol(optarg);
        break;
69 70 71 72 73 74 75 76 77 78 79 80
      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;
羽飞's avatar
羽飞 已提交
81 82 83
      case 't':
        process_param->set_trx_kit_name(optarg);
        break;
84 85 86
      case 'n':
        process_param->set_buffer_pool_memory_size(atoi(optarg));
        break;
87 88 89 90
      case 'h':
      default:
        usage();
        return;
羽飞's avatar
羽飞 已提交
91 92 93 94
    }
  }
}

95 96 97
Server *init_server()
{
  std::map<std::string, std::string> net_section = get_properties()->get(NET);
羽飞's avatar
羽飞 已提交
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 124 125 126 127 128 129 130 131

  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
羽飞 已提交
132 133 134 135 136
  if (0 == strcasecmp(process_param->get_protocol().c_str(), "mysql")) {
    server_param.protocol = CommunicateProtocol::MYSQL;
  } else {
    server_param.protocol = CommunicateProtocol::PLAIN;
  }
羽飞's avatar
羽飞 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

  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里面处理的话,可能会导致死锁
 * 所以这里单独创建一个线程
 */
152 153
void *quit_thread_func(void *_signum)
{
羽飞's avatar
羽飞 已提交
154 155 156 157 158 159 160
  intptr_t signum = (intptr_t)_signum;
  LOG_INFO("Receive signal: %ld", signum);
  if (g_server) {
    g_server->shutdown();
  }
  return nullptr;
}
161 162
void quit_signal_handle(int signum)
{
羽飞's avatar
羽飞 已提交
163 164 165 166
  pthread_t tid;
  pthread_create(&tid, nullptr, quit_thread_func, (void *)(intptr_t)signum);
}

167 168
int main(int argc, char **argv)
{
羽飞's avatar
羽飞 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
  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
羽飞 已提交
188 189

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