summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-06 17:31:00 +0000
committerErik Troan <ewt@redhat.com>1999-08-06 17:31:00 +0000
commit455fdb7027c443d558077703ee2ff932e5935d25 (patch)
tree91f95fe5252d3110920f48220c560e96c7dff622
parentf85000fbc9ae5c0fd00f69336c80553e8970d4cc (diff)
downloadanaconda-455fdb7027c443d558077703ee2ff932e5935d25.tar.gz
anaconda-455fdb7027c443d558077703ee2ff932e5935d25.tar.xz
anaconda-455fdb7027c443d558077703ee2ff932e5935d25.zip
moved hardware listing into isys
-rw-r--r--isys/Makefile2
-rw-r--r--isys/isys.c117
2 files changed, 118 insertions, 1 deletions
diff --git a/isys/Makefile b/isys/Makefile
index f0766f47d..91934e1f7 100644
--- a/isys/Makefile
+++ b/isys/Makefile
@@ -2,7 +2,7 @@ DESTDIR = $(TOPDIR)/RedHat/instimage/usr/lib/python1.5/site-packages
CFLAGS = -I/usr/include/python1.5 -g
OBJECTS = isys.o nfsmount.o dns.o mount_clnt.o mount_xdr.o imount.o \
- inet.o smp.o moduleinfo.o devnodes.o otherinsmod.o cpio.o
+ inet.o smp.o moduleinfo.o devnodes.o otherinsmod.o cpio.o probe.o
STATICLIBS = pci/libpciprobe.a modutils/insmod/libmodutils.a \
modutils/obj/libobj.a modutils/util/libutil.a
LOADLIBES = -lrpm -lresolv -lz -lpci
diff --git a/isys/isys.c b/isys/isys.c
index 65d83e889..89f5e6aa8 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -10,6 +10,7 @@
#include "inet.h"
#include "isys.h"
#include "pci/pciprobe.h"
+#include "probe.h"
#include "smp.h"
/* FIXME: this is such a hack -- moduleInfoList ought to be a proper object */
@@ -26,6 +27,7 @@ static PyObject * makeDevInode(PyObject * s, PyObject * args);
static PyObject * doPciProbe(PyObject * s, PyObject * args);
static PyObject * smpAvailable(PyObject * s, PyObject * args);
static PyObject * doConfigNetDevice(PyObject * s, PyObject * args);
+static PyObject * createProbedList(PyObject * s, PyObject * args);
static PyMethodDef isysModuleMethods[] = {
{ "findmoduleinfo", (PyCFunction) doFindModInfo, METH_VARARGS, NULL },
@@ -33,6 +35,7 @@ static PyMethodDef isysModuleMethods[] = {
{ "mkdevinode", (PyCFunction) makeDevInode, METH_VARARGS, NULL },
{ "modulelist", (PyCFunction) getModuleList, METH_VARARGS, NULL },
{ "pciprobe", (PyCFunction) doPciProbe, METH_VARARGS, NULL },
+ { "ProbedList", (PyCFunction) createProbedList, METH_VARARGS, NULL },
{ "readmoduleinfo", (PyCFunction) doReadModInfo, METH_VARARGS, NULL },
{ "rmmod", (PyCFunction) doRmmod, METH_VARARGS, NULL },
{ "mount", (PyCFunction) doMount, METH_VARARGS, NULL },
@@ -42,6 +45,53 @@ static PyMethodDef isysModuleMethods[] = {
{ NULL }
} ;
+typedef struct {
+ PyObject_HEAD;
+ struct knownDevices list;
+} probedListObject;
+
+static PyObject * probedListGetAttr(probedListObject * o, char * name);
+static void probedListDealloc (probedListObject * o);
+static PyObject * probedListNet(probedListObject * s, PyObject * args);
+static PyObject * probedListScsi(probedListObject * s, PyObject * args);
+static PyObject * probedListIde(probedListObject * s, PyObject * args);
+static int probedListLength(PyObject * o);
+static PyObject * probedListSubscript(PyObject * o, int item);
+
+static PyMethodDef probedListObjectMethods[] = {
+ { "updateNet", (PyCFunction) probedListNet, METH_VARARGS, NULL },
+ { "updateScsi", (PyCFunction) probedListScsi, METH_VARARGS, NULL },
+ { "updateIde", (PyCFunction) probedListIde, METH_VARARGS, NULL },
+ { NULL },
+};
+
+static PySequenceMethods probedListAsSequence = {
+ probedListLength, /* length */
+ 0, /* concat */
+ 0, /* repeat */
+ probedListSubscript, /* item */
+ 0, /* slice */
+ 0, /* assign item */
+ 0, /* assign slice */
+};
+
+static PyTypeObject probedListType = {
+ PyObject_HEAD_INIT(&PyType_Type)
+ 0, /* ob_size */
+ "ProbedList", /* tp_name */
+ sizeof(probedListObject), /* tp_size */
+ 0, /* tp_itemsize */
+ (destructor) probedListDealloc, /* tp_dealloc */
+ 0, /* tp_print */
+ (getattrfunc) probedListGetAttr,/* tp_getattr */
+ 0, /* tp_setattr */
+ 0, /* tp_compare */
+ 0, /* tp_repr */
+ 0, /* tp_as_number */
+ &probedListAsSequence, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+};
+
static PyObject * buildModuleObject(struct moduleInfo * mi) {
PyObject * major, * minor, * result;
PyObject * modArgs;
@@ -314,3 +364,70 @@ static PyObject * doConfigNetDevice(PyObject * s, PyObject * args) {
Py_INCREF(Py_None);
return Py_None;
}
+
+static PyObject * probedListGetAttr(probedListObject * o, char * name) {
+ return Py_FindMethod(probedListObjectMethods, (PyObject * ) o, name);
+}
+
+static void probedListDealloc (probedListObject * o) {
+ kdFree(&o->list);
+}
+
+static PyObject * probedListNet(probedListObject * o, PyObject * args) {
+ if (!PyArg_ParseTuple(args, "")) return NULL;
+
+ kdFindNetList(&o->list);
+
+ Py_INCREF(Py_None);
+ return Py_None;
+}
+
+static PyObject * probedListScsi(probedListObject * o, PyObject * args) {
+ if (!PyArg_ParseTuple(args, "")) return NULL;
+
+ kdFindScsiList(&o->list);
+
+ Py_INCREF(Py_None);
+ return Py_None;
+}
+
+static PyObject * probedListIde(probedListObject * o, PyObject * args) {
+ if (!PyArg_ParseTuple(args, "")) return NULL;
+
+ kdFindIdeList(&o->list);
+
+ Py_INCREF(Py_None);
+ return Py_None;
+}
+
+static PyObject * createProbedList(PyObject * s, PyObject * args) {
+ probedListObject * o;
+
+ o = (probedListObject *) PyObject_NEW(PyObject, &probedListType);
+ o->list = kdInit();
+
+ return (PyObject *) o;
+}
+
+static int probedListLength(PyObject * o) {
+ return ((probedListObject *) o)->list.numKnown;
+}
+
+static PyObject * probedListSubscript(PyObject * o, int item) {
+ probedListObject * po = (probedListObject *) o;
+ char * model = "";
+ char * class;
+
+ if (po->list.known[item].model) model = po->list.known[item].model;
+
+ switch (po->list.known[item].class) {
+ case DEVICE_CDROM:
+ class = "cdrom"; break;
+ case DEVICE_DISK:
+ class = "disk"; break;
+ case DEVICE_NET:
+ class = "net"; break;
+ }
+
+ return Py_BuildValue("(sss)", class, po->list.known[item].name, model);
+}