- Timestamp:
- Sep 25, 2008 3:47:20 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37076
- Location:
- trunk/src/libs/xpcom18a4/python
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/__init__.py
r11746 r12752 54 54 self.message = message 55 55 exceptions.Exception.__init__(self, errno) 56 # we do this, as parent's constructor can override message 57 self.message = message 56 58 def __str__(self): 57 59 if not hr_map: … … 65 67 if message is None: 66 68 message = "" 67 return " %d (%s)" % (self.errno, message)69 return "0x%x (%s)" % (self.errno & 0xFFFFFFFF, message) 68 70 69 71 # An alias for Exception - allows code to say "from xpcom import COMException" -
trunk/src/libs/xpcom18a4/python/nsError.py
r11746 r12752 58 58 NS_ERROR_MODULE_XPCONNECT = 18 59 59 NS_ERROR_MODULE_PROFILE = 19 60 NS_ERROR_MODULE_LDAP = 20 61 NS_ERROR_MODULE_SECURITY = 21 62 NS_ERROR_MODULE_DOM_XPATH = 22 63 NS_ERROR_MODULE_DOM_RANGE = 23 64 NS_ERROR_MODULE_URILOADER = 24 65 NS_ERROR_MODULE_CONTENT = 25 66 NS_ERROR_MODULE_PYXPCOM = 26 67 NS_ERROR_MODULE_XSLT = 27 68 NS_ERROR_MODULE_IPC = 28 69 NS_ERROR_MODULE_SVG = 29 70 NS_ERROR_MODULE_GENERAL = 51 71 60 72 def NS_FAILED(_nsresult): return ((_nsresult) & -2147483648) 61 73 -
trunk/src/libs/xpcom18a4/python/sample/shellcommon.py
r12717 r12752 86 86 rc = progress.resultCode 87 87 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 90 93 session.close() 91 94 … … 105 108 valsStr = '[ ' 106 109 for j in range(0, lens[i]): 107 valsStr += str(vals[i nt(idxs[i])+j])+' '110 valsStr += str(vals[idxs[i]])+' ' 108 111 valsStr += ']' 109 112 print names[i],valsStr … … 294 297 valsStr = '[ ' 295 298 for j in range(0, lens[i]): 296 valsStr += str(vals[i nt(idxs[i])+j])+' '299 valsStr += str(vals[idxs[i]])+' ' 297 300 valsStr += ']' 298 301 print names[i],valsStr … … 337 340 if len(cmd) == 0: return 0 338 341 args = split_no_quotes(cmd) 342 if len(args) == 0: return 0 339 343 c = args[0] 340 344 if aliases.get(c, None) != None: … … 355 359 # to allow to print actual host information, we collect info for 356 360 # 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 359 366 while True: 360 367 try: … … 372 379 traceback.print_exc() 373 380 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 49 49 #include "nsReadableUtils.h" 50 50 #include <nsIConsoleService.h> 51 #ifdef VBOX 52 #include <nsIExceptionService.h> 53 #endif 51 54 #include "nspr.h" // PR_fprintf 52 55 … … 243 246 PyObject *PyXPCOM_BuildPyException(nsresult r) 244 247 { 248 #ifndef VBOX 245 249 // Need the message etc. 246 250 PyObject *evalue = Py_BuildValue("i", r); … … 248 252 Py_XDECREF(evalue); 249 253 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 250 290 } 251 291
Note:
See TracChangeset
for help on using the changeset viewer.