root / pykota / trunk / bin / edpykota @ 2657

Revision 2657, 31.6 kB (checked in by jerome, 18 years ago)

Huge speed improvements when using the --delete command line option for pkprinters, pkbcodes and edpykota.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3
4# PyKota Print Quota Editor
5#
6# PyKota - Print Quotas for CUPS and LPRng
7#
8# (c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com>
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22#
23# $Id$
24#
25#
26
27import sys
28import os
29import pwd
30import grp
31from pykota.tool import PyKotaTool, PyKotaToolError, PyKotaCommandLineError, crashed, N_
32from pykota.config import PyKotaConfigError
33from pykota.storage import PyKotaStorageError
34
35__doc__ = N_("""edpykota v%(__version__)s (c) %(__years__)s %(__author__)s
36
37A Print Quota editor for PyKota.
38
39command line usage :
40
41  edpykota [options] user1 user2 ... userN
42 
43  edpykota [options] group1 group2 ... groupN
44
45options :
46
47  -v | --version       Prints edpykota's version number then exits.
48  -h | --help          Prints this message then exits.
49 
50  -a | --add           Adds users and/or printers if they don't
51                       exist on the Quota Storage Server.
52                       
53  -d | --delete        Deletes users/groups from the quota storage.
54                       Printers are never deleted.
55                       
56  -c | --charge p[,j]  Sets the price per page and per job to charge
57                       for a particular printer. Job price is optional.
58                       If both are to be set, separate them with a comma.
59                       Floating point values are allowed.
60                       
61  -o | --overcharge f  Sets the overcharging factor applied to the user
62                       when computing the cost of a print job. Positive or
63                       negative floating point values are allowed,
64                       this allows you to do some really creative
65                       things like giving money to an user whenever
66                       he prints. The number of pages in a print job
67                       is not modified by this coefficient, only the
68                       cost of the job for a particular user.
69                       Only users have a coefficient.
70 
71  -i | --ingroups g1[,g2...]  Puts the users into each of the groups
72                              listed, separated by commas. The groups
73                              must already exist in the Quota Storage.
74 
75  -u | --users         Edit users print quotas, this is the default.
76 
77  -P | --printer p     Edit quotas on printer p only. Actually p can
78                       use wildcards characters to select only
79                       some printers. The default value is *, meaning
80                       all printers.
81                       You can specify several names or wildcards,
82                       by separating them with commas.
83 
84  -G | --pgroups pg1[,pg2...] Adds the printer(s) to the printer groups
85                       pg1, pg2, etc... which must already exist.
86                       A printer group is just like a normal printer,
87                       only that it is usually unknown from the printing
88                       system. Create printer groups exactly the same
89                       way that you create printers, then add other
90                       printers to them with this option.
91                       Accounting is done on a printer and on all
92                       the printer groups it belongs to, quota checking
93                       is done on a printer and on all the printer groups
94                       it belongs to.
95 
96  -g | --groups        Edit users groups print quotas instead of users.
97                         
98  -p | --prototype u|g Uses user u or group g as a prototype to set
99                       print quotas
100                       
101  -n | --noquota       Sets both soft and hard limits to None for a
102                       particular print quota entry.
103                       This is NOT the same as --limitby noquota
104                       which acts on ALL print quota entries for a
105                       particular user.
106 
107  -r | --reset         Resets the actual page counter for the user
108                       or group to zero on the specified printers.
109                       The life time page counter is kept unchanged.
110                       
111  -R | --hardreset     Resets the actual and life time page counters
112                       for the user or group to zero on the specified
113                       printers. This is a shortcut for '--used 0'.
114                       
115  -l | --limitby l     Choose if the user/group is limited in printing                     
116                       by its account balance or by its page quota.
117                       The default value is 'quota'. Allowed values
118                       are 'quota' 'balance' 'noquota' 'noprint' 
119                       and 'nochange' :
120                       
121                         - quota : limit by number of pages per printer.
122                         - balance : limit by number of credits in account.
123                         - noquota : no limit, accounting still done.
124                         - nochange : no limit, accounting not done.
125                         - noprint : printing is denied.
126                       NB : nochange and noprint are not supported for groups.
127                       
128  -b | --balance b     Sets the user's account balance to b.                     
129                       Account balance may be increase or decreased
130                       if b is prefixed with + or -.
131                       WARNING : when decreasing account balance,
132                       the total paid so far by the user is decreased
133                       too.
134                       Groups don't have a real balance, but the
135                       sum of their users' account balance.
136                       
137  -C | --comment txt   Defines some informational text to be associated
138                       with a change to an user's account balance.
139                       Only meaningful if -b | --balance is also used.
140                       
141  -S | --softlimit sl  Sets the quota soft limit to sl pages.                       
142 
143  -H | --hardlimit hl  Sets the quota hard limit to hl pages.
144 
145  -I | --increase v    Increase both Soft and Hard limits by the value
146                       of v. You can prefix v with + or -, if no sign is
147                       used, + is assumed.
148
149  -U | --used usage    Sets the pagecounters for the user to usage pages;
150                       useful for migrating users from a different system
151                       where they have already used some pages. Actual
152                       and Life Time page counters may be increased or decreased
153                       if usage is prefixed with + or -.
154                       WARNING : BOTH page counters are modified in all cases,
155                       so be careful.
156                       NB : if 'usage' equals '0', then the action taken is
157                       the same as if --hardreset was used.
158
159  user1 through userN and group1 through groupN can use wildcards
160  if the --add option is not set.
161 
162examples :                             
163
164  $ edpykota --add -p jerome john paul george ringo/ringo@example.com
165 
166  This will add users john, paul, george and ringo to the quota
167  database, and set their print quotas to the same values than user
168  jerome. User jerome must already exist.
169  User ringo's email address will also be set to 'ringo@example.com'
170 
171  $ edpykota --printer lp -S 50 -H 60 jerome
172 
173  This will set jerome's print quota on the lp printer to a soft limit
174  of 50 pages, and a hard limit of 60 pages. If either user jerome or
175  printer lp doesn't exist on the Quota Storage Server then nothing is done.
176
177  $ edpykota --add --printer lp --ingroups coders,it -S 50 -H 60 jerome
178 
179  Same as above, but if either user jerome or printer lp doesn't exist
180  on the Quota Storage Server they are automatically added. Also
181  user jerome is put into the groups "coders" and "it" which must
182  already exist in the Quota Storage.
183           
184  $ edpykota -g -S 500 -H 550 financial support           
185 
186  This will set print quota soft limit to 500 pages and hard limit
187  to 550 pages for groups financial and support on all printers.
188 
189  $ edpykota --reset jerome "jo*"
190 
191  This will reset jerome's page counter to zero on all printers, as
192  well as every user whose name begins with 'jo'.
193  Their life time page counter on each printer will be kept unchanged.
194  You can also reset the life time page counters by using the
195  --hardreset | -R command line option.
196 
197  $ edpykota --printer hpcolor --noquota jerome
198 
199  This will tell PyKota to not limit jerome when printing on the
200  hpcolor printer. All his jobs will be allowed on this printer, but
201  accounting of the pages he prints will still be kept.
202  Print Quotas for jerome on other printers are unchanged.
203 
204  $ edpykota --limitby balance jerome
205 
206  This will tell PyKota to limit jerome by his account's balance
207  when printing.
208 
209  $ edpykota --balance +10.0 jerome
210 
211  This will increase jerome's account balance by 10.0 (in your
212  own currency). You can decrease the account balance with a
213  dash prefix, and set it to a fixed amount with no prefix.
214 
215  $ edpykota --delete jerome rachel
216 
217  This will completely delete jerome and rachel from the Quota Storage
218  database. All their quotas and jobs will be deleted too.
219 
220  $ edpykota --printer lp --charge 0.1
221 
222  This will set the page price for printer lp to 0.1. Job price
223  will not be changed.
224 
225  $ edpykota --printer hplj1,hplj2 --pgroups Laser,HP
226 
227  This will put printers hplj1 and hplj2 in printers groups Laser and HP.
228  When printing either on hplj1 or hplj2, print quota will also be
229  checked and accounted for on virtual printers Laser and HP.
230 
231  $ edpykota --overcharge 2.5 poorstudent
232 
233  This will overcharge the poorstudent user by a factor of 2.5.
234 
235  $ edpykota --overcharge -1 jerome
236 
237  User jerome will actually earn money whenever he prints.
238 
239  $ edpykota --overcharge 0 boss
240 
241  User boss can print at will, it won't cost him anything because the
242  cost of each print job will be multiplied by zero before charging
243  his account.
244""") 
245       
246class EdPyKota(PyKotaTool) :       
247    """A class for edpykota."""
248    def main(self, names, options) :
249        """Edit user or group quotas."""
250        if not self.config.isAdmin :
251            raise PyKotaCommandLineError, "%s : %s" % (pwd.getpwuid(os.geteuid())[0], _("You're not allowed to use this command."))
252       
253        suffix = (options["groups"] and "Group") or "User"       
254       
255        if options["delete"] :   
256            if not names :
257                raise PyKotaCommandLineError, _("You have to pass user or group names on the command line")
258            self.display("Processing...\n")
259            todelete = getattr(self.storage, "getMatching%ss" % suffix)(",".join(names))
260            nbtotal = len(todelete)
261            for i in range(nbtotal) :
262                todelete[i].delete()
263                percent = 100.0 * float(i) / float(nbtotal)
264                self.display("\r%.02f%%" % percent)
265            self.display("\r100.00%%\r        ")
266            self.display("\r%s\n" % _("Done."))
267        else :
268            softlimit = hardlimit = None
269           
270            limitby = options["limitby"]
271            if limitby :
272                limitby = limitby.strip().lower()
273            if limitby :
274                if limitby not in ('quota', 'balance', 'noquota', \
275                                            'noprint', 'nochange') :
276                    raise PyKotaCommandLineError, _("Invalid limitby value %s") % options["limitby"]
277                if limitby in ('noquota', 'nochange') :   
278                    options["noquota"] = 1
279                if (limitby in ('nochange', 'noprint')) and options["groups"] :   
280                    raise PyKotaCommandLineError, _("Invalid limitby value %s") % options["limitby"]
281           
282            used = options["used"]
283            if used :
284                used = used.strip()
285                try :
286                    int(used)
287                except ValueError :
288                    raise PyKotaCommandLineError, _("Invalid used value %s.") % used
289                   
290            increase = options["increase"]
291            if increase :
292                try :
293                    increase = int(increase.strip())
294                except ValueError :
295                    raise PyKotaCommandLineError, _("Invalid increase value %s.") % increase
296           
297            if not options["noquota"] :
298                if options["softlimit"] :
299                    try :
300                        softlimit = int(options["softlimit"].strip())
301                        if softlimit < 0 :
302                            raise ValueError
303                    except ValueError :   
304                        raise PyKotaCommandLineError, _("Invalid softlimit value %s.") % options["softlimit"]
305                if options["hardlimit"] :
306                    try :
307                        hardlimit = int(options["hardlimit"].strip())
308                        if hardlimit < 0 :
309                            raise ValueError
310                    except ValueError :   
311                        raise PyKotaCommandLineError, _("Invalid hardlimit value %s.") % options["hardlimit"]
312                if (softlimit is not None) and (hardlimit is not None) and (hardlimit < softlimit) :       
313                    # error, exchange them
314                    self.printInfo(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit))
315                    (softlimit, hardlimit) = (hardlimit, softlimit)
316               
317            overcharge = options["overcharge"]
318            if overcharge :
319                try :
320                    overcharge = float(overcharge.strip())
321                except (ValueError, AttributeError) :   
322                    raise PyKotaCommandLineError, _("Invalid overcharge value %s") % options["overcharge"]
323                   
324            balance = options["balance"]
325            if balance :
326                balance = balance.strip()
327                try :
328                    balancevalue = float(balance)
329                except ValueError :   
330                    raise PyKotaCommandLineError, _("Invalid balance value %s") % options["balance"]
331               
332            if options["charge"] :
333                try :
334                    charges = [float(part) for part in options["charge"].split(',', 1)]
335                except ValueError :   
336                    raise PyKotaCommandLineError, _("Invalid charge amount value %s") % options["charge"]
337                else :   
338                    if len(charges) > 2 :
339                        charges = charges[:2]
340                    if len(charges) != 2 :
341                        charges = [charges[0], None]
342                       
343            if options["ingroups"] :   
344                groupnames = [gname.strip() for gname in options["ingroups"].split(',')]
345            else :   
346                groupnames = []
347               
348            rejectunknown = self.config.getRejectUnknown()   
349            printeradded = 0
350            printers = self.storage.getMatchingPrinters(options["printer"])
351            if not printers :
352                pname = options["printer"]
353                if options["add"] and pname :
354                    if self.isValidName(pname) :
355                        printers = [ self.storage.addPrinter(pname) ]
356                        if printers[0].Exists :
357                            printeradded = 1
358                        else :   
359                            raise PyKotaToolError, _("Impossible to add printer %s") % pname
360                    else :   
361                        raise PyKotaCommandLineError, _("Invalid printer name %s") % pname
362                else :
363                    raise PyKotaCommandLineError, _("There's no printer matching %s") % pname
364            if not names :   
365                names = getattr(self.storage, "getAll%ssNames" % suffix)() # all users or groups
366                   
367            printersgroups = []       
368            if options["pgroups"] :       
369                printersgroups = self.storage.getMatchingPrinters(options["pgroups"])
370               
371            if options["prototype"] :   
372                protoentry = getattr(self.storage, "get%s" % suffix)(options["prototype"])
373                if not protoentry.Exists :
374                    raise PyKotaCommandLineError, _("Prototype object %s not found in Quota Storage.") % protoentry.Name
375                else :   
376                    limitby = protoentry.LimitBy
377                    balancevalue = protoentry.AccountBalance
378                    if balancevalue is not None :
379                        balance = str(abs(balancevalue))
380                    else :   
381                        balance = None
382                    overcharge = getattr(protoentry, "OverCharge", None)
383               
384            sys.stdout.write(_("Managing print quotas... (this may take a lot of time)"))
385            sys.stdout.flush()
386            missingusers = {}
387            missinggroups = {}   
388            changed = {} # tracks changes made at the user/group level
389            for printer in printers :
390                for pgroup in printersgroups :
391                    pgroup.addPrinterToGroup(printer)   
392                   
393                if options["charge"] :
394                    (perpage, perjob) = charges
395                    printer.setPrices(perpage, perjob)   
396                   
397                if options["prototype"] :
398                    protoquota = getattr(self.storage, "get%sPQuota" % suffix)(protoentry, printer)
399                    if not protoquota.Exists :
400                        self.printInfo(_("Prototype %s not found in Quota Storage for printer %s.") % (protoentry.Name, printer.Name))
401                    else :   
402                        (softlimit, hardlimit) = (protoquota.SoftLimit, protoquota.HardLimit)
403                       
404                if not options["noquota"] :   
405                    if hardlimit is None :   
406                        hardlimit = softlimit
407                        if hardlimit is not None :
408                            self.printInfo(_("Undefined hard limit set to soft limit (%s) on printer %s.") % (str(hardlimit), printer.Name))
409                    if softlimit is None :   
410                        softlimit = hardlimit
411                        if softlimit is not None :
412                            self.printInfo(_("Undefined soft limit set to hard limit (%s) on printer %s.") % (str(softlimit), printer.Name))
413                           
414                if options["add"] :   
415                    allentries = []   
416                    for name in names :
417                        email = ""
418                        if not options["groups"] :
419                            splitname = name.split('/', 1)     # username/email
420                            if len(splitname) == 1 :
421                                splitname.append("")
422                            (name, email) = splitname
423                            if email and (email.count('@') != 1) :
424                                self.printInfo(_("Invalid email address %s") % email)
425                                email = ""
426                        entry = getattr(self.storage, "get%s" % suffix)(name)
427                        if email and not options["groups"] :
428                            entry.Email = email
429                        entrypquota = getattr(self.storage, "get%sPQuota" % suffix)(entry, printer)
430                        allentries.append((entry, entrypquota))
431                else :   
432                    allentries = getattr(self.storage, "getPrinter%ssAndQuotas" % suffix)(printer, names)
433                   
434                # TODO : do this only once !!!   
435                allnames = [entry.Name for (entry, dummy) in allentries]
436                for name in names :   
437                    if not self.matchString(name, allnames) :
438                        if options["groups"] :
439                            missinggroups[name] = 1
440                        else :   
441                            missingusers[name] = 1
442                   
443                for (entry, entrypquota) in allentries :
444                    if not changed.has_key(entry.Name) :
445                        changed[entry.Name] = {}
446                        if not options["groups"] :
447                            changed[entry.Name]["ingroups"] = []
448                           
449                    if not entry.Exists :       
450                        # not found
451                        if options["add"] :
452                            # In case we want to add something, it is crucial
453                            # that we DON'T check with the system accounts files
454                            # like /etc/passwd because users may be defined
455                            # only remotely
456                            if self.isValidName(entry.Name) :
457                                reject = 0
458                                if rejectunknown :
459                                    if options["groups"] :
460                                        try :
461                                            grp.getgrnam(entry.Name)
462                                        except KeyError :   
463                                            self.printInfo(_("Unknown group %s") % entry.Name, "error")
464                                            reject = 1
465                                    else :   
466                                        try :
467                                            pwd.getpwnam(entry.Name)
468                                        except KeyError :   
469                                            self.printInfo(_("Unknown user %s") % entry.Name, "error")
470                                            reject = 1
471                                if not reject :       
472                                    entry = getattr(self.storage, "add%s" % suffix)(entry)
473                            else :   
474                                if options["groups"] :
475                                    self.printInfo(_("Invalid group name %s") % entry.Name)
476                                else :   
477                                    self.printInfo(_("Invalid user name %s") % entry.Name)
478                        else :
479                            if options["groups"] :
480                                missinggroups[entry.Name] = 1
481                            else :   
482                                missingusers[entry.Name] = 1
483                                   
484                    if entry.Exists and (not entrypquota.Exists) :
485                        # not found
486                        if options["add"] :
487                            entrypquota = getattr(self.storage, "add%sPQuota" % suffix)(entry, printer)
488                           
489                    if not entrypquota.Exists :     
490                        self.printInfo(_("Quota not found for object %s on printer %s.") % (entry.Name, printer.Name))
491                    else :   
492                        if options["noquota"] or options["prototype"] \
493                           or ((softlimit is not None) and (hardlimit is not None)) :
494                            entrypquota.setLimits(softlimit, hardlimit)
495                        if increase :
496                           if (entrypquota.SoftLimit is None) \
497                               or (entrypquota.HardLimit is None) :
498                               self.printInfo(_("You can't increase limits by %s when no limit is set.") % increase, "error")
499                           else :
500                               newsoft = entrypquota.SoftLimit + increase         
501                               newhard = entrypquota.HardLimit + increase         
502                               if (newsoft >= 0) and (newhard >= 0) :
503                                   entrypquota.setLimits(newsoft, newhard)
504                               else :   
505                                   self.printInfo(_("You can't set negative limits."), "error")
506                        if limitby :
507                            if changed[entry.Name].get("limitby") is None :
508                                entry.setLimitBy(limitby)
509                                changed[entry.Name]["limitby"] = limitby
510                       
511                        if options["reset"] :
512                            entrypquota.reset()
513                           
514                        if options["hardreset"] :   
515                            entrypquota.hardreset()
516                           
517                        if not options["groups"] :
518                            if used :
519                                entrypquota.setUsage(used)
520                               
521                            if overcharge is not None :   
522                                if changed[entry.Name].get("overcharge") is None :
523                                    entry.setOverChargeFactor(overcharge)
524                                    changed[entry.Name]["overcharge"] = overcharge
525                                   
526                            if balance :
527                                if changed[entry.Name].get("balance") is None :
528                                    if balance.startswith("+") or balance.startswith("-") :
529                                        newbalance = float(entry.AccountBalance or 0.0) + balancevalue
530                                        newlifetimepaid = float(entry.LifeTimePaid or 0.0) + balancevalue
531                                        entry.setAccountBalance(newbalance, newlifetimepaid, options["comment"])
532                                    else :
533                                        diff = balancevalue - float(entry.AccountBalance or 0.0)
534                                        newlifetimepaid = float(entry.LifeTimePaid or 0.0) + diff
535                                        entry.setAccountBalance(balancevalue, newlifetimepaid, options["comment"])
536                                    changed[entry.Name]["balance"] = balance
537                                   
538                            for groupname in groupnames :       
539                                # not executed if option --ingroups is not used
540                                if groupname not in changed[entry.Name]["ingroups"] :
541                                    group = self.storage.getGroup(groupname)
542                                    if group.Exists :
543                                        self.storage.addUserToGroup(entry, group)
544                                        changed[entry.Name]["ingroups"].append(groupname)
545                                    else :
546                                        self.printInfo(_("Group %s not found in the PyKota Storage.") % groupname)
547                           
548            # Now outputs the list of nonexistent users and groups               
549            for name in missingusers.keys() :
550                self.printInfo(_("Nonexistent user %s or missing print quota entry.") % name, level="warn")
551            for name in missinggroups.keys() :
552                self.printInfo(_("Nonexistent group %s or missing print quota entry.") % name, level="warn")
553           
554            sys.stdout.write("\nDone.\n")   
555                     
556if __name__ == "__main__" : 
557    retcode = 0
558    try :
559        defaults = { \
560                     "printer" : "*", \
561                     "comment" : "", \
562                   }
563        short_options = "vhdo:c:C:l:b:i:naugrp:P:S:H:G:RU:I:"
564        long_options = ["help", "version", "comment=", \
565                        "overcharge=", "charge=", "delete", "limitby=", \
566                        "balance=", "ingroups=", "noquota", "add", "users", \
567                        "groups", "reset", "hardreset", "prototype=", \
568                        "printer=", "softlimit=", "hardlimit=", "pgroups=", \
569                        "increase=", "used="]
570       
571        # Initializes the command line tool
572        editor = EdPyKota(doc=__doc__)
573        editor.deferredInit()
574       
575        # parse and checks the command line
576        (options, args) = editor.parseCommandline(sys.argv[1:], short_options, long_options)
577       
578        # sets long options
579        options["help"] = options["h"] or options["help"]
580        options["version"] = options["v"] or options["version"]
581        options["add"] = options["a"] or options["add"]
582        options["users"] = options["u"] or options["users"]
583        options["groups"] = options["g"] or options["groups"]
584        options["prototype"] = options["p"] or options["prototype"]
585        options["printer"] = options["P"] or options["printer"] or defaults["printer"]
586        options["softlimit"] = options["S"] or options["softlimit"]
587        options["hardlimit"] = options["H"] or options["hardlimit"] 
588        options["reset"] = options["r"] or options["reset"] 
589        options["noquota"] = options["n"] or options["noquota"]
590        options["limitby"] = options["l"] or options["limitby"]
591        options["balance"] = options["b"] or options["balance"] 
592        options["delete"] = options["d"] or options["delete"] 
593        options["ingroups"] = options["i"] or options["ingroups"]
594        options["charge"] = options["c"] or options["charge"]
595        options["pgroups"] = options["G"] or options["pgroups"]
596        options["hardreset"] = options["R"] or options["hardreset"] 
597        options["used"] = options["U"] or options["used"]
598        options["overcharge"] = options["o"] or options["overcharge"]
599        options["comment"] = options["C"] or options["comment"] or defaults["comment"]
600        options["increase"] = options["I"] or options["increase"]
601       
602        if options["help"] :
603            editor.display_usage_and_quit()
604        elif options["version"] :
605            editor.display_version_and_quit()
606        elif options["users"] and options["groups"] :   
607            raise PyKotaCommandLineError, _("incompatible options, see help.")
608        elif (options["add"] or options["prototype"]) and options["delete"] :   
609            raise PyKotaCommandLineError, _("incompatible options, see help.")
610        elif (options["reset"] or options["hardreset"] or options["limitby"] or options["used"] or options["balance"] or options["overcharge"] or options["softlimit"] or options["hardlimit"]) and options["prototype"] :
611            raise PyKotaCommandLineError, _("incompatible options, see help.")
612        elif options["noquota"] and (options["prototype"] or options["hardlimit"] or options["softlimit"]) :
613            raise PyKotaCommandLineError, _("incompatible options, see help.")
614        elif options["groups"] and (options["balance"] or options["ingroups"] or options["used"] or options["overcharge"]) :
615            raise PyKotaCommandLineError, _("incompatible options, see help.")
616        elif options["comment"] and not options["balance"] :   
617            raise PyKotaCommandLineError, _("incompatible options, see help.")
618        else :
619            retcode = editor.main(args, options)
620    except KeyboardInterrupt :       
621        sys.stderr.write("\nInterrupted with Ctrl+C !\n")
622        retcode = -3
623    except PyKotaCommandLineError, msg :     
624        sys.stderr.write("%s : %s\n" % (sys.argv[0], msg))
625        retcode = -2
626    except SystemExit :       
627        pass
628    except :
629        try :
630            editor.crashed("edpykota failed")
631        except :   
632            crashed("edpykota failed")
633        retcode = -1
634
635    try :
636        editor.storage.close()
637    except (TypeError, NameError, AttributeError) :   
638        pass
639       
640    sys.exit(retcode)   
Note: See TracBrowser for help on using the browser.