Python實現(xiàn)刪除Android工程中的冗余字符串
Android提供了一套很方便的進行資源(語言)國際化機制,為了更好地支持多語言,很多工程的翻譯往往會放到類似crowdin這樣的平臺上。資源是全了,但是還是會有一些問題。
哪些問題
以下使用一些語言進行舉例。其中values為工程默認的資源。
1.某語言的資源和某語言限定區(qū)域的資源之間。如values-fr-rCA存在于values-fr相同的字符串,這種表現(xiàn)最為嚴重。
2.某語言的資源和默認的資源之間。values-fr存在與values相同的字符串,可能原因是由于values-fr存在未翻譯字符串導(dǎo)致
為什么要去重
潔癖,容不下半點冗余。
解決思路
1.如果values-fr-rCA存在于values-fr相同的字符串,去除values-fr-rCA中的重復(fù)字符串,保留values-fr。這樣可以保證在values-fr-rCA下也可以正確讀取到資源。
2.如果values-fr存在與values相同的字符串。如去除values-fr中得重復(fù)字符串,保留values的條目。
Py腳本
#!/usr/bin/env python
# coding=utf-8
from os import listdir,path, system
from sys import argv
try:
import xml.etree.cElementTree as ET
except ImportError:
import xml.etree.ElementTree as ET
def genRegionLangPair(filePath):
basicLanguage = None
if ('values' in filePath) :
hasRegionLimit = ('r' == filePath[-3:-2])
if (hasRegionLimit):
basicLanguage = filePath[0:-4]
if (not path.exists(basicLanguage)) :
return None
belongsToEnglish = ("values-en" in basicLanguage)
if (belongsToEnglish):
#Compare with the res/values/strings.xml
return (path.dirname(basicLanguage) + '/values/strings.xml', filePath + "/strings.xml")
else:
return (basicLanguage + '/strings.xml', filePath + "/strings.xml")
return None
def genLangPair(filePath):
def shouldGenLanPair(filePath):
if (not 'values' in filePath ):
return False
if('dpi' in filePath):
return False
if ('dimes' in filePath):
return False
if ('large' in filePath):
return False
return True
if(shouldGenLanPair(filePath)):
basicLanguage = path.dirname(filePath) + '/values/strings.xml'
targetLanguage = filePath + '/strings.xml'
if (not path.exists(targetLanguage)):
return None
if (not path.samefile(basicLanguage,targetLanguage)) :
return (basicLanguage, targetLanguage)
return None
def genCompareList(filePath):
compareLists = []
for file in listdir(filePath):
regionPair = genRegionLangPair(filePath + '/' + file)
if (None != regionPair):
compareLists.append(regionPair)
languagePair = genLangPair(filePath + '/' + file)
if (None != languagePair) :
compareLists.append(languagePair)
return compareLists
def getXmlEntries(filePath):
root = ET.ElementTree(file=filePath).getroot()
entries = {}
for child in root:
attrib = child.attrib
if (None != attrib) :
entries[attrib.get('name')] = child.text
print 'xmlEntriesCount',len(entries)
return entries
def rewriteRegionFile(sourceEntries, filePath):
if (not path.exists(filePath)):
return
ET.register_namespace('xliff',"urn:oasis:names:tc:xliff:document:1.2")
tree = ET.ElementTree(file=filePath)
root = tree.getroot()
print root
totalCount = 0
removeCount = 0
unRemoveCount = 0
print len(root)
toRemoveList = []
for child in root:
totalCount = totalCount + 1
attrib = child.attrib
if (None == attrib):
continue
childName = attrib.get('name')
if (sourceEntries.get(childName) == child.text):
removeCount = removeCount + 1
toRemoveList.append(child)
else:
unRemoveCount = unRemoveCount + 1
print childName, sourceEntries.get(childName), child.text
print filePath,totalCount, removeCount,unRemoveCount
for aItem in toRemoveList:
root.remove(aItem)
if (len(root) != 0 ):
tree.write(filePath, encoding="UTF-8")
else:
command = 'rm -rf %s'%(path.dirname(filePath))
print command
system(command)
def main(projectDir):
lists = genCompareList(projectDir + "/res/")
for item in lists:
print item
src = item[0]
dest = item[1]
rewriteRegionFile(getXmlEntries(src),dest)
if __name__ == "__main__":
if (len(argv) == 2) :
main(argv[1])
如何使用
python removeRepeatedStrings.py your_android_project_root_dir
相關(guān)文章
Python操作MongoDB的教程詳解(插,查,改,排,刪)
MongoDB是一個基于分布式文件存儲的數(shù)據(jù)庫。是一個介于關(guān)系數(shù)據(jù)庫和非關(guān)系數(shù)據(jù)庫之間的產(chǎn)品,是非關(guān)系數(shù)據(jù)庫當中功能最豐富,最像關(guān)系數(shù)據(jù)庫的。本文將詳細和大家聊聊Python操作MongoDB的方法,需要的可以參考一下2022-09-09
零基礎(chǔ)寫python爬蟲之抓取百度貼吧并存儲到本地txt文件改進版
前面已經(jīng)發(fā)了一篇關(guān)于百度貼吧抓取的代碼,今天我們來看下代碼的改進版,參考了上篇抓取糗事百科的思路,給需要的小伙伴們參考下吧2014-11-11
Python報錯TypeError: object of type ‘gener
在Python開發(fā)的復(fù)雜世界中,報錯信息就像神秘的謎題,困擾著開發(fā)者和環(huán)境配置者,其中,TypeError: object of type ‘generator’ has no len()這個報錯,常常在不經(jīng)意間打亂我們的開發(fā)節(jié)奏,本文讓我們一起深入探究這個報錯問題,為Python開發(fā)之路掃除障礙2024-10-10
python單向循環(huán)鏈表原理與實現(xiàn)方法示例
這篇文章主要介紹了python單向循環(huán)鏈表原理與實現(xiàn)方法,結(jié)合實例形式詳細分析了Python單向循環(huán)鏈表概念、原理、定義及使用方法,需要的朋友可以參考下2019-12-12
python利用pandas分析學(xué)生期末成績實例代碼
pandas是數(shù)據(jù)分析師最常用的工具之一,這篇文章主要給大家介紹了關(guān)于python如何利用pandas分析學(xué)生期末成績的相關(guān)資料,文中給出了詳細的實現(xiàn)方法,需要的朋友可以參考下2021-07-07
Python算法之求n個節(jié)點不同二叉樹個數(shù)
本文先向大家分享了建立二叉樹的簡單代碼,其次介紹了Python計算n個節(jié)點不同二叉樹個數(shù)的問題及實現(xiàn)代碼示例,具有一定參考價值,需要的朋友可以了解下。2017-10-10

