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

Revision 443, 3.0 kB (checked in by jerome, 17 years ago)

Changed copyright years.

  • 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>
[217]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 2 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, write to the Free Software
19# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20#
21# $Id$
22#
23
[354]24"""This modules implements a page counter for TIFF documents."""
25
[217]26import sys
27import os
28import mmap
29from struct import unpack
30
[235]31import pdlparser
[217]32
[220]33class Parser(pdlparser.PDLParser) :
[217]34    """A parser for TIFF documents."""
[428]35    totiffcommands = [ "cat >%(fname)s" ]
[220]36    def isValid(self) :       
[387]37        """Returns True if data is TIFF, else False."""
[220]38        littleendian = (chr(0x49)*2) + chr(0x2a) + chr(0)
39        bigendian = (chr(0x4d)*2) + chr(0) + chr(0x2a)
40        if self.firstblock[:4] in (littleendian, bigendian) :
[252]41            self.logdebug("DEBUG: Input file is in the TIFF format.")
[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   
69        try :   
[219]70            nextifdoffset = unpack(integerbyteorder, minfile[pos : pos + 4])[0]
[217]71            while nextifdoffset :
[219]72                direntrycount = unpack(shortbyteorder, minfile[nextifdoffset : nextifdoffset + 2])[0]
[217]73                pos = nextifdoffset + 2 + (direntrycount * 12)
[219]74                nextifdoffset = unpack(integerbyteorder, minfile[pos : pos + 4])[0]
[217]75                pagecount += 1
76        except IndexError :           
77            pass
78        minfile.close()
79        return pagecount
80       
81if __name__ == "__main__" :   
[415]82    pdlparser.test(Parser)
Note: See TracBrowser for help on using the browser.