root / pkpgcounter / trunk / pkpgpdls / dvi.py @ 522

Revision 522, 2.7 kB (checked in by jerome, 16 years ago)

Finally we need to duplicate some datas, since for some file formats (e.g. mstrash)
a preliminary conversion will have to be done (through wvware for example) and we
would need to overwrite original values, which is not desirable.

  • Property svn:keywords set to Author Id Date Revision
RevLine 
[216]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
[216]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
[216]10# (at your option) any later version.
[463]11#
[216]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/>.
[216]19#
20# $Id$
21#
22
[356]23"""This modules implements a page counter for DVI documents."""
24
[216]25import sys
26import os
27import mmap
28from struct import unpack
29
[235]30import pdlparser
[216]31
[220]32class Parser(pdlparser.PDLParser) :
[216]33    """A parser for DVI documents."""
[492]34    totiffcommands = [ 'dvips -q -o - "%(infname)s" | gs -sDEVICE=tiff24nc -dPARANOIDSAFER -dNOPAUSE -dBATCH -dQUIET -r"%(dpi)i" -sOutputFile="%(outfname)s" -' ]
[220]35    def isValid(self) :       
[387]36        """Returns True if data is DVI, else False."""
[220]37        try :
[522]38            if (ord(self.firstblock[0]) == 0xf7) \
39                and (ord(self.lastblock[-1]) == 0xdf) :
[252]40                self.logdebug("DEBUG: Input file is in the DVI format.")
[387]41                return True
[220]42            else :   
[387]43                return False
[220]44        except IndexError :         
[387]45            return False
[220]46           
[216]47    def getJobSize(self) :
48        """Counts pages in a DVI document.
49       
50           Algorithm by Jerome Alet.
51           
52           The documentation used for this was :
53         
54           http://www.math.umd.edu/~asnowden/comp-cont/dvi.html
55        """
56        infileno = self.infile.fileno()
57        minfile = mmap.mmap(infileno, os.fstat(infileno)[6], prot=mmap.PROT_READ, flags=mmap.MAP_SHARED)
58        pagecount = 0
59        pos = -1
60        eofchar = chr(0xdf)
61        postchar = chr(0xf8)
62        try :
[489]63            try :
64                while minfile[pos] == eofchar :
65                    pos -= 1
66                idbyte = minfile[pos]   
67                if idbyte != minfile[1] :
68                    raise IndexError, "Invalid DVI file."
69                pos = unpack(">I", minfile[pos - 4:pos])[0]
70                if minfile[pos] != postchar :
71                    raise IndexError, "Invalid DVI file."
72                pagecount = unpack(">H", minfile[pos + 27: pos + 29])[0]
73            except IndexError : # EOF ?
74                pass
75        finally :       
76            minfile.close() # reached EOF
[216]77        return pagecount
Note: See TracBrowser for help on using the browser.