Changeset 1517 for pykota/trunk/bin

Show
Ignore:
Timestamp:
06/03/04 23:50:34 (20 years ago)
Author:
jalet
Message:

Improved error logging.
crashrecipient directive added.
Now exports the job's size in bytes too.

Location:
pykota/trunk/bin
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r1515 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.58  2004/06/03 21:50:33  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.57  2004/06/02 22:18:07  jalet 
    2732# I think the bug when cancelling jobs should be fixed right now 
     
    330335            clienthost = self.getJobOriginatingHostname(printer.Name, user.Name, self.jobid) 
    331336            self.logdebug("Client Hostname : %s" % (clienthost or "Unknown"))     
    332             os.putenv("PYKOTAJOBORIGINATINGHOSTNAME", str(clienthost or "")) 
     337            os.environ["PYKOTAJOBORIGINATINGHOSTNAME"] = str(clienthost or "") 
    333338             
    334339            # enters first phase 
    335             os.putenv("PYKOTAPHASE", "BEFORE") 
     340            os.environ["PYKOTAPHASE"] = "BEFORE" 
    336341             
    337342            # checks the user's quota 
     
    340345                self.softwareJobPrice = userpquota.computeJobPrice(self.softwareJobSize) 
    341346                self.logdebug("Precomputed job's size is %s pages, price is %s units" % (self.softwareJobSize, self.softwareJobPrice)) 
    342             os.putenv("PYKOTAPRECOMPUTEDJOBSIZE", str(self.softwareJobSize))     
    343             os.putenv("PYKOTAPRECOMPUTEDJOBPRICE", str(self.softwareJobPrice))     
     347            os.environ["PYKOTAPRECOMPUTEDJOBSIZE"] = str(self.softwareJobSize) 
     348            os.environ["PYKOTAPRECOMPUTEDJOBPRICE"] = str(self.softwareJobPrice) 
    344349            action = self.warnUserPQuota(userpquota) 
    345350             
    346351            # exports some new environment variables 
    347             os.putenv("PYKOTAACTION", action) 
     352            os.environ["PYKOTAACTION"] = action 
    348353             
    349354            # launches the pre hook 
     
    354359        else :     
    355360            action = "ALLOW" 
    356             os.putenv("PYKOTAACTION", action) 
     361            os.environ["PYKOTAACTION"] = action 
    357362             
    358363        # pass the job's data to the real backend     
     
    367372        if policy == "OK" :         
    368373            # indicate phase change 
    369             os.putenv("PYKOTAPHASE", "AFTER") 
     374            os.environ["PYKOTAPHASE"] = "AFTER" 
    370375             
    371376            # stops accounting.  
     
    390395             
    391396            # exports some new environment variables 
    392             os.putenv("PYKOTAJOBSIZE", str(jobsize)) 
    393             os.putenv("PYKOTAJOBPRICE", str(jobprice)) 
    394              
    395             # then re-export user information with new values 
     397            os.environ["PYKOTAJOBSIZE"] = str(jobsize) 
     398            os.environ["PYKOTAJOBPRICE"] = str(jobprice) 
     399             
     400            # then re-export user information with new value 
    396401            self.exportUserInfo(userpquota) 
    397402             
     
    660665            retcode = kotabackend.mainWork() 
    661666        except : 
    662             import traceback 
    663             lines = [] 
    664             for line in traceback.format_exception(*sys.exc_info()) : 
    665                 lines.extend([l for l in line.split("\n") if l]) 
    666             sys.stderr.write("ERROR : cupspykota backend failed : \n%s" % (msg, "ERROR : ".join(["%s\n" % l for l in lines]))) 
    667             sys.stderr.flush() 
     667            try : 
     668                kotabackend.crashed("cupspykota backend failed") 
     669            except :     
     670                pass 
    668671            retcode = 1 
    669672         
  • pykota/trunk/bin/edpykota

    r1436 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.73  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.72  2004/04/16 16:20:19  jalet 
    2732# Note about not implemented limitby values 
     
    690695        else : 
    691696            retcode = editor.main(args, options) 
    692     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError), msg :             
    693         sys.stderr.write("%s\n" % msg) 
    694         sys.stderr.flush() 
     697    except : 
     698        try : 
     699            editor.crashed("edpykota failed") 
     700        except :     
     701            pass 
    695702        retcode = -1 
    696703 
  • pykota/trunk/bin/pkhint

    r1483 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.9  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.8  2004/05/18 14:48:47  jalet 
    2732# Big code changes to completely remove the need for "requester" directives, 
     
    266271                args = [ "*" ] 
    267272            retcode = manager.main(args, options) 
    268     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError), msg :             
    269         sys.stderr.write("%s\n" % msg) 
    270         sys.stderr.flush() 
     273    except : 
     274        try : 
     275            manager.crashed("pkhint failed") 
     276        except :     
     277            pass 
    271278        retcode = -1 
    272279 
  • pykota/trunk/bin/pkprinters

    r1453 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.9  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.8  2004/05/06 20:30:24  jalet 
    2732# Added --skipexisting command line option to pkprinters 
     
    255260        else : 
    256261            retcode = manager.main(args, options) 
    257     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError), msg :             
    258         sys.stderr.write("%s\n" % msg) 
    259         sys.stderr.flush() 
     262    except : 
     263        try : 
     264            manager.crashed("pkprinters failed") 
     265        except :     
     266            pass 
    260267        retcode = -1 
    261268 
  • pykota/trunk/bin/pykotme

    r1488 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.10  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.9  2004/05/21 20:53:34  jalet 
    2732# Now pykotme doesn't spawn a new process anymore to compute job's size, but 
     
    186191        else : 
    187192            retcode = sender.main(args, options) 
    188     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError), msg :             
    189         sys.stderr.write("%s\n" % msg) 
    190         sys.stderr.flush() 
     193    except : 
     194        try : 
     195            sender.crashed("pykotme failed") 
     196        except :     
     197            pass 
    191198        retcode = -1 
    192199 
  • pykota/trunk/bin/repykota

    r1257 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.47  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.46  2004/01/08 14:10:32  jalet 
    2732# Copyright year changed. 
     
    307312        else : 
    308313            retcode = reportTool.main(args, options) 
    309     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError, PyKotaReporterError), msg :             
    310         sys.stderr.write("%s\n" % msg) 
    311         sys.stderr.flush() 
    312         retcode = -1  
     314    except : 
     315        try : 
     316            reportTool.crashed("repykota failed") 
     317        except :     
     318            pass 
     319        retcode = -1 
    313320 
    314321    try : 
  • pykota/trunk/bin/warnpykota

    r1257 r1517  
    2424# 
    2525# $Log$ 
     26# Revision 1.27  2004/06/03 21:50:34  jalet 
     27# Improved error logging. 
     28# crashrecipient directive added. 
     29# Now exports the job's size in bytes too. 
     30# 
    2631# Revision 1.26  2004/01/08 14:10:32  jalet 
    2732# Copyright year changed. 
     
    247252        else : 
    248253            retcode = sender.main(args, options) 
    249     except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError), msg :             
    250         sys.stderr.write("%s\n" % msg) 
    251         sys.stderr.flush() 
     254    except : 
     255        try : 
     256            sender.crashed("warnpykota failed") 
     257        except :     
     258            pass 
    252259        retcode = -1 
    253260