1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00
(This used to be commit d3e88cb96f)
This commit is contained in:
Tim Potter 2002-10-21 04:50:32 +00:00
parent d4410a5758
commit 43b0404154
3 changed files with 68 additions and 20 deletions

View File

@ -358,7 +358,8 @@ PyObject *spoolss_addprinterdriver(PyObject *self, PyObject *args,
}
ZERO_STRUCT(ctr);
ZERO_STRUCT(dinfo);
switch(level) {
case 3:
ctr.info3 = &dinfo.driver_3;

View File

@ -74,6 +74,11 @@ BOOL py_to_FORM(FORM *form, PyObject *dict)
if (!to_struct(form, dict_copy, py_FORM))
goto done;
/* Careful! We can't call PyString_AsString(obj) then delete
obj and still expect to have our pointer pointing somewhere
useful. */
obj = PyDict_GetItemString(dict, "name");
name = PyString_AsString(obj);
init_unistr2(&form->name, name, strlen(name) + 1);

View File

@ -161,18 +161,28 @@ BOOL py_from_DEVICEMODE(PyObject **dict, DEVICEMODE *devmode)
BOOL py_to_DEVICEMODE(DEVICEMODE *devmode, PyObject *dict)
{
PyObject *obj;
PyObject *obj, *dict_copy = PyDict_Copy(dict);
BOOL result = False;
if (!to_struct(devmode, dict, py_DEVICEMODE))
return False;
if (!(obj = PyDict_GetItemString(dict_copy, "private")))
goto done;
if (!(obj = PyDict_GetItemString(dict, "private")))
return False;
if (!PyString_Check(obj))
goto done;
devmode->private = PyString_AsString(obj);
devmode->driverextra = PyString_Size(obj);
return True;
PyDict_DelItemString(dict_copy, "private");
if (!to_struct(devmode, dict_copy, py_DEVICEMODE))
goto done;
result = True;
done:
Py_DECREF(dict_copy);
return result;
}
/*
@ -204,12 +214,23 @@ BOOL py_from_PRINTER_INFO_1(PyObject **dict, PRINTER_INFO_1 *info)
BOOL py_to_PRINTER_INFO_1(PRINTER_INFO_1 *info, PyObject *dict)
{
PyObject *dict_copy = PyDict_Copy(dict);
BOOL result;
PyObject *obj, *dict_copy = PyDict_Copy(dict);
BOOL result = False;
if (!(obj = PyDict_GetItemString(dict_copy, "level")))
goto done;
if (!PyInt_Check(obj))
goto done;
PyDict_DelItemString(dict_copy, "level");
result = to_struct(info, dict_copy, py_PRINTER_INFO_1);
if (!to_struct(info, dict_copy, py_PRINTER_INFO_1))
goto done;
result = True;
done:
Py_DECREF(dict_copy);
return result;
}
@ -248,26 +269,47 @@ BOOL py_from_PRINTER_INFO_2(PyObject **dict, PRINTER_INFO_2 *info)
BOOL py_to_PRINTER_INFO_2(PRINTER_INFO_2 *info, PyObject *dict,
TALLOC_CTX *mem_ctx)
{
PyObject *obj;
PyObject *obj, *dict_copy = PyDict_Copy(dict);
BOOL result = False;
if (!to_struct(info, dict, py_PRINTER_INFO_2))
return False;
/* Convert security descriptor */
if (!(obj = PyDict_GetItemString(dict, "security_descriptor")))
return False;
if (!(obj = PyDict_GetItemString(dict_copy, "security_descriptor")))
goto done;
if (!PyDict_Check(obj))
goto done;
if (!py_to_SECDESC(&info->secdesc, obj, mem_ctx))
return False;
goto done;
if (!(obj = PyDict_GetItemString(dict, "device_mode")))
return False;
PyDict_DelItemString(dict_copy, "security_descriptor");
/* Convert device mode */
if (!(obj = PyDict_GetItemString(dict_copy, "device_mode")))
goto done;
if (!PyDict_Check(obj))
goto done;
info->devmode = talloc(mem_ctx, sizeof(DEVICEMODE));
if (!py_to_DEVICEMODE(info->devmode, obj))
return False;
goto done;
return True;
PyDict_DelItemString(dict_copy, "device_mode");
/* Convert remaining elements of dictionary */
if (!to_struct(info, dict_copy, py_PRINTER_INFO_2))
goto done;
result = True;
done:
Py_DECREF(dict_copy);
return result;
}
/*