有部分老项目是在Eclipse环境开发的,最近公司要求应用瘦身,老项目也在其中。如果在 AS 下开发就不会有这样的问题,但是在 Eclipse 中就不太方便了,于是就写了这个脚本。第一次用Python写东西,代码里可能会有许多 Java、C 这样的痕迹,见谅。
使用方法
将 python 目录下的 delUnused.py 放到项目目录下,然后直接运行即可。
代码说明
利用lint进行代码审查
lint --check UnusedResources --xml [resultPath] [projectPath]
命令含义是检查项目中未使用的资源文件,并且用xml格式输出结果,需要提供检查结果输出的路径和项目路径。在脚本中已经自动提供了。
def exec_lint_command(): cmd = 'lint --check UnusedResources --xml %s %s' % (_get_lint_result_path(), _get_project_dir_path()) p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE) c = p.stdout.readline().decode() while c: print(c) c = p.stdout.readline().decode()
这里给一个检查结果实例吧
<issue id="UnusedResources" severity="Warning" message="The resource `R.layout.activity_all_player` appears to be unused" category="Performance" priority="3" summary="Unused resources" explanation="Unused resources make applications larger and slow down builds." errorLine1="<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" " errorLine2="^" quickfix="studio"> <location file="res\layout\activity_all_player.xml" line="2" column="1"/> </issue>
我们能用到的信息有 id message location 等。
解析检查结果
我是利用 minidom 解析的,具体的解析方法不多说,参考。
获取根节点
def _parse_lint_report(): file = minidom.parse(_get_lint_result_path()) root = file.documentElement beans = _parse_xml(root) return beans
解析第一层子节点
def _parse_xml(element, beans=None): if beans is None: beans = [] for node in element.childNodes: if node.nodeName == ISSUE_KEY and node.nodeType is node.ELEMENT_NODE: lint_bean = _LintBean() lint_bean.id = node.getAttribute(ID_KEY) lint_bean.severity = node.getAttribute(SEVERITY_KEY) lint_bean.message = node.getAttribute(MESSAGE_KEY) _parse_location(node, lint_bean) lint_bean.print() beans.append(lint_bean) return beans
解析location 子节点
def _parse_location(node, bean): if not node.hasChildNodes(): return for child in node.childNodes: if child.nodeName == LOCATION_KEY and node.nodeType is node.ELEMENT_NODE: bean.location.file = child.getAttribute(LOCATION_FILE_KEY) bean.location.line = child.getAttribute(LOCATION_LINE_KEY) bean.location.column = child.getAttribute(LOCATION_COLUMN_KEY)
用Java习惯了,解析数据喜欢用Bean
class _Location(object): def __init__(self): self.file = '' self.line = 0 self.column = 0 class _LintBean(object): def __init__(self): self.id = '' self.severity = '' self.message = '' self.location = _Location() def print(self): print('find a %s, cause: %s. filePath: %s. line: %s' % ( self.id, self.message, self.location.file, self.location.line))
处理无用资源
解析完数据,可以得到三种资源:
- Drawable,就一个文件,可以直接删
- xml中的一个节点,但是这个xml中就这一个节点,直接删文件
- xml中的一个节点,这个xml中有多个节点,删除节点
对这三种资源进行区分和删除
for lint in lint_result: total_unused_resource += 1 if lint.id != 'UnusedResources': continue if lint.location.line != '': is_single = _is_single_node(lint.location.file) if is_single: total_del_file += 1 del_file(lint.location.file) else: total_remove_attr += 1 node_name = get_node_name(lint.message) del_node(lint.location.file, node_name) else: total_del_file += 1 del_file(lint.location.file)
删除文件
def del_file(file_path): try: os.remove(file_path) print('remove %s success.' % file_path) except FileNotFoundError: print('remove %s error.' % file_path)
删除节点:
def del_node(file_path, node_name): file = minidom.parse(file_path) root = file.documentElement nodes = root.childNodes for node in nodes: if node.nodeType in (node.TEXT_NODE, node.COMMENT_NODE): continue if node_name == node.getAttribute('name'): root.removeChild(node) file.writexml(open(file_path, 'w', encoding='UTF-8'), encoding='UTF-8') print('remove %s, node_name:%s. success!' % (file_path, node_name)) return
总结
以上所述是小编给大家介绍的使用python 和 lint 删除项目无用资源的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月26日
2024年11月26日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]