forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubeutil.h
61 lines (49 loc) · 2.09 KB
/
kubeutil.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-present Datadog, Inc.
#ifndef DATADOG_AGENT_RTLOADER_KUBEUTIL_H
#define DATADOG_AGENT_RTLOADER_KUBEUTIL_H
/*! \file kubeutil.h
\brief RtLoader Kubeutil builtin header file.
The prototypes here defined provide functions to initialize the python kubeutil
builtin module, and set its relevant callbacks for the rtloader caller.
*/
/*! \fn PyMODINIT_FUNC PyInit_kubeutil(void)
\brief Initializes the kubeutil builtin python module.
The kubeutil python builtin is created and registered here as per the module_def
PyMethodDef definition. The get_connection_info method is registered with the
module. A fresh reference to the module is created here. This function is python3
only.
*/
/*! \fn void Py2_init_kubeutil()
\brief Initializes the kubeutil builtin python module.
The kubeutil python builtin is created and registered here as per the methods
PyMethodDef array definition. The get_connection_info method is registered with the
module. A fresh reference to the module is created here. This function is python2
only.
*/
/*! \fn void _set_get_connection_info_cb(cb_get_connection_info_t)
\brief Sets a callback to be used by rtloader for kubernetes connection information
retrieval.
\param object A function pointer with cb_get_connection_info_t prototype to the
callback function.
The callback is expected to be provided by the rtloader caller - in go-context: CGO.
*/
#include <Python.h>
#include <rtloader_types.h>
#define KUBEUTIL_MODULE_NAME "kubeutil"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef DATADOG_AGENT_THREE
// PyMODINIT_FUNC macro already specifies extern "C", nesting these is legal
PyMODINIT_FUNC PyInit_kubeutil(void);
#elif defined(DATADOG_AGENT_TWO)
void Py2_init_kubeutil();
#endif
void _set_get_connection_info_cb(cb_get_connection_info_t);
#ifdef __cplusplus
}
#endif
#endif // DATADOG_AGENT_RTLOADER_KUBEUTIL_H