VirtualBox

Changeset 12752 in vbox for trunk/src


Ignore:
Timestamp:
Sep 25, 2008 3:47:20 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37076
Message:

implemented much better error reporting for Python bindings

Location:
trunk/src/libs/xpcom18a4/python
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/python/__init__.py

    r11746 r12752  
    5454        self.message = message
    5555        exceptions.Exception.__init__(self, errno)
     56        # we do this, as parent's constructor can override message
     57        self.message = message
    5658    def __str__(self):
    5759        if not hr_map:
     
    6567            if message is None:
    6668                message = ""
    67         return "%d (%s)" % (self.errno, message)
     69        return "0x%x (%s)" % (self.errno & 0xFFFFFFFF, message)
    6870
    6971# An alias for Exception - allows code to say "from xpcom import COMException"
  • trunk/src/libs/xpcom18a4/python/nsError.py

    r11746 r12752  
    5858NS_ERROR_MODULE_XPCONNECT = 18
    5959NS_ERROR_MODULE_PROFILE = 19
     60NS_ERROR_MODULE_LDAP = 20
     61NS_ERROR_MODULE_SECURITY = 21
     62NS_ERROR_MODULE_DOM_XPATH = 22
     63NS_ERROR_MODULE_DOM_RANGE = 23
     64NS_ERROR_MODULE_URILOADER = 24
     65NS_ERROR_MODULE_CONTENT = 25
     66NS_ERROR_MODULE_PYXPCOM = 26
     67NS_ERROR_MODULE_XSLT = 27
     68NS_ERROR_MODULE_IPC = 28
     69NS_ERROR_MODULE_SVG = 29
     70NS_ERROR_MODULE_GENERAL = 51
     71
    6072def NS_FAILED(_nsresult): return ((_nsresult) & -2147483648)
    6173
  • trunk/src/libs/xpcom18a4/python/sample/shellcommon.py

    r12717 r12752  
    8686    rc = progress.resultCode
    8787    print "Completed:", completed, "rc:",rc
    88     if int(rc) == 0:
    89         vb.performanceCollector.setupMetrics(['*'], [mach], 10, 15)
     88    if rc == 0:
     89        try:
     90            vb.performanceCollector.setupMetrics(['*'], [mach], 10, 15)
     91        except:
     92            pass
    9093    session.close()
    9194
     
    105108        valsStr = '[ '
    106109        for j in range(0, lens[i]):
    107             valsStr += str(vals[int(idxs[i])+j])+' '
     110            valsStr += str(vals[idxs[i]])+' '
    108111        valsStr += ']'
    109112        print names[i],valsStr
     
    294297       valsStr = '[ '
    295298       for j in range(0, lens[i]):
    296            valsStr += str(vals[int(idxs[i])+j])+' '
     299           valsStr += str(vals[idxs[i]])+' '
    297300       valsStr += ']'
    298301       print names[i],valsStr
     
    337340    if len(cmd) == 0: return 0
    338341    args = split_no_quotes(cmd)
     342    if len(args) == 0: return 0
    339343    c = args[0]
    340344    if aliases.get(c, None) != None:
     
    355359    # to allow to print actual host information, we collect info for
    356360    # last 150 secs maximum, (sample every 10 secs and keep up to 15 samples)
    357     vbox.performanceCollector.setupMetrics(['*'], [vbox.host], 10, 15)
    358    
     361    try:
     362        vbox.performanceCollector.setupMetrics(['*'], [vbox.host], 10, 15)
     363    except:
     364        pass
     365
    359366    while True:
    360367        try:
     
    372379                traceback.print_exc()
    373380
    374     vbox.performanceCollector.disableMetrics(['*'], [vbox.host])
     381    try:
     382        vbox.performanceCollector.disableMetrics(['*'], [vbox.host])
     383    except:
     384        pass
  • trunk/src/libs/xpcom18a4/python/src/ErrorUtils.cpp

    r11746 r12752  
    4949#include "nsReadableUtils.h"
    5050#include <nsIConsoleService.h>
     51#ifdef VBOX
     52#include <nsIExceptionService.h>
     53#endif
    5154#include "nspr.h" // PR_fprintf
    5255
     
    243246PyObject *PyXPCOM_BuildPyException(nsresult r)
    244247{
     248#ifndef VBOX
    245249        // Need the message etc.
    246250        PyObject *evalue = Py_BuildValue("i", r);
     
    248252        Py_XDECREF(evalue);
    249253        return NULL;
     254#else
     255        char msg[256];
     256       
     257        nsresult rc;
     258        nsCOMPtr <nsIExceptionService> es;
     259        es = do_GetService (NS_EXCEPTIONSERVICE_CONTRACTID, &rc);
     260        bool gotMsg = false;
     261        if (NS_SUCCEEDED (rc))
     262        {
     263            nsCOMPtr <nsIExceptionManager> em;
     264            rc = es->GetCurrentExceptionManager (getter_AddRefs (em));
     265            if (NS_SUCCEEDED (rc))
     266            {
     267                nsCOMPtr <nsIException> ex;
     268                rc = em->GetExceptionFromProvider(r, NULL, getter_AddRefs (ex));
     269                if  (NS_SUCCEEDED (rc) && ex)
     270                {       
     271                    nsXPIDLCString emsg;
     272                    ex->GetMessage(getter_Copies(emsg));
     273                    PR_snprintf(msg, sizeof(msg), "%s",
     274                                emsg.get());
     275                    gotMsg = true;
     276                }
     277            }
     278        }
     279
     280        if (!gotMsg)
     281        {
     282            PR_snprintf(msg, sizeof(msg), "Error %d in module %d",
     283                        NS_ERROR_GET_CODE(r), NS_ERROR_GET_MODULE(r));
     284        }
     285        PyObject *evalue = Py_BuildValue("is", r, msg);
     286        PyErr_SetObject(PyXPCOM_Error, evalue);
     287        Py_XDECREF(evalue);
     288        return NULL;
     289#endif
    250290}
    251291
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette