// -*- mode: cpp; mode: fold -*- // Description /*{{{*/ // $Id: indexfile.cc,v 1.2 2003/12/26 17:04:22 mdz Exp $ /* ###################################################################### pkgIndexFile - Wrapper for the pkgIndexFilefunctions ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ #include "generic.h" #include "apt_pkgmodule.h" #include #include static PyObject *PackageIndexFileAttr(PyObject *Self,char *Name) { pkgIndexFile *File = GetCpp(Self); if (strcmp("Label",Name) == 0) return Safe_FromString(File->GetType()->Label); else if (strcmp("Describe",Name) == 0) return Safe_FromString(File->Describe().c_str()); else if (strcmp("Exists",Name) == 0) return Py_BuildValue("i",(File->Exists())); else if (strcmp("HasPackages",Name) == 0) return Py_BuildValue("i",(File->HasPackages())); else if (strcmp("Size",Name) == 0) return Py_BuildValue("i",(File->Size())); else if (strcmp("IsTrusted",Name) == 0) return Py_BuildValue("i",(File->IsTrusted())); PyErr_SetString(PyExc_AttributeError,Name); return 0; } static PyObject *PackageIndexFileRepr(PyObject *Self) { pkgIndexFile *File = GetCpp(Self); char S[300]; snprintf(S,sizeof(S),"", File->GetType()->Label, File->Describe().c_str(), File->Exists(), File->HasPackages(), File->Size(), File->IsTrusted(), File->ArchiveURI("").c_str()); return PyString_FromString(S); } PyTypeObject PackageIndexFileType = { PyObject_HEAD_INIT(&PyType_Type) 0, // ob_size "pkgIndexFile", // tp_name sizeof(CppOwnedPyObject), // tp_basicsize 0, // tp_itemsize // Methods CppOwnedDealloc, // tp_dealloc 0, // tp_print PackageIndexFileAttr, // tp_getattr 0, // tp_setattr 0, // tp_compare PackageIndexFileRepr, // tp_repr 0, // tp_as_number 0, // tp_as_sequence 0, // tp_as_mapping 0, // tp_hash };