PyIEnumerator.cpp revision 16a8d09569a2ebd598cef72fa605be6fb4563607
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync/* ***** BEGIN LICENSE BLOCK *****
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Version: MPL 1.1/GPL 2.0/LGPL 2.1
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * The contents of this file are subject to the Mozilla Public License Version
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * 1.1 (the "License"); you may not use this file except in compliance with
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * the License. You may obtain a copy of the License at
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Software distributed under the License is distributed on an "AS IS" basis,
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * for the specific language governing rights and limitations under the
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * The Original Code is the Python XPCOM language bindings.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * The Initial Developer of the Original Code is
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * ActiveState Tool Corp.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Portions created by the Initial Developer are Copyright (C) 2000
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * the Initial Developer. All Rights Reserved.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Contributor(s):
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Mark Hammond <MarkH@ActiveState.com> (original author)
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * Alternatively, the contents of this file may be used under the terms of
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * either the GNU General Public License Version 2 or later (the "GPL"), or
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * in which case the provisions of the GPL or the LGPL are applicable instead
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * of those above. If you wish to allow use of your version of this file only
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * under the terms of either the GPL or the LGPL, and not to allow others to
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * use your version of this file under the terms of the MPL, indicate your
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * decision by deleting the provisions above and replace them with the notice
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * and other provisions required by the GPL or the LGPL. If you do not delete
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * the provisions above, a recipient may use your version of this file under
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * the terms of any one of the MPL, the GPL or the LGPL.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync * ***** END LICENSE BLOCK ***** */
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// This code is part of the XPCOM extensions for Python.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// Written May 2000 by Mark Hammond.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// Based heavily on the Python COM support, which is
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// (c) Mark Hammond and Greg Stein.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// (c) 2000, ActiveState corp.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync PyErr_SetString(PyExc_TypeError, "This object is not the correct interface");
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync return (nsIEnumerator *)Py_nsISupports::GetI(self);
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsyncstatic PyObject *PyFirst(PyObject *self, PyObject *args)
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsyncstatic PyObject *PyNext(PyObject *self, PyObject *args)
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsyncstatic PyObject *PyCurrentItem(PyObject *self, PyObject *args)
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync if (!PyArg_ParseTuple(args, "|O:CurrentItem", &obIID))
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync if (obIID != NULL && !Py_nsIID::IIDFromPyObject(obIID, &iid))
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync PyObject *ret = Py_nsISupports::PyObjectFromInterface(pRet, iid);
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// A method added for Python performance if you really need
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// it. Allows you to fetch a block of objects in one
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync// hit, allowing the loop to remain implemented in C.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsyncstatic PyObject *PyFetchBlock(PyObject *self, PyObject *args)
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync if (!PyArg_ParseTuple(args, "i|O:FetchBlock", &n_wanted, &obIID))
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync if (obIID != NULL && !Py_nsIID::IIDFromPyObject(obIID, &iid))
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync // We want to fetch with the thread-lock released,
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync // but this means we can not append to the PyList
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync nsISupports **fetched = new nsISupports*[n_wanted];
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync memset(fetched, 0, sizeof(nsISupports *) * n_wanted);
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync r = 0; // Normal enum end
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync n_fetched++; // must increment before breaking out.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync break; // not an error condition.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync for (int i=0;i<n_fetched;i++) {
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync PyObject *new_ob = Py_nsISupports::PyObjectFromInterface(fetched[i], iid);
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync // Free the objects we consumed.
16a8d09569a2ebd598cef72fa605be6fb4563607vboxsync for (int i=0;i<n_fetched;i++)