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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
/*
* (C) 2022 Soleta Consulting S.L. <info@soleta.eu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Author: Jose M. Guisado <jguisado@soleta.eu>
*/
#include "fdisk.h"
static PyMemberDef Partition_members[] = {
{ NULL }
};
static void Partition_dealloc(PartitionObject *self)
{
if (self->pa)
fdisk_unref_partition(self->pa);
Py_TYPE(self)->tp_free((PyObject *) self);
}
static PyObject *Partition_new(PyTypeObject *type,
PyObject *args __attribute__((unused)),
PyObject *kwds __attribute__((unused)))
{
PartitionObject *self = (PartitionObject*) type->tp_alloc(type, 0);
if (self)
self->pa = NULL;
return (PyObject *)self;
}
#define Partition_HELP "Partition()"
static int Partition_init(PartitionObject *self, PyObject *args, PyObject *kwds)
{
/*
char *kwlist[] = {
"context",
NULL
};
if (!PyArg_ParseTupleAndKeywords(args,
kwds, "|O!", kwlist,
&ContextType, &cxt)) {
PyErr_SetString(PyExc_TypeError, "Error");
return -1;
}
*/
self->pa = fdisk_new_partition();
return 0;
}
static PyMethodDef Partition_methods[] = {
{NULL}
};
static PyObject *Partition_get_partno(PartitionObject *self)
{
if (fdisk_partition_has_partno(self->pa)) {
return PyLong_FromSize_t(fdisk_partition_get_partno(self->pa));
}
// Py_RETURN_NONE;
return Py_BuildValue("%d", -1);
}
static PyObject *Partition_get_size(PartitionObject *self)
{
if (fdisk_partition_has_size(self->pa)) {
return PyLong_FromUnsignedLongLong(fdisk_partition_get_size(self->pa));
}
Py_RETURN_NONE;
}
static PyGetSetDef Partition_getseters[] = {
{"partno", (getter)Partition_get_partno, NULL, "partition number", NULL},
{"size", (getter)Partition_get_size, NULL, "number of sectors", NULL},
{NULL}
};
static PyObject *Partition_repr(PartitionObject *self)
{
return PyUnicode_FromFormat("<libfdisk.Partition object at %p>",
self);
}
PyTypeObject PartitionType = {
PyVarObject_HEAD_INIT(NULL, 0)
"libfdisk.Partition", /*tp_name*/
sizeof(PartitionObject), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)Partition_dealloc, /*tp_dealloc*/
0, /*tp_print*/
NULL, /*tp_getattr*/
NULL, /*tp_setattr*/
NULL, /*tp_compare*/
(reprfunc) Partition_repr,
NULL, /*tp_as_number*/
NULL, /*tp_as_sequence*/
NULL, /*tp_as_mapping*/
NULL, /*tp_hash */
NULL, /*tp_call*/
NULL, /*tp_str*/
NULL, /*tp_getattro*/
NULL, /*tp_setattro*/
NULL, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
Partition_HELP, /* tp_doc */
NULL, /* tp_traverse */
NULL, /* tp_clear */
NULL, /* tp_richcompare */
0, /* tp_weaklistoffset */
NULL, /* tp_iter */
NULL, /* tp_iternext */
Partition_methods, /* tp_methods */
Partition_members, /* tp_members */
Partition_getseters, /* tp_getset */
NULL, /* tp_base */
NULL, /* tp_dict */
NULL, /* tp_descr_get */
NULL, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)Partition_init, /* tp_init */
NULL, /* tp_alloc */
Partition_new, /* tp_new */
};
PyObject *PyObjectResultPartition(struct fdisk_partition *pa)
{
PartitionObject *result;
if (!pa) {
PyErr_SetString(PyExc_AssertionError, "pa assert failed");
return NULL;
}
result = PyObject_New(PartitionObject, &PartitionType);
if (!result) {
PyErr_SetString(PyExc_MemoryError, "Couldn't allocate Partition object");
return NULL;
}
result->pa = pa;
return (PyObject *) result;
}
void Partition_AddModuleObject(PyObject *mod)
{
if (PyType_Ready(&PartitionType) < 0)
return;
Py_INCREF(&PartitionType);
PyModule_AddObject(mod, "Partition", (PyObject *)&PartitionType);
}
|