python实现统计代码行数的方法


Posted in Python onMay 22, 2015

本文实例讲述了python实现统计代码行数的方法。分享给大家供大家参考。具体实现方法如下:

'''
Author: liupengfei
Function: count lines of code in a folder iteratively
Shell-format: cmd [dir]
Attention: default file encode is utf8 and default file type is java-source-file. But users can customize this script by just modifing global variables.
'''
import sys
import os
import codecs
from _pyio import open
totalCount = 0;
fileType = '.java'
descLineBegin = '//'
descBlockBegin = r'/**'
descBlockEnd = r'*/'
fileEncode = 'utf-8'
def main():
  DIR = os.getcwd()
  if len(sys.argv) >= 2:
    DIR = sys.argv[1]
  if os.path.exists(DIR) and os.path.isdir(DIR):
    print('target directory is %s' % DIR)
    countDir(DIR)
    print('total code line is %d' % totalCount)
  else:
    print('target should be a directory!')
def isFileType(file):
  return len(fileType) + file.find(fileType) == len(file)
def countDir(DIR):
  for file in os.listdir(DIR):
    absPath = DIR + os.path.sep + file;
    if os.path.exists(absPath):
      if os.path.isdir(absPath):
        countDir(absPath)
      elif isFileType(absPath):
        try:
          countFile(absPath)
        except UnicodeDecodeError:
          print(
            '''encode of %s is different, which
is not supported in this version!'''
            )
def countFile(file):
  global totalCount
  localCount = 0
  isInBlockNow = False
  f = codecs.open(file, 'r', fileEncode);
  for line in f:
    if (not isInBlockNow) and line.find(descLineBegin) == 0:
      pass;
    elif (not isInBlockNow) and line.find(descBlockBegin) >= 0:
      if line.find(descBlockBegin) > 0:
        localCount += 1
      isInBlockNow = True;
    elif isInBlockNow and line.find(descBlockEnd) >= 0:
      if line.find(descBlockEnd) + len(descBlockEnd) < len(line):
        localCount += 1
      isInBlockNow = False;
    elif (not isInBlockNow) and len(line.replace('\\s+', '')) > 0:
      localCount += 1
  f.close()
  totalCount += localCount
  print('%s : %d' % (file, localCount))
if __name__ == '__main__':
  main();

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
从Python程序中访问Java类的简单示例
Apr 20 Python
在Python程序中操作MySQL的基本方法
Jul 29 Python
Python中enumerate()函数编写更Pythonic的循环
Mar 06 Python
解决python删除文件的权限错误问题
Apr 24 Python
python3读取csv和xlsx文件的实例
Jun 22 Python
如何更优雅地写python代码
Jul 02 Python
Python实现个人微信号自动监控告警的示例
Jul 03 Python
flask利用flask-wtf验证上传的文件的方法
Jan 17 Python
python实现替换word中的关键文字(使用通配符)
Feb 13 Python
Python要如何实现列表排序的几种方法
Feb 21 Python
python爬虫学习笔记之Beautifulsoup模块用法详解
Apr 09 Python
python代数式括号有效性检验示例代码
Oct 04 Python
在Python中处理日期和时间的基本知识点整理汇总
May 22 #Python
python使用PIL模块实现给图片打水印的方法
May 22 #Python
python实现读取命令行参数的方法
May 22 #Python
Python中返回字典键的值的values()方法使用
May 22 #Python
python复制文件的方法实例详解
May 22 #Python
在Python中操作字典之update()方法的使用
May 22 #Python
python判断图片宽度和高度后删除图片的方法
May 22 #Python
You might like
模仿OSO的论坛(五)
2006/10/09 PHP
兼容PHP5的PHP目录管理函数库
2008/07/10 PHP
php自动跳转中英文页面
2008/07/29 PHP
Laravel 模型使用软删除-左连接查询-表起别名示例
2019/10/24 PHP
jQuery学习笔记之jQuery的事件
2010/12/22 Javascript
如何创建一个JavaScript弹出DIV窗口层的效果
2013/09/25 Javascript
js获取当前路径的简单示例代码
2014/01/08 Javascript
超简单JS二级、多级联动的简单实例
2014/02/18 Javascript
jquery实现简单的无缝滚动
2015/04/15 Javascript
js实现显示当前状态的导航效果代码
2015/08/28 Javascript
js时间戳格式化成日期格式的多种方法介绍
2017/02/16 Javascript
shiro授权的实现原理
2017/09/21 Javascript
webstorm添加*.vue文件支持
2018/05/08 Javascript
从零开始用electron手撸一个截屏工具的示例代码
2018/10/10 Javascript
基于vue的video播放器的实现示例
2021/02/19 Vue.js
Python中实现的RC4算法
2015/02/14 Python
Python接收Gmail新邮件并发送到gtalk的方法
2015/03/10 Python
python实现将pvr格式转换成pvr.ccz的方法
2015/04/28 Python
Python爬虫_城市公交、地铁站点和线路数据采集实例
2018/01/10 Python
Python连接Mssql基础教程之Python库pymssql
2018/09/16 Python
Python安装与基本数据类型教程详解
2019/05/29 Python
python3 正则表达式基础廖雪峰
2020/03/25 Python
Python 测试框架unittest和pytest的优劣
2020/09/26 Python
Python使用tkinter制作在线翻译软件
2021/02/22 Python
美国厨房和园艺工具网上商店:Nestneed
2019/08/24 全球购物
车间工艺员岗位职责
2013/12/09 职场文书
简历自我评价怎么写呢?
2014/01/06 职场文书
应届大学生简历中的自我评价
2014/01/15 职场文书
小学数学教学反思
2014/02/02 职场文书
军训感想500字
2014/02/20 职场文书
电子商务系毕业生自荐信
2014/05/29 职场文书
关于环保的标语
2014/06/13 职场文书
2014年租房协议书范本
2014/10/30 职场文书
写给医生的感谢信
2015/01/22 职场文书
民主评议教师党员自我评价
2015/03/04 职场文书
详解Go与PHP的语法对比
2021/05/29 PHP