1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

s4-python: Implement LoadParm.dump().

This commit is contained in:
Jelmer Vernooij 2010-06-20 13:29:35 +02:00
parent f051a8557f
commit 74c66c9a3f
2 changed files with 24 additions and 1 deletions

View File

@ -246,6 +246,27 @@ static PyObject *py_lp_ctx_services(py_talloc_Object *self)
return ret;
}
static PyObject *py_lp_dump(PyObject *self, PyObject *args)
{
PyObject *py_stream;
bool show_defaults = false;
FILE *f;
struct loadparm_context *lp_ctx = PyLoadparmContext_AsLoadparmContext(self);
if (!PyArg_ParseTuple(args, "O|b", &py_stream, &show_defaults))
return NULL;
f = PyFile_AsFile(py_stream);
if (f == NULL) {
PyErr_SetString(PyExc_TypeError, "Not a file stream");
return NULL;
}
lp_dump(lp_ctx, f, show_defaults, lp_numservices(lp_ctx));
Py_RETURN_NONE;
}
static PyMethodDef py_lp_ctx_methods[] = {
{ "load", (PyCFunction)py_lp_ctx_load, METH_VARARGS,
"S.load(filename) -> None\n"
@ -269,6 +290,8 @@ static PyMethodDef py_lp_ctx_methods[] = {
"S.private_path(name) -> path\n" },
{ "services", (PyCFunction)py_lp_ctx_services, METH_NOARGS,
"S.services() -> list" },
{ "dump", (PyCFunction)py_lp_dump, METH_VARARGS,
"S.dump(stream, show_defaults=False)" },
{ NULL }
};

View File

@ -192,6 +192,6 @@ if __name__ == '__main__':
check_client_access(lp, cname, caddr)
else:
dump(lp, opts.section_name, opts.parameter_name,
not opts.suppress_prompt, opts.verbose)
not opts.suppress_prompt, opts.verbose or False)
sys.exit(0)