root / pkpgcounter / trunk / pkpgpdls / tiff.py @ 555

Revision 555, 2.9 kB (checked in by jerome, 16 years ago)

Each parser now has a 'format' attribute containing its short name.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3#
4# pkpgcounter : a generic Page Description Language parser
5#
6# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19#
20# $Id$
21#
22
23"""This modules implements a page counter for TIFF documents."""
24
25import sys
26import os
27import mmap
28from struct import unpack
29
30import pdlparser
31
32class Parser(pdlparser.PDLParser) :
33    """A parser for TIFF documents."""
34    totiffcommands = [ 'cp "%(infname)s" "%(outfname)s"' ]
35    required = [ "cp" ]
36    format = "TIFF"
37    def isValid(self) :       
38        """Returns True if data is TIFF, else False."""
39        littleendian = (chr(0x49)*2) + chr(0x2a) + chr(0)
40        bigendian = (chr(0x4d)*2) + chr(0) + chr(0x2a)
41        if self.firstblock[:4] in (littleendian, bigendian) :
42            return True
43        else :   
44            return False
45   
46    def getJobSize(self) :
47        """Counts pages in a TIFF document.
48       
49           Algorithm by Jerome Alet.
50           
51           The documentation used for this was :
52           
53           http://www.ee.cooper.edu/courses/course_pages/past_courses/EE458/TIFF/
54        """
55        infileno = self.infile.fileno()
56        minfile = mmap.mmap(infileno, os.fstat(infileno)[6], prot=mmap.PROT_READ, flags=mmap.MAP_SHARED)
57        pagecount = 0
58        littleendian = (chr(0x49)*2) + chr(0x2a) + chr(0)
59        bigendian = (chr(0x4d)*2) + chr(0) + chr(0x2a)
60        if minfile[:4] == littleendian :
61            integerbyteorder = "<I"
62            shortbyteorder = "<H"
63        elif minfile[:4] == bigendian :
64            integerbyteorder = ">I"
65            shortbyteorder = ">H"
66        else :   
67            raise pdlparser.PDLParserError, "Unknown file endianness."
68        pos = 4   
69        try :
70            try :   
71                nextifdoffset = unpack(integerbyteorder, minfile[pos : pos + 4])[0]
72                while nextifdoffset :
73                    direntrycount = unpack(shortbyteorder, minfile[nextifdoffset : nextifdoffset + 2])[0]
74                    pos = nextifdoffset + 2 + (direntrycount * 12)
75                    nextifdoffset = unpack(integerbyteorder, minfile[pos : pos + 4])[0]
76                    pagecount += 1
77            except IndexError :           
78                pass
79        finally :       
80            minfile.close()
81        return pagecount
Note: See TracBrowser for help on using the browser.