root / pkpgcounter / trunk / pkpgpdls / plain.py @ 491

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

Major code cleaning. Now clearer, although probably a bit slower since
a file can be opened several times.
Now universal line opening mode is only used when needed (PS, PDF and plain
text), and binary opening mode is used for the other formats.
This mean we will be able to remove mmap calls wherever possible, finally.

  • 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 plain text documents."""
24
25import pdlparser
26import version
27
28class Parser(pdlparser.PDLParser) :
29    """A parser for plain text documents."""
30    totiffcommands = [ 'enscript --quiet --portrait --no-header --columns 1 --output - | gs -sDEVICE=tiff24nc -dPARANOIDSAFER -dNOPAUSE -dBATCH -dQUIET -r%(dpi)i -sOutputFile="%(fname)s" -',
31                       'a2ps --borders 0 --quiet --portrait --no-header --columns 1 --output - | gs -sDEVICE=tiff24nc -dPARANOIDSAFER -dNOPAUSE -dBATCH -dQUIET -r%(dpi)i -sOutputFile="%(fname)s" -',
32                     ] 
33    openmode = "rU"                 
34    def isValid(self) :   
35        """Returns True if data is plain text, else False.
36       
37           It's hard to detect a plain text file, so we just
38           read the first line, and if it doesn't end in CR or LF
39           we consider it's not plain text.
40        """   
41        line = self.infile.readline()
42        self.infile.seek(0)
43        if line.endswith("\n") or line.endswith("\r") :
44            self.logdebug("DEBUG: Input file seems to be in the plain text format.")
45            return True
46        else :   
47            return False
48           
49    def getJobSize(self) :
50        """Counts pages in a plain text document."""
51        pagesize = 66   # TODO : Does this vary wrt the default page size ?
52                        # TODO : /etc/papersize and /etc/paper.config
53        pagecount = 0
54        linecount = 0
55        for line in self.infile :
56            if line.endswith("\n") :
57                linecount += 1   
58                if (linecount > pagesize) :
59                    pagecount += 1
60                    linecount = 0
61                else :   
62                    cnt = line.count("\f")
63                    if cnt :
64                        pagecount += cnt
65                        linecount = 0
66            else :       
67                raise pdlparser.PDLParserError, "Unsupported file format. Please send the file to %s" % version.__authoremail__
68        return pagecount + 1    # NB : empty files are catched in isValid()
Note: See TracBrowser for help on using the browser.