root / pykota / trunk / bin / dumpykota @ 2829

Revision 2829, 6.7 kB (checked in by jerome, 18 years ago)

Did a pass with pylint.

  • 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 Data Dumper
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
28
29from pykota.tool import PyKotaCommandLineError, crashed, N_
30from pykota.dumper import DumPyKota
31
32__doc__ = N_("""dumpykota v%(__version__)s (c) %(__years__)s %(__author__)s
33
34Dumps PyKota database's content.
35
36command line usage :
37
38  dumpykota [options] [filterexpr]
39
40options :
41
42  -v | --version       Prints dumpykota's version number then exits.
43  -h | --help          Prints this message then exits.
44 
45  -d | --data type     Dumps 'type' datas. Allowed types are :
46                       
47                         - history : dumps the jobs history.
48                         - users : dumps users.
49                         - groups : dumps user groups.
50                         - printers : dump printers.
51                         - upquotas : dump user quotas.
52                         - gpquotas : dump user groups quotas.
53                         - payments : dumps user payments.
54                         - pmembers : dumps printer groups members.
55                         - umembers : dumps user groups members.
56                         - billingcodes : dumps billing codes.
57                         - all : dumps all PyKota datas. The output format
58                                 is always XML in this case.
59                         
60                       NB : the -d | --data command line option   
61                       is MANDATORY.
62 
63  -f | --format fmt    Dumps datas in the 'fmt' format. When not specified,
64                       the format is to dump datas in the csv format (comma
65                       separated values). All data dumped is between double
66                       quotes. Allowed formats are :
67                       
68                         - csv : separate datas with commas
69                         - ssv : separate datas with semicolons
70                         - tsv : separate datas with tabs
71                         - xml : dump data as XML
72                         - cups : dump datas in CUPS' page_log format :
73                                  ONLY AVAILABLE WITH --data history
74                         
75  -o | --output fname  All datas will be dumped to the file instead of
76                       to the standard output. The special '-' filename
77                       is the default value and means stdout.
78                       WARNING : existing files are truncated !
79
80  -s | --sum           Summarize the selected datas.
81                           ONLY AVAILABLE WITH --data history or payments
82
83  Use the filter expressions to extract only parts of the
84  datas. Allowed filters are of the form :
85               
86         key=value
87                         
88  Allowed keys for now are : 
89                       
90         username       User's name
91         groupname      Users group's name
92         printername    Printer's name
93         pgroupname     Printers group's name
94         hostname       Client's hostname
95         billingcode    Job's billing code
96         start          Job's date of printing
97         end            Job's date of printing
98         
99  Contrary to other PyKota management tools, wildcard characters are not
100  expanded, so you can't use them.
101 
102  NB : not all keys are allowed for each data type, so the result may be
103  empty if you use a key not available for a particular data type.
104 
105Examples :
106
107  $ dumpykota --data history --format csv >myfile.csv
108 
109  This dumps the history in a comma separated values file, for possible
110  use in a spreadsheet.
111 
112  $ dumpykota --data users --format xml -o users.xml
113 
114  Dumps all users datas to the users.xml file.
115 
116  $ dumpykota --data history printername=HP2100 username=jerome
117 
118  Dumps the job history for user jerome on printer HP2100 only.
119 
120  $ dumpykota --data history start=200503 end=20050730234615
121 
122  Dumps all jobs printed between March 1st 2005 at midnight and
123  July 30th 2005 at 23 hours 46 minutes and 15 secondes included.
124""")
125       
126if __name__ == "__main__" : 
127    retcode = 0
128    try :
129        defaults = { \
130                     "format" : "csv", \
131                     "output" : "-", \
132                   }
133        short_options = "vhd:f:o:s"
134        long_options = ["help", "version", "data=", "format=", "output=", "sum"]
135       
136        # Initializes the command line tool
137        dumper = DumPyKota(doc=__doc__)
138        dumper.deferredInit()
139       
140        # parse and checks the command line
141        (options, args) = dumper.parseCommandline(sys.argv[1:], short_options, long_options, allownothing=1)
142       
143        # sets long options
144        options["help"] = options["h"] or options["help"]
145        options["version"] = options["v"] or options["version"]
146        options["data"] = options["d"] or options["data"]
147        options["format"] = options["f"] or options["format"] or defaults["format"]
148        options["output"] = options["o"] or options["output"] or defaults["output"]
149        options["sum"] = options["s"] or options["sum"]
150       
151        if options["help"] :
152            dumper.display_usage_and_quit()
153        elif options["version"] :
154            dumper.display_version_and_quit()
155        elif options["data"] is None :   
156            raise PyKotaCommandLineError, _("The -d | --data command line option is mandatory, see help.")
157        else :
158            retcode = dumper.main(args, options)
159    except KeyboardInterrupt :       
160        sys.stderr.write("\nInterrupted with Ctrl+C !\n")
161        retcode = -3
162    except PyKotaCommandLineError, msg :   
163        sys.stderr.write("%s : %s\n" % (sys.argv[0], msg))
164        retcode = -2
165    except SystemExit :       
166        pass
167    except :
168        try :
169            dumper.crashed("dumpykota failed")
170        except :   
171            crashed("dumpykota failed")
172        retcode = -1
173
174    try :
175        dumper.storage.close()
176    except (TypeError, NameError, AttributeError) :   
177        pass
178       
179    sys.exit(retcode)   
Note: See TracBrowser for help on using the browser.