forked from Jolicloud/python-apt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkgmanager.cc
More file actions
154 lines (124 loc) · 5.23 KB
/
pkgmanager.cc
File metadata and controls
154 lines (124 loc) · 5.23 KB
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
// Description /*{{{*/
// $Id: acquire.cc,v 1.1 2003/06/03 03:03:23 mvo Exp $
/* ######################################################################
PkgManager - Wrapper for the pkgPackageManager code
##################################################################### */
#include "generic.h"
#include "apt_pkgmodule.h"
#include "pkgrecords.h"
#include <apt-pkg/packagemanager.h>
#include <apt-pkg/pkgsystem.h>
#include <apt-pkg/sourcelist.h>
#include <apt-pkg/error.h>
#include <apt-pkg/acquire.h>
#include <apt-pkg/init.h>
#include <apt-pkg/configuration.h>
#include <iostream>
static PyObject *PkgManagerNew(PyTypeObject *type,PyObject *Args,PyObject *kwds)
{
PyObject *Owner;
char *kwlist[] = {"depcache",0};
if (PyArg_ParseTupleAndKeywords(Args,kwds,"O!",kwlist,&PyDepCache_Type,
&Owner) == 0)
return 0;
pkgPackageManager *pm = _system->CreatePM(GetCpp<pkgDepCache*>(Owner));
CppPyObject<pkgPackageManager*> *PkgManagerObj =
CppPyObject_NEW<pkgPackageManager*>(NULL, type,pm);
return PkgManagerObj;
}
#ifdef COMPAT_0_7
PyObject *GetPkgManager(PyObject *Self,PyObject *Args)
{
if (getenv("PYTHON_APT_DEPRECATION_WARNINGS") != NULL)
PyErr_WarnEx(PyExc_DeprecationWarning, "apt_pkg.GetPackageManager() is "
"deprecated. Please see apt_pkg.PackageManager() for the "
"replacement.", 1);
return PkgManagerNew(&PyPackageManager_Type,Args,0);
}
#endif
static PyObject *PkgManagerGetArchives(PyObject *Self,PyObject *Args)
{
pkgPackageManager *pm = GetCpp<pkgPackageManager*>(Self);
PyObject *fetcher, *list, *recs;
if (PyArg_ParseTuple(Args, "O!O!O!",
&PyAcquire_Type,&fetcher,
&PySourceList_Type, &list,
&PyPackageRecords_Type, &recs) == 0)
return 0;
pkgAcquire *s_fetcher = GetCpp<pkgAcquire*>(fetcher);
pkgSourceList *s_list = GetCpp<pkgSourceList*>(list);
PkgRecordsStruct &s_records = GetCpp<PkgRecordsStruct>(recs);
bool res = pm->GetArchives(s_fetcher, s_list,
&s_records.Records);
return HandleErrors(Py_BuildValue("b",res));
}
static PyObject *PkgManagerDoInstall(PyObject *Self,PyObject *Args)
{
//PkgManagerStruct &Struct = GetCpp<PkgManagerStruct>(Self);
pkgPackageManager *pm = GetCpp<pkgPackageManager*>(Self);
int status_fd = -1;
if (PyArg_ParseTuple(Args, "|i", &status_fd) == 0)
return 0;
pkgPackageManager::OrderResult res = pm->DoInstall(status_fd);
return HandleErrors(Py_BuildValue("i",res));
}
static PyObject *PkgManagerFixMissing(PyObject *Self,PyObject *Args)
{
//PkgManagerStruct &Struct = GetCpp<PkgManagerStruct>(Self);
pkgPackageManager *pm = GetCpp<pkgPackageManager*>(Self);
if (PyArg_ParseTuple(Args, "") == 0)
return 0;
bool res = pm->FixMissing();
return HandleErrors(Py_BuildValue("b",res));
}
static PyMethodDef PkgManagerMethods[] =
{
{"get_archives",PkgManagerGetArchives,METH_VARARGS,"Load the selected archives into the fetcher"},
{"do_install",PkgManagerDoInstall,METH_VARARGS,"Do the actual install"},
{"fix_missing",PkgManagerFixMissing,METH_VARARGS,"Fix the install if a pkg couldn't be downloaded"},
{}
};
PyTypeObject PyPackageManager_Type =
{
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"apt_pkg.PackageManager", // tp_name
sizeof(CppPyObject<pkgPackageManager*>), // tp_basicsize
0, // tp_itemsize
// Methods
CppDeallocPtr<pkgPackageManager*>, // tp_dealloc
0, // tp_print
0, // tp_getattr
0, // tp_setattr
0, // tp_compare
0, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
0, // tp_call
0, // tp_str
_PyAptObject_getattro, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
(Py_TPFLAGS_DEFAULT | // tp_flags
Py_TPFLAGS_BASETYPE),
"PackageManager Object", // tp_doc
0, // tp_traverse
0, // tp_clear
0, // tp_richcompare
0, // tp_weaklistoffset
0, // tp_iter
0, // tp_iternext
PkgManagerMethods, // tp_methods
0, // tp_members
0, // tp_getset
0, // tp_base
0, // tp_dict
0, // tp_descr_get
0, // tp_descr_set
0, // tp_dictoffset
0, // tp_init
0, // tp_alloc
PkgManagerNew, // tp_new
};
/*}}}*/