The Gaudi Framework  v29r0 (ff2e7097)
CallbackStreamBuf.h
Go to the documentation of this file.
1 #ifndef GAUDIPYTHON_CALLBACKSTREAMBUF_H
2 #define GAUDIPYTHON_CALLBACKSTREAMBUF_H
3 // ============================================================================
4 #include "Python.h" //included for the python API
5 // ============================================================================
6 #include <array>
7 #include <sstream> //included for stringbuf
8 // ============================================================================
9 #include "GaudiKernel/Kernel.h"
11 // ============================================================================
12 
13 namespace GaudiPython
14 {
15  int GAUDI_API call_python_method( PyObject* self, const char* method, char* buf );
16 
18  {
19  private:
20  class PyObject_t
21  {
22  PyObject* m_obj;
23 
24  public:
25  PyObject_t( PyObject* obj = nullptr ) : m_obj( obj )
26  {
27  if ( m_obj ) Py_INCREF( m_obj );
28  }
30  {
31  if ( m_obj ) Py_DECREF( m_obj );
32  }
33  PyObject* get() { return m_obj; }
34  };
36  std::array<char, 512> m_callbackBuff; // used for passing the flushed chars in the python callback
37 
38  public:
39  CallbackStreamBuf( PyObject* self );
40  int sync() override;
41  };
42 }
43 
44 #endif
std::array< char, 512 > m_callbackBuff
GaudiPython.h GaudiPython/GaudiPython.h.
Definition: AlgDecorators.h:37
#define GAUDI_API
Definition: Kernel.h:110
GAUDI_API StatusCode call_python_method(PyObject *self, const char *method)
call the python method
Definition: Algorithm.cpp:29