2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) David Mulder <dmulder@samba.org> 2021
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "param/param.h"
23 #include "param/pyparam.h"
24 #include "param/loadparm.h"
25 #include "param/s3_param.h"
28 #define PyErr_FromString(str) Py_BuildValue("(s)", discard_const_p(char, str))
29 #define PyLoadparmContext_AsLoadparmContext(obj) pytalloc_get_type(obj, struct loadparm_context)
31 _PUBLIC_
struct loadparm_context
*lpcfg_from_py_object(TALLOC_CTX
*mem_ctx
, PyObject
*py_obj
)
34 PyTypeObject
*lp_type
;
36 const struct loadparm_s3_helpers
*s3_context
;
37 struct loadparm_context
*s4_context
;
39 if (py_obj
== Py_None
) {
40 s3_context
= loadparm_s3_helpers();
42 s4_context
= loadparm_init_s3(mem_ctx
, s3_context
);
43 if (s4_context
== NULL
) {
48 if (!lpcfg_load_default(s4_context
)) {
49 PyErr_FromString("Failed to load defaults\n");
56 param_mod
= PyImport_ImportModule("samba.param");
57 if (param_mod
== NULL
) {
61 lp_type
= (PyTypeObject
*)PyObject_GetAttrString(param_mod
, "LoadParm");
63 if (lp_type
== NULL
) {
64 PyErr_SetString(PyExc_RuntimeError
, "Unable to import LoadParm");
68 is_lpobj
= PyObject_TypeCheck(py_obj
, lp_type
);
71 return talloc_reference(mem_ctx
, PyLoadparmContext_AsLoadparmContext(py_obj
));
74 PyErr_SetNone(PyExc_TypeError
);