首先,定義兩個(gè)存儲(chǔ)統(tǒng)計(jì)結(jié)果的列表:
rawCountInfo=[0,0,0,0,0]
detailCountInfo=[]
其中,rawCountInfo存儲(chǔ)粗略的文件總行數(shù)信息,列表元素依次為文件行、代碼行、注釋行和空白行的總數(shù),以及文件數(shù)目。detailCountInfo存儲(chǔ)詳細(xì)的統(tǒng)計(jì)信息,包括單個(gè)文件的行數(shù)信息和文件名,以及所有文件的行數(shù)總和。這是一個(gè)多維列表,存儲(chǔ)內(nèi)容示例如下:
[['line.c',[33,19,15,4]],['test.c',[44,34,3,7]]]
以下將給出具體的實(shí)現(xiàn)代碼。為避免大段粘貼代碼,以函數(shù)為片段簡(jiǎn)要描述。
defCalcLines(lineList):
lineNo,totalLines=0,len(lineList)
codeLines,commentLines,emptyLines=0,0,0
whilelineNo iflineList[lineNo].isspace():#空行 emptyLines+=1;lineNo+=1;continue regMatch=re.match('^([^/]*)/(/|*)+(.*)$',lineList[lineNo].strip()) ifregMatch!=None:#注釋行 commentLines+=1 #代碼&注釋混合行 ifregMatch.group(1)!='': codeLines+=1 elifregMatch.group(2)=='*' andre.match('^.**/.+$',regMatch.group(3))!=None: codeLines+=1 #行注釋或單行塊注釋 if'/*'notinlineList[lineNo]or'*/'inlineList[lineNo]: lineNo+=1;continue #跨行塊注釋 lineNo+=1 while'*/'notinlineList[lineNo]: iflineList[lineNo].isspace(): emptyLines+=1 else: commentLines+=1 lineNo=lineNo+1;continue commentLines+=1#'*/'所在行 else:#代碼行 codeLines+=1 lineNo+=1;continue return[totalLines,codeLines,commentLines,emptyLines] CalcLines()函數(shù)基于C語(yǔ)法判斷文件行屬性,按代碼、注釋或空行分別統(tǒng)計(jì)。參數(shù)lineList由readlines()讀取文件得到,讀到的每行末尾均含換行符。strip()可剔除字符串首尾的空白字符(包括換行符)。當(dāng)通過(guò)print輸出文件行內(nèi)容時(shí),可采用如下兩種寫(xiě)法剔除多余的換行符: print'%s'%(line),#注意行末逗號(hào) print'%s'%(line.strip()) 行尾包含換行符的問(wèn)題也存在于readline()和read()調(diào)用,包括forlineinfile的語(yǔ)法。對(duì)于read()調(diào)用,可在讀取文件后split('')得到不帶換行符的行列表。注意,調(diào)用readlines()和read()時(shí),會(huì)讀入整個(gè)文件,文件位置指示器將指向文件尾端。此后再調(diào)用時(shí),必須先通過(guò)file.seek(0)方法返回文件開(kāi)頭,否則讀取的內(nèi)容為空。 defCountFileLines(filePath,isRaw=True): fileExt=os.path.splitext(filePath) iffileExt[1]!='.c'andfileExt[1]!='.h':#識(shí)別C文件 return try: fileObj=open(filePath,'r') exceptIOError: print'Cannotopenfile(%s)forreading!',filePath else: lineList=fileObj.readlines() fileObj.close() ifisRaw: globalrawCountInfo rawCountInfo[:-1]=[x+yforx,yinzip(rawCountInfo[:-1],CalcLines(lineList))] rawCountInfo[-1]+=1 else: detailCountInfo.append([filePath,CalcLines(lineList)]) CountFileLines()統(tǒng)計(jì)單個(gè)文件的行數(shù)信息,其參數(shù)isRaw指示統(tǒng)計(jì)報(bào)告是粗略還是詳細(xì)的。對(duì)于詳細(xì)報(bào)告,需要向detailCountInfo不斷附加單個(gè)文件的統(tǒng)計(jì)結(jié)果;而對(duì)于詳細(xì)報(bào)告,只需要保證rawCountInfo的元素值正確累加即可。 defReportCounterInfo(isRaw=True): #Python2.5版本引入條件表達(dá)式(if-else)實(shí)現(xiàn)三目運(yùn)算符,低版本可采用and-or的短路特性 #print'FileLinesCodeLinesCommentLinesEmptyLines%s'%(''ifisRawelse'FileName') print'FileLinesCodeLinesCommentLinesEmptyLines%s'%(notisRawand'FileName'or'') ifisRaw: print'%-11d%-11d%-14d%-12d'%(rawCountInfo[0],rawCountInfo[1], rawCountInfo[2],rawCountInfo[3],rawCountInfo[4]) return total=[0,0,0,0] #對(duì)detailCountInfo按第一列元素(文件名)排序,以提高輸出可讀性 #importoperator;detailCountInfo.sort(key=operator.itemgetter(0)) detailCountInfo.sort(key=lambdax:x[0])#簡(jiǎn)潔靈活,但不如operator高效 foritemindetailCountInfo: print'%-11d%-11d%-14d%-12d%s'%(item[1][0],item[1][1],item[1][2],item[1][3],item[0]) total[0]+=item[1][0];total[1]+=item[1][1] total[2]+=item[1][2];total[3]+=item[1][3] print'%-11d%-11d%-14d%-12d'%(total[0],total[1],total[2],total[3],len(detailCountInfo)) ReportCounterInfo()輸出統(tǒng)計(jì)報(bào)告。注意,詳細(xì)報(bào)告輸出前,先按文件名排序。 defCountDirLines(dirPath,isRawReport=True): ifnotos.path.exists(dirPath): printdirPath+'isnon-existent!' return ifnotos.path.isdir(dirPath): printdirPath+'isnotadirectory!' return forroot,dirs,filesinos.walk(dirPath): forfileinfiles: CountFileLines(os.path.join(root,file),isRawReport) ReportCounterInfo(isRawReport) CountDirLines()統(tǒng)計(jì)當(dāng)前目錄及其子目錄下所有文件的行數(shù)信息,并輸出統(tǒng)計(jì)報(bào)告。注意,os.walk()不一定按字母順序遍歷文件。在作者的WindowsXP主機(jī)上,os.walk()按文件名順序遍歷;而在LinuxRedhat主機(jī)上,os.walk()以"亂序"遍歷。 最后,添加簡(jiǎn)單的命令行處理: if__name__=='__main__': DIR_PATH=r'E:PyTestlctest' iflen(sys.argv)==1:#腳本名 CountDirLines(DIR_PATH) sys.exit() iflen(sys.argv)>=2: ifint(sys.argv[1]): CountDirLines(DIR_PATH,False) else: CountDirLines(DIR_PATH) sys.exit() 以上內(nèi)容為大家介紹了PythonC代碼統(tǒng)計(jì)工具的代碼實(shí)現(xiàn),希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。