root / pkpgcounter / trunk / pkpgpdls / analyzer.py @ 529

Revision 529, 10.5 kB (checked in by jerome, 16 years ago)

Finalized support for MS documents.

  • Property svn:keywords set to Auth Date Id Rev
RevLine 
[200]1#
2# pkpgcounter : a generic Page Description Language parser
3#
[443]4# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
[463]5# This program is free software: you can redistribute it and/or modify
[200]6# it under the terms of the GNU General Public License as published by
[463]7# the Free Software Foundation, either version 3 of the License, or
[200]8# (at your option) any later version.
[463]9#
[200]10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
[463]16# along with this program.  If not, see <http://www.gnu.org/licenses/>.
[200]17#
18# $Id$
19#
20
[353]21"""This is the main module of pkpgcounter.
22
23It defines the PDLAnalyzer class, which provides a generic way to parse
24input files, by automatically detecting the best parser to use."""
25
[200]26import sys
[363]27import os
[200]28import tempfile
29
[523]30import version, pdlparser, postscript, pdf, pcl345, pclxl, hbp, pil, mscrap, \
[485]31       lidil, escp2, dvi, tiff, ooo, zjstream, qpdl, spl1, escpages03, plain
[363]32import inkcoverage
[200]33
[358]34class AnalyzerOptions :
[353]35    """A class for use as the options parameter to PDLAnalyzer's constructor."""
36    def __init__(self, debug=None,
37                       colorspace=None,
38                       resolution=None) :
39        """Sets initial attributes."""
40        self.debug = debug
41        self.colorspace = colorspace
42        self.resolution = resolution
[351]43   
[353]44   
[200]45class PDLAnalyzer :   
46    """Class for PDL autodetection."""
[358]47    def __init__(self, filename, options=AnalyzerOptions()) :
[200]48        """Initializes the PDL analyzer.
49       
50           filename is the name of the file or '-' for stdin.
51           filename can also be a file-like object which
52           supports read() and seek().
53        """
[351]54        self.options = options
[200]55        self.filename = filename
[491]56        self.workfile = None 
[353]57        self.mustclose = None
[200]58       
59    def getJobSize(self) :   
60        """Returns the job's size."""
[370]61        size = 0
[200]62        self.openFile()
63        try :
64            try :
[411]65                pdlhandler = self.detectPDLHandler()
[220]66                size = pdlhandler.getJobSize()
[411]67            except pdlparser.PDLParserError, msg :   
[527]68                raise pdlparser.PDLParserError, "Unsupported file format for %s (%s)" % (self.filename, msg)
[411]69        finally :   
70            self.closeFile()
[370]71        return size
[363]72           
73    def getInkCoverage(self, colorspace=None, resolution=None) :
74        """Extracts the percents of ink coverage from the input file."""
75        result = None
76        cspace = colorspace or self.options.colorspace
77        res = resolution or self.options.resolution
78        if (not cspace) or (not res) :
79            raise ValueError, "Invalid colorspace (%s) or resolution (%s)" % (cspace, res)
80        self.openFile()
81        try :
82            try :
[411]83                pdlhandler = self.detectPDLHandler()
[501]84                dummyfile = tempfile.NamedTemporaryFile(mode="w+b")
85                filename = dummyfile.name
[492]86                try :
87                    pdlhandler.convertToTiffMultiPage24NC(filename, self.options.resolution)
88                    result = inkcoverage.getInkCoverage(filename, cspace)
89                finally :   
[501]90                    dummyfile.close()
[411]91            except pdlparser.PDLParserError, msg :   
[527]92                raise pdlparser.PDLParserError, "Unsupported file format for %s (%s)" % (self.filename, msg)
[492]93        finally :
[411]94            self.closeFile()
[363]95        return result
[200]96       
97    def openFile(self) :   
98        """Opens the job's data stream for reading."""
[491]99        self.mustclose = False  # by default we don't want to close the file when finished
[200]100        if hasattr(self.filename, "read") and hasattr(self.filename, "seek") :
101            # filename is in fact a file-like object
102            infile = self.filename
103        elif self.filename == "-" :
104            # we must read from stdin
105            infile = sys.stdin
106        else :   
107            # normal file
[491]108            self.workfile = open(self.filename, "rb")
109            self.mustclose = True
[200]110            return
111           
112        # Use a temporary file, always seekable contrary to standard input.
[491]113        self.workfile = tempfile.NamedTemporaryFile(mode="w+b")
114        self.filename = self.workfile.name
115        while True :
[220]116            data = infile.read(pdlparser.MEGABYTE) 
[200]117            if not data :
118                break
[491]119            self.workfile.write(data)
120        self.workfile.flush()   
121        self.workfile.seek(0)
[200]122           
123    def closeFile(self) :       
[491]124        """Closes the job's data stream if we have to."""
[200]125        if self.mustclose :
[491]126            self.workfile.close()   
[200]127       
[522]128    def readFirstAndLastBlocks(self, inputfile) :
[520]129        """Reads the first and last blocks of data."""
130        # Now read first and last block of the input file
131        # to be able to detect the real file format and the parser to use.
[522]132        firstblock = inputfile.read(pdlparser.FIRSTBLOCKSIZE)
[520]133        try :
[522]134            inputfile.seek(-pdlparser.LASTBLOCKSIZE, 2)
135            lastblock = inputfile.read(pdlparser.LASTBLOCKSIZE)
[520]136        except IOError :   
[522]137            lastblock = ""
138        return (firstblock, lastblock)     
[520]139           
[200]140    def detectPDLHandler(self) :   
141        """Tries to autodetect the document format.
142       
143           Returns the correct PDL handler class or None if format is unknown
144        """   
[491]145        if not os.stat(self.filename).st_size :
[220]146            raise pdlparser.PDLParserError, "input file %s is empty !" % str(self.filename)
[522]147        (firstblock, lastblock) = self.readFirstAndLastBlocks(self.workfile)
[493]148           
[491]149        # IMPORTANT : the order is important below. FIXME.
150        for module in (postscript, \
151                       pclxl, \
152                       pdf, \
153                       qpdl, \
154                       spl1, \
155                       dvi, \
156                       tiff, \
157                       zjstream, \
158                       ooo, \
159                       hbp, \
160                       lidil, \
161                       pcl345, \
162                       escp2, \
163                       escpages03, \
[501]164                       pil, \
[523]165                       mscrap, \
[491]166                       plain) :     # IMPORTANT : don't move this one up !
167            try :               
[529]168                return module.Parser(self, self.filename, 
169                                           (firstblock, lastblock))
[491]170            except pdlparser.PDLParserError :
171                pass # try next parser
[217]172        raise pdlparser.PDLParserError, "Analysis of first data block failed."
[200]173           
174def main() :   
175    """Entry point for PDL Analyzer."""
[350]176    import optparse
177    from copy import copy
178   
179    def check_cichoice(option, opt, value) :
180        """To add a CaseIgnore Choice option type."""
181        valower = value.lower()
182        if valower in [v.lower() for v in option.cichoices] :
183            return valower
184        else :   
[353]185            choices = ", ".join([repr(o) for o in option.cichoices])
[350]186            raise optparse.OptionValueError(
187                "option %s: invalid choice: %r (choose from %s)"
188                % (opt, value, choices))
189   
190    class MyOption(optparse.Option) :
191        """New Option class, with CaseIgnore Choice type."""
192        TYPES = optparse.Option.TYPES + ("cichoice",)
193        ATTRS = optparse.Option.ATTRS + ["cichoices"]
194        TYPE_CHECKER = copy(optparse.Option.TYPE_CHECKER)
195        TYPE_CHECKER["cichoice"] = check_cichoice
196       
197    parser = optparse.OptionParser(option_class=MyOption, 
198                                   usage="python analyzer.py [options] file1 [file2 ...]")
[348]199    parser.add_option("-v", "--version", 
200                            action="store_true", 
201                            dest="version",
[350]202                            help="Show pkpgcounter's version number and exit.")
[348]203    parser.add_option("-d", "--debug", 
204                            action="store_true", 
205                            dest="debug",
[350]206                            help="Activate debug mode.")
207    parser.add_option("-c", "--colorspace", 
208                            dest="colorspace",
209                            type="cichoice",
[439]210                            cichoices=["bw", "rgb", "cmyk", "cmy", "gc"],
211                            help="Activate the computation of ink usage, and defines the colorspace to use. Supported values are 'BW', 'RGB', 'CMYK', 'CMY', and 'GC'.")
[350]212    parser.add_option("-r", "--resolution", 
213                            type="int", 
[367]214                            default=72, 
[350]215                            dest="resolution",
[367]216                            help="The resolution in DPI to use when checking ink usage. Lower resolution is faster but less accurate. Default is 72 dpi.")
[348]217    (options, arguments) = parser.parse_args()
218    if options.version :
[200]219        print "%s" % version.__version__
[358]220    elif not (72 <= options.resolution <= 1200) :   
[367]221        sys.stderr.write("ERROR: the argument to the --resolution command line option must be between 72 and 1200.\n")
[358]222        sys.stderr.flush()
[200]223    else :
[348]224        if (not arguments) or ((not sys.stdin.isatty()) and ("-" not in arguments)) :
225            arguments.append("-")
[200]226        totalsize = 0   
[377]227        lines = []
[350]228        try :
229            for arg in arguments :
230                try :
[351]231                    parser = PDLAnalyzer(arg, options)
[363]232                    if not options.colorspace :
233                        totalsize += parser.getJobSize()
234                    else :
[376]235                        (cspace, pages) = parser.getInkCoverage()
236                        for page in pages :
[377]237                            lineparts = []
238                            for k in cspace : # NB : this way we preserve the order of the planes
[376]239                                try :
[383]240                                    lineparts.append("%s : %s%%" % (k, ("%f" % page[k]).rjust(10)))
[376]241                                except KeyError :
242                                    pass
[377]243                            lines.append("      ".join(lineparts))     
[350]244                except (IOError, pdlparser.PDLParserError), msg :   
245                    sys.stderr.write("ERROR: %s\n" % msg)
246                    sys.stderr.flush()
247        except KeyboardInterrupt :           
248            sys.stderr.write("WARN: Aborted at user's request.\n")
249            sys.stderr.flush()
[377]250        if not options.colorspace :   
[491]251            print "%i" % totalsize
[377]252        else :   
253            print "\n".join(lines)
[200]254   
255if __name__ == "__main__" :   
256    main()
Note: See TracBrowser for help on using the browser.