pystats.py :  » Web-Frameworks » Webware » Webware-1.0.2 » bin » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Webware 
Webware » Webware 1.0.2 » bin » pystats.py
#!/usr/bin/env python

"""pystats.py


Reports stats for various aspects of Python source including:

  # of files
  # of bytes
  # of lines
  # of methods/functions
  # of classes

You can think of this as a UNIX "wc" on steroids (that also works on any
Python platform).


USAGE

From the command line:

  > cd Webware
  > python bin/pystats.py
  > python bin/pystats.py -h
  > python bin/pystats.py -s


CAVEATS

PyStats doesn't count classes, functions and methods perfectly. It can be
fooled by multiline strings and such. But it's close enough to get an idea
and the odd ball cases don't happen frequently.

Webware includes some third party Python files, which you may or may not
believe should be counted as part of the stats.

Number of bytes is a little low on Windows where \r\n is counted just as \n.

The extensions accepted are hard coded to .py .psp and .cgi.


MISC

To check the results of pystats, you can use these UNIX commands for comparison:
  > rm -rf WebKit/Cache
  > wc *.py */*.py */*/*.py */*/*.psp */*.cgi


FUTURE

Output numbers with commas.

Option for writing HTML results.

Both this utility and checksrc.py are in need of a ReadPyLines() function that
would be like readlines() but would bastardize the contents of multiline strings
to avoid misunderstandings concerning tabs, spaces, def's, class's etc.
See tabnanny in Py 2.0, it might have the answer or even reusable code.

Some of our code is in common with checksrc.py. One more similar program and it
might be time for an abstract class for these guys.

Provide command line option to change extensions.

"""


import os, re, sys
from UserDict import UserDict


class Stats(UserDict):

  _statNames = 'files bytes lines funcs classes'.split()

  def __init__(self, dict=None):
    UserDict.__init__(self, dict)
    if dict is None:
      for name in self._statNames:
        self[name] = 0

  def __add__(self, stats):
    result = self.__class__()
    for name in self._statNames:
      result[name] = self[name] + stats[name]
    return result

  def copy(self):
    """Return a real copy/duplicate of the receiver.

    Note that userDict.copy() will do so,
    but subclassOfUserDict.copy() does not.

    """
    return self.__class__(self.data)

  def write(self, file=sys.stdout):
    for name in self._statNames:
      file.write('%8d' % self[name])

  def writeHeaders(self, nameWidth, file=sys.stdout):
    # this would be a class method in Python >= 2.2
    file.write(' ' * nameWidth)
    for name in self._statNames:
      file.write('%8s' % name)
    file.write('\n')


class StatsNode:

  classDefRE = re.compile(r'^[\t ]*class[\t ]+[\w]+[\t ]*[(:]{1,1}', re.MULTILINE)
  funcDefRE  = re.compile(r'^[\t ]*def[\t ]+[\w]+[\t ]*\(', re.MULTILINE)

  def __init__(self, name):
    self._name       = name
    self._subNodes   = {}      # map directory names to StatsNodes
    self._stats      = Stats() # stats for files just in this dir (no subdirs)
    self._totalStats = None    # stats for all files, recursively in subdirs

  def name(self):
    return self._name

  def computeTotal(self):
    self._totalStats = self._stats.copy()
    for node in self._subNodes.values():
      node.computeTotal()
      self._totalStats += node._totalStats

  def processDir(self, dirName, extensions, recurse=1):
    exceptions = (os.curdir, os.pardir, 'CVS', '.svn')
    names = os.listdir(dirName)
    for name in names:
      if not os.path.isdir(name):
        ext = os.path.splitext(name)[1]
        if ext in extensions:
          self.processFile(os.path.join(dirName, name), ext)
    if recurse:
      for name in names:
        if name not in exceptions:
          fullname = os.path.join(dirName, name)
          if os.path.isdir(fullname):
            node = self._subNodes[name] = StatsNode(name)
            node.processDir(fullname, extensions)

  def processFile(self, pathname, ext=None):
    if ext is None:
      ext = os.path.splitext(pathname)[1]

    contents = open(pathname).read()

    stats = self._stats
    stats['bytes'] += len(contents)
    stats['lines'] += contents.count('\n')
    stats['funcs'] += len(self.funcDefRE.findall(contents))
    stats['classes'] += len(self.classDefRE.findall(contents))
    stats['files'] += 1

  def write(self, file=sys.stdout, recurse=1, indent=0, indenter='  '):
    if indent == 0:
      self._stats.writeHeaders(25, file)
    spacer = indenter * indent
    name = self._name.ljust(25-len(spacer))
    file.write(spacer+name)
    self._totalStats.write(file)
    file.write('\n')
    if recurse:
      indent += 1
      keys = self._subNodes.keys()
      keys.sort()
      for key in keys:
        self._subNodes[key].write(file, recurse, indent, indenter)


class PyStats:


  ## Init ##

  def __init__(self):
    # Init some attrs
    self._rootNode = StatsNode('.')

    # Set default options
    self.setDirectory('.')
    self.setExtensions(['.py', '.psp', '.cgi'])
    self.setRecurse(1)
    self.setShowSummary(0)


  ## Options ##

  def directory(self):
    return self._directory

  def setDirectory(self, dir):
    """Set the directory that checking starts in."""
    self._directory = dir

  def extensions(self):
    return self._extensions

  def setExtensions(self, exts):
    self._extensions = exts

  def recurse(self):
    return self._recurse

  def setRecurse(self, flag):
    """Set whether or not to recurse into subdirectories."""
    self._recurse = flag

  def showSummary(self):
    return self._showSummary

  def setShowSummary(self, flag):
    self._showSummary = flag


  ## Command line use ##

  def usage(self):
    progName = sys.argv[0]
    wr = sys.stdout.write
    wr('Usage: %s [options] [startingDir]\n' % progName)
    wr('''       -h --help = help
       -r -R = recurse, do not recurse. default -r
       -s -S = show summary, do not show summary. default -S
Examples:
    > python pystats.py
    > python pystats.py SomeDir
    > python pystats.py -R SomeDir
''')

  def main(self, args=sys.argv):
    if self.readArgs(args):
      self.run()

  def readArgs(self, args=sys.argv):
    for arg in args[1:]:
      if arg == '-h' or arg == '--help':
        self.usage()
        return 0
      elif arg == '-r':
        self.setRecurse(1)
      elif arg == '-R':
        self.setRecurse(0)
      elif arg == '-s':
        self.setShowSummary(1)
      elif arg == '-S':
        self.setShowSummary(0)
      elif arg[0] == '-':
        self.usage()
        return 0
      else:
        self.setDirectory(arg)
    return 1


  ## Running ##

  def run(self, file=sys.stdout):
    self._rootNode.processDir(self._directory, self._extensions, self._recurse)
    self._rootNode.computeTotal()
    self.write(file)


  ## Writing ##

  def write(self, file=sys.stdout):
    recurse = not self._showSummary
    self._rootNode.write(file, recurse)


if __name__ == '__main__':
  PyStats().main()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.