context: add add_partition method

This method wraps fdisk_add_partition. Allows modifying in-memory
partition table of a given context.

Remember that changes need to be written to disk using the
relevant fdisk_write_disklabel function wrapper.
master
Jose M. Guisado 2022-10-07 17:31:06 +02:00
parent 46ad17eaa7
commit 8707d43111
2 changed files with 27 additions and 0 deletions

View File

@ -160,11 +160,37 @@ static PyObject *Context_write_disklabel(ContextObject *self, PyObject *args, Py
Py_RETURN_NONE;
}
#define Context_add_partition_HELP "add_partition(fdisk.Partition)\n\n" \
"Adds partition to context"
static PyObject *Context_add_partition(ContextObject *self, PyObject *args, PyObject *kwds)
{
PartitionObject *partobj;
int rc;
if (!PyArg_ParseTuple(args, "O!", &PartitionType, &partobj)) {
PyErr_SetString(PyExc_TypeError, ARG_ERR);
return NULL;
}
if (!partobj->pa) {
PyErr_SetString(PyExc_TypeError, ARG_ERR);
return NULL;
}
rc = fdisk_add_partition(self->cxt, partobj->pa, NULL);
if (rc < 0) {
PyErr_Format(PyExc_RuntimeError, "Error adding partition to context: %s", strerror(-rc));
return NULL;
}
Py_RETURN_NONE;
}
static PyMethodDef Context_methods[] = {
{"assign_device", (PyCFunction)Context_assign_device, METH_VARARGS, Context_assign_device_HELP},
{"partition_to_string", (PyCFunction)Context_partition_to_string, METH_VARARGS, Context_partition_to_string_HELP},
{"create_disklabel", (PyCFunction)Context_create_disklabel, METH_VARARGS, Context_create_disklabel_HELP},
{"write_disklabel", (PyCFunction)Context_write_disklabel, METH_NOARGS, Context_write_disklabel_HELP},
{"add_partition", (PyCFunction)Context_add_partition, METH_VARARGS, Context_add_partition_HELP},
{NULL}
};

View File

@ -55,6 +55,7 @@ static int Partition_init(PartitionObject *self, PyObject *args, PyObject *kwds)
*/
self->pa = fdisk_new_partition();
fdisk_partition_start_follow_default(self->pa, 1);
return 0;
}