osSignal.c 1.9 KB
Newer Older
S
TD-1207  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * 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.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#define _DEFAULT_SOURCE
#include "os.h"
S
Shengliang Guan 已提交
18 19 20 21 22 23 24

#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)

/*
 * windows implementation
 */

S
TD-1207  
Shengliang Guan 已提交
25
#include <windows.h>
S
TD-1207  
Shengliang Guan 已提交
26

S
TD-1207  
Shengliang Guan 已提交
27 28
typedef void (*FWinSignalHandler)(int32_t signum);

S
TD-1207  
Shengliang Guan 已提交
29 30
void taosSetSignal(int32_t signum, FSignalHandler sigfp) {
  if (signum == SIGUSR1) return;
S
TD-1207  
Shengliang Guan 已提交
31 32 33 34 35

  // SIGHUP doesn't exist in windows, we handle it in the way of ctrlhandler
  if (signum == SIGHUP) {
    SetConsoleCtrlHandler((PHANDLER_ROUTINE)sigfp, TRUE);
  } else {
S
Shengliang Guan 已提交
36
    signal(signum, (FWinSignalHandler)sigfp);
S
TD-1207  
Shengliang Guan 已提交
37
  }
S
TD-1207  
Shengliang Guan 已提交
38 39 40
}

void taosIgnSignal(int32_t signum) {
S
TD-1207  
Shengliang Guan 已提交
41
  if (signum == SIGUSR1 || signum == SIGHUP) return;
S
TD-1207  
Shengliang Guan 已提交
42 43 44 45
  signal(signum, SIG_IGN);
}

void taosDflSignal(int32_t signum) {
S
TD-1207  
Shengliang Guan 已提交
46
  if (signum == SIGUSR1 || signum == SIGHUP) return;
S
TD-1207  
Shengliang Guan 已提交
47 48
  signal(signum, SIG_DFL);
}
S
Shengliang Guan 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

#else

/*
 * linux and darwin implementation
 */

typedef void (*FLinuxSignalHandler)(int32_t signum, siginfo_t *sigInfo, void *context);

void taosSetSignal(int32_t signum, FSignalHandler sigfp) {
  struct sigaction act;
  memset(&act, 0, sizeof(act));
#if 1
  act.sa_flags = SA_SIGINFO;
  act.sa_sigaction = (FLinuxSignalHandler)sigfp;
#else
  act.sa_handler = sigfp;
#endif
  sigaction(signum, &act, NULL);
}

void taosIgnSignal(int32_t signum) { signal(signum, SIG_IGN); }

void taosDflSignal(int32_t signum) { signal(signum, SIG_DFL); }

#endif