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
RevLine 
[217]1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3#
4# pkpgcounter : a generic Page Description Language parser
5#
[443]6# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
[463]7# This program is free software: you can redistribute it and/or modify
[217]8# it under the terms of the GNU General Public License as published by
[463]9# the Free Software Foundation, either version 3 of the License, or
[217]10# (at your option) any later version.
[463]11#
[217]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
[463]18# along with this program.  If not, see <http://www.gnu.org/licenses/>.
[217]19#
20# $Id$
21#
22
[354]23"""This modules implements a page counter for TIFF documents."""
24
[217]25import sys
26import os
27import mmap
28from struct import unpack
29
[235]30import pdlparser
[217]31
[220]32class Parser(pdlparser.PDLParser) :
[217]33    """A parser for TIFF documents."""
[527]34    totiffcommands = [ 'cp "%(infname)s" "%(outfname)s"' ]
35    required = [ "cp" ]
[555]36    format = "TIFF"
[220]37    def isValid(self) :       
[387]38        """Returns True if data is TIFF, else False."""
[220]39        littleendian = (chr(0x49)*2) + chr(0x2a) + chr(0)
40        bigendian = (chr(0x4d)*2) + chr(0) + chr(0x2a)
[522]41        if self.firstblock[:4] in (littleendian, bigendian) :
[387]42            return True
[220]43        else :   
[387]44            return False
[220]45   
[217]46    def getJobSize(self) :
47        """Counts pages in a TIFF document.
[219]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/
[217]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"
[354]63        elif minfile[:4] == bigendian :
[217]64            integerbyteorder = ">I"
65            shortbyteorder = ">H"
[354]66        else :   
67            raise pdlparser.PDLParserError, "Unknown file endianness."
[217]68        pos = 4   
[489]69        try :
70            try :   
[219]71                nextifdoffset = unpack(integerbyteorder, minfile[pos : pos + 4])[0]
[489]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()
[217]81        return pagecount
Note: See TracBrowser for help on using the browser.