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

Revision 555, 3.0 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 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 - "%(infname)s" | gs -sDEVICE=tiff24nc -dPARANOIDSAFER -dNOPAUSE -dBATCH -dQUIET -r"%(dpi)i" -sOutputFile="%(outfname)s" -',
31                       'a2ps --borders 0 --quiet --portrait --no-header --columns 1 --output - "%(infname)s" | gs -sDEVICE=tiff24nc -dPARANOIDSAFER -dNOPAUSE -dBATCH -dQUIET -r"%(dpi)i" -sOutputFile="%(outfname)s" -',
32                     ] 
33    required = [ "a2ps | enscript", "gs" ]
34    openmode = "rU"                 
35    format = "plain text"
36    def isValid(self) :   
37        """Returns True if data is plain text, else False.
38       
39           It's hard to detect a plain text file, so we just try to
40           extract lines from the first block (sufficiently large).
41           If it's impossible to find one we consider it's not plain text.
42        """   
43        lines = self.firstblock.split("\r\n")
44        if len(lines) == 1 :
45            lines = lines[0].split("\r")
46            if len(lines) == 1 :
47                lines = lines[0].split("\n")
48        if len(lines) > 1 :
49            return True
50        else :   
51            return False
52           
53    def getJobSize(self) :
54        """Counts pages in a plain text document."""
55        pagesize = 66   # TODO : Does this vary wrt the default page size ?
56                        # TODO : /etc/papersize and /etc/paper.config
57        pagecount = 0
58        linecount = 0
59        for line in self.infile :
60            if line.endswith("\n") :
61                linecount += 1   
62                if (linecount > pagesize) :
63                    pagecount += 1
64                    linecount = 0
65                else :   
66                    cnt = line.count("\f")
67                    if cnt :
68                        pagecount += cnt
69                        linecount = 0
70            else :       
71                raise pdlparser.PDLParserError, "Unsupported file format. Please send the file to %s" % version.__authoremail__
72        return pagecount + 1    # NB : empty files are catched in isValid()
Note: See TracBrowser for help on using the browser.