3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 11:43:47 +01:00
dft_tools/triqs/utility/signal_handler.cpp
Olivier Parcollet 446f817111 wrapper: add release_GIL_and_enable_signal option.
- Add to the wrapper generator (add_method) the release_GIL_and_enable_signal option which :

   - release the GIL
   - save the python signal handler
   - enable the C++ triqs signal handler instead.
   - undo all of this after the code runs, or in a case of exception.
   - used python include, ceval.h, line 72 comments and below.

- reworked the triqs::signal_handler.
  simple C like function, no object (no need).
  start, stop, received, cf header file.

- clean the call_back.cpp : only place using the signal directly
  (qmc uses the callback).
  in particular, remove the old BOOST CHRONO, since
  the std::chrono works fine on platforms we use now.
2014-05-30 21:09:18 +02:00

72 lines
1.9 KiB
C++

/*******************************************************************************
*
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
*
* Copyright (C) 2014 by O. Parcollet
*
* TRIQS 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 3 of the License, or (at your option) any later
* version.
*
* TRIQS 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
* TRIQS. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
#include "signal_handler.hpp"
#include <signal.h>
#include <string.h>
#include <vector>
#include <iostream>
namespace triqs {
namespace signal_handler {
namespace {
std::vector<int> signals_list;
bool initialized = false;
void slot(int signal) {
std::cerr << "TRIQS : Received signal " << signal << std::endl;
signals_list.push_back(signal);
}
}
void start() {
if (initialized) return;
static struct sigaction action;
memset(&action, 0, sizeof(action));
action.sa_handler = slot;
sigaction(SIGINT, &action, NULL);
sigaction(SIGTERM, &action, NULL);
sigaction(SIGXCPU, &action, NULL);
sigaction(SIGQUIT, &action, NULL);
sigaction(SIGUSR1, &action, NULL);
sigaction(SIGUSR2, &action, NULL);
sigaction(SIGSTOP, &action, NULL);
initialized = true;
}
void stop() {
signals_list.clear();
initialized = false;
}
bool received(bool pop_) {
if (!initialized) start();
bool r = signals_list.size() != 0;
if (r && pop_) pop();
return r;
}
int last() { return signals_list.back(); }
void pop() { return signals_list.pop_back(); }
}
}