root / pkpgcounter / trunk / pdlanalyzer / pdf.py @ 200

Revision 200, 2.0 kB (checked in by jerome, 19 years ago)

More file splits

  • Property svn:eol-style set to native
  • Property svn:keywords set to Auth Date Id Rev
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 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20#
21# $Id$
22#
23
24import sys
25import re
26
27from pdlanalyzer import pdlparser
28
29class PDFParser(pdlparser.PDLParser) :
30    """A parser for PDF documents."""
31    def getJobSize(self) :   
32        """Counts pages in a PDF document."""
33        regexp = re.compile(r"(/Type) ?(/Page)[/ \t\r\n]")
34        pagecount = 0
35        for line in self.infile.xreadlines() : 
36            pagecount += len(regexp.findall(line))
37        return pagecount   
38       
39def test() :       
40    """Test function."""
41    if (len(sys.argv) < 2) or ((not sys.stdin.isatty()) and ("-" not in sys.argv[1:])) :
42        sys.argv.append("-")
43    totalsize = 0   
44    for arg in sys.argv[1:] :
45        if arg == "-" :
46            infile = sys.stdin
47            mustclose = 0
48        else :   
49            infile = open(arg, "rb")
50            mustclose = 1
51        try :
52            parser = PDFParser(infile, debug=1)
53            totalsize += parser.getJobSize()
54        except pdlparser.PDLParserError, msg :   
55            sys.stderr.write("ERROR: %s\n" % msg)
56            sys.stderr.flush()
57        if mustclose :   
58            infile.close()
59    print "%s" % totalsize
60   
61if __name__ == "__main__" :   
62    test()
Note: See TracBrowser for help on using the browser.