需求驱动学习之Python

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

需求驱动学习之Python(如何编写Python脚本替换文件中的多行字符?)2010-12-0823:40by吴秦,3636visits,收藏,编辑当一个人太执着于某一个东西的时候,会错过很多美好的东西!Python值得学习的一个工具,不要局限在当前使用的语言中。在大概3个月之前,Python对我来说一直是个迷。然而,就在3个月前我经理给我一个任务——删除(替换)所有项目源码文件中包含特定几行内容的所有注释。整个项目源码的大小有1G,在Linux服务器(中高档)上编译需要半个多小时,可见代码量之大,不可能手动去一个一个改。肯定得用脚本去处理,于是我想到了Python。在这之前没有接触过Python,花了2个星期一顿恶补之后,总算顺利交差了。一直很想和大家分享一下碰到的问题及我如何解决的(可能我的方案并不好,但是他能够解决我的问题),但一直拖到现在是因为我感觉我还对Python的了解还不够。因为要在短时间内完成上面交下来的任务,在学习Python的时候,都是走马观花,对解决自己的问题不相关的直接跳过,看资料也静不下心,脑海里都是问题。前几天我静下心把Python的书从头到尾浏览了一遍,感觉现在是时候要进行总结了。本文的主要内容如下:问题描述解题思路代码实现Python的特点1、问题描述项目源码很大,属于C/C++混合的那种,编程风格也很多样,有'.c'、'.cc'、'cpp'、'.h'、'.hh'等文件。我要完成的任务是:把包含特定几行内容的注释删掉,如(声明:下面的内容只是我随便举的一个例子,项目源码中不涉及下面的内容。)/**Copyright2002SunMicrosystems,Inc.Allrightsreserved.**Redistributionanduseinsourceandbinaryforms,withorwithout*modification,arepermittedprovidedthatthefollowingconditions*aremet:**-Redistributionsofsourcecodemustretaintheabovecopyright*notice,thislistofconditionsandthefollowingdisclaimer.**-Redistributioninbinaryformmustreproducetheabovecopyright*notice,thislistofconditionsandthefollowingdisclaimerin*thedocumentationand/orothermaterialsprovidedwiththe*distribution.**NeitherthenameofSunMicrosystems,Inc.orthenamesof*contributorsmaybeusedtoendorseorpromoteproductsderived*fromthissoftwarewithoutspecificpriorwrittenpermission.*/但是格式有很多种,如有的在“Copyright2002SunMicrosystems,Inc.Allrightsreserved.”前面有一段关于本源码文件的描述、有的在“fromthissoftwarewithoutspecificpriorwrittenpermission.”后面有一段关于本源码文件的描述、有的是C++风格的注释用//,而不是“/**/”、还有的没有“*-Redistributioninbinaryformmustreproducetheabovecopyright*notice,thislistofconditionsandthefollowingdisclaimerin*thedocumentationand/orothermaterialsprovidedwiththe*distribution.”等等还有其他一些。总之一句话,我要删除的包含特定几行内容的注释有很多中格式!于是我决定要用Python来编写脚本处理。要匹配特定的内容,我想到了用正则表达式,但苦于不知道如何去构建正则来匹配上面描述的内容(您知道的话,希望能够告诉我)!我只有另辟路径了。2、解题思路我的思路——要删除所有项目源码中包含特定几行内容的注释,脚本要满足以下几点功能:脚本要能够遍历所有的源码文件('.c'、'.cc'、'cpp'、'.h'、'.hh'),并只处理上面的几种类型的文件找出包含特定几行内容的注释,并删除之能够处理一些特殊情况,如软连接文件上面的几点的处理步骤可以表示如下:Step1:输入要处理源码文件夹名,或者源码文件名;Step2:如果是文件名,检查文件的类型是否为'.c'、'.cc'、'cpp'、'.h'、'.hh',否则不处理;Step3:检查文件是否是软连接,如果是软连接则不处理;Step4:查找文件中是否存在匹配的注释,存在则删掉,否则不处理;Step5:如果是文件夹,则对文件夹中的每个文件、文件夹进行处理,转Step2.思路很明确,关键是如何查找文件中是否包含匹配的内容,并删除!还有就是,对于一个没用过Python等脚本语言的人来说,如何编码实现也是一个问题!如何确定注释是否为包含特定几行内容的注释?我的思路如下:(因为正则表达式学的不好,只有通过下面的方法了)如果是/*、//则记录下当前的文件行数,即行号startLine以行为单位查找是否存在特定的几行,如“Copyright2002SunMicrosystems,Inc.Allrightsreserved.”等等直到遇到*/,或注释结束了(对于//)。如果存在,则记录下注释结束的行号endLine最后,删掉这从startLine~endLine的内容。3、代码实现废话我不多说了,直接按照上面的实例实现代码,如果你对Python不熟,请参阅相关资料。#!/usr/bin/envpython#Filename:comment.pyimportos,sys,fileinput#-------------------------------------------------------------defusage():printu'''help:comment.pyfilename|dirname[dirname]:Option,selectadirectorytooperate[filename]:Option,selectafiletooperateExample:pythoncomment.py/home/saylor/test'''#--------------------------------------------------------------defcommentFile(src,fileList):'''description:commentfilesparamsrc:Operatefilename'''#iffileexist?ifnotos.path.exists(src):print'Error:file-%sdoesn\'texist.'%srcreturnFalseifos.path.islink(src):print'Error:file-%sisjustalink,willnothandleit.'returnFalsefiletype=(os.path.splitext(src))[1]ifnotfiletypein['.c','.h']:returnFalsetry:ifnotos.access(src,os.W_OK):os.chmod(src,0664)except:print'Error:youcannotchang%s\'smode.'%srctry:inputf=open(src,'r')outputfilename=src+'.tmp'outputf=open(outputfilename,'w')beginLine=0endLine=100000000isMatched=False#-----findthebeginLineandendLine-------------------foreachlineinfileinput.input(src):ifeachline.find('/*')=0:beginLine=fileinput.lineno()ifeachline.find('Copyright2002SunMicrosystems,Inc.Allrightsreserved.')=0:isMatched=Trueifeachline.find('*/')=0andisMatched:endLine=fileinput.lineno()break#-----deletethecontentbetweenbeginLineandendLine-----printbeginLine,endLinelineNo=1foreachlineininputf:iflineNobeginLine:printeachlineoutputf.write(eachline)eliflineNoendLine:printeachlineoutputf.write(eachline)lineNo=lineNo+1inputf.close()outputf.close()os.rename(outputfilename,src)fileList.append(src)except:print'Error:unexcepterror.'inputf.close()outputf.close()returnTrue#--------------------------------------------------------------defcommentDir(src,fileList):'''description:commentfilesinsrc(dir)paramsrc:operatefilesinsrc(dir)'''#ifdirexist?ifnotos.path.exists(src):print'Error:dir-%sisnotexist.'%s(src)returnFalsefilelists=os.listdir(src)foreachfileinfilelists:eachfile=src+'/'+eachfileifos.path.isdir(eachfile):commentDir(eachfile,fileList)elifos.path.isfile(eachfile):commentFile(eachfile,fileList)returnTrue#--------------------------------------------------------------defmain():iflen(sys.argv)2:usage()sys.exit(1)src=sys.argv[1]ifos.path.isdir(src):dire=os.path.abspath(src)dirFlag=Trueelifos.path.isfile(src):fl=os.path.abspath(src)dirFlag=Falseelse:print'Error'fileList=[]ifdirFlag:commentDir(dire,fileList)else:commentFile(fl,fileList)iffileList:print'Successfulhandlefile:...'foreachfileinfileList:printeachfileprint'Done'returnTrue#----------------------------------------------------

1 / 8
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功