summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-03-09 16:16:37 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-03-09 16:16:37 +0000
commit59902bad90ed9192ad9b2def78f588cdefe1080c (patch)
tree859896b89dc8a332c8c39d0960eb3f59128e465e
parent6d42024c88d207c35718f4f8458e58fc44951830 (diff)
downloadpython-apt-59902bad90ed9192ad9b2def78f588cdefe1080c.tar.gz
* Implemented OpProgress support
-rw-r--r--doc/examples/depcache.py20
-rw-r--r--python/cache.cc12
-rw-r--r--python/makefile2
-rw-r--r--python/progress.cc55
-rw-r--r--python/progress.h38
5 files changed, 95 insertions, 32 deletions
diff --git a/doc/examples/depcache.py b/doc/examples/depcache.py
index 76487b1d..5e5699e7 100644
--- a/doc/examples/depcache.py
+++ b/doc/examples/depcache.py
@@ -3,14 +3,26 @@
import apt_pkg
import sys
+import copy
-def progress(percent, data):
- print "%s %s" % (data, percent)
-
+class MyProgress:
+ def __init__(self):
+ self.last = 0.0
+
+ def Update(self, percent):
+ if (self.last + 1.0) <= percent:
+ print "lala %s " % (percent)
+ self.last = percent
+
+ def Done(self):
+ self.last = 0.0
+ print "Done!"
# init
apt_pkg.init()
-cache = apt_pkg.GetCache(progress,None)
+
+progress = MyProgress()
+cache = apt_pkg.GetCache(progress)
print "Available packages: %s " % cache.PackageCount
sys.exit()
diff --git a/python/cache.cc b/python/cache.cc
index ceffba20..7ba53fd9 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -744,15 +744,13 @@ PyObject *TmpGetCache(PyObject *Self,PyObject *Args)
{
pkgCacheFile *Cache = new pkgCacheFile();
- PyObject *pyCallbackObj = 0;
- PyObject *pyCallbackArgs = 0;
- if (PyArg_ParseTuple(Args, "|OO", &pyCallbackObj, &pyCallbackArgs) == 0)
+ PyObject *pyCallbackInst = 0;
+ if (PyArg_ParseTuple(Args, "|O", &pyCallbackInst) == 0)
return 0;
- if(pyCallbackObj != 0) {
- PyOpProgressStruct progress;
- progress.py_update_callback_func = pyCallbackObj;
- progress.py_update_callback_args = pyCallbackArgs;
+ if(pyCallbackInst != 0) {
+ PyOpProgress progress;
+ progress.setCallbackInst(pyCallbackInst);
if (Cache->Open(progress,false) == false)
return HandleErrors();
} else {
diff --git a/python/makefile b/python/makefile
index 481d51ea..29bbaca9 100644
--- a/python/makefile
+++ b/python/makefile
@@ -11,7 +11,7 @@ SLIBS = -lapt-pkg
LIB_MAKES = apt-pkg/makefile
APT_PKG_SRC = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \
cache.cc pkgrecords.cc pkgsrcrecords.cc sourcelist.cc \
- depcache.cc
+ depcache.cc progress.cc
SOURCE := $(APT_PKG_SRC)
include $(PYTHON_H) progress.h
diff --git a/python/progress.cc b/python/progress.cc
new file mode 100644
index 00000000..d414ca15
--- /dev/null
+++ b/python/progress.cc
@@ -0,0 +1,55 @@
+// Description /*{{{*/
+// $Id: progress.cc,v 1.5 2003/06/03 03:03:23 mdz Exp $
+/* ######################################################################
+
+ Progress - Wrapper for the progress related functions
+
+ ##################################################################### */
+
+#include "progress.h"
+
+
+void PyOpProgress::Update()
+{
+ if(callbackInst == 0)
+ return;
+
+ // Build up the argument list...
+ PyObject *arglist = Py_BuildValue("(f)", Percent);
+
+ // ...for calling the Python compare function.
+ PyObject *method = PyObject_GetAttrString(callbackInst, "Update");
+ if(method == NULL) {
+ // FIXME: make this silent
+ Py_DECREF(arglist);
+ return;
+ }
+ PyObject *result = PyEval_CallObject(method,arglist);
+
+ Py_XDECREF(result);
+ Py_XDECREF(method);
+ Py_DECREF(arglist);
+
+ return;
+};
+
+void PyOpProgress::Done()
+{
+ if(callbackInst == 0)
+ return;
+
+ // Build up the argument list...
+ PyObject *arglist = Py_BuildValue("()", NULL);
+
+ // ...for calling the Python compare function.
+ PyObject *method = PyObject_GetAttrString(callbackInst, "Done");
+ if(method == NULL) {
+ Py_DECREF(arglist);
+ return;
+ }
+ PyObject *result = PyEval_CallObject(method,arglist);
+
+ Py_XDECREF(result);
+ Py_XDECREF(method);
+ Py_DECREF(arglist);
+}
diff --git a/python/progress.h b/python/progress.h
index 5859eea0..b18778b1 100644
--- a/python/progress.h
+++ b/python/progress.h
@@ -1,31 +1,29 @@
-#ifndef PROGRESS_H
-#define PROGRESS_H
+// Description /*{{{*/
+// $Id: progress.h,v 1.5 2003/06/03 03:03:23 mdz Exp $
+/* ######################################################################
-#include<iostream>
-
-struct PyOpProgressStruct : public OpProgress
-{
+ Progress - Wrapper for the progress related functions
- PyObject *py_update_callback_func;
- PyObject *py_update_callback_args;
+ ##################################################################### */
- virtual void Update() {
- if(py_update_callback_func == 0)
- return;
+#ifndef PROGRESS_H
+#define PROGRESS_H
- // Build up the argument list...
- PyObject *arglist = Py_BuildValue("fO", Percent,py_update_callback_args);
+#include <apt-pkg/progress.h>
+#include <Python.h>
- // ...for calling the Python compare function.
- PyObject *result = PyEval_CallObject(py_update_callback_func,arglist);
+struct PyOpProgress : public OpProgress
+{
+ PyObject *callbackInst;
- Py_XDECREF(result);
- Py_DECREF(arglist);
+ void setCallbackInst(PyObject *o) {
+ callbackInst = o;
+ }
- return;
- };
+ virtual void Update();
+ virtual void Done();
- PyOpProgressStruct() : OpProgress(), py_update_callback_func(0) {};
+ PyOpProgress() : OpProgress(), callbackInst(0) {};
};
#endif