1. 程式人生 > >用python寫一個簡單的詞法分析器

用python寫一個簡單的詞法分析器

編譯原理老師要求寫一個java的詞法分析器,想了想決定用python寫一個。

目標

能識別出變數,數字,運算子,界符和關鍵字,用excel表打印出來。

有了目標,想想要怎麼實現詞法分析器。

1.先進行預處理,把註釋,多餘的空格,空行去掉。
2.一行一行掃描,行裡逐字掃描,把界符和運算子當做分割符,遇到就先停下開始判斷。

  • 若是以 英文字母、$、下劃線開頭,則可能是變數和關鍵字,在判斷是關鍵字還是變數。
  • 若是數字開頭,則判斷下一位是不是也是數字,直到遇到非數字停止,在把數字取出來。
  • 再來判斷分割符是什麼型別,是界符還是運算子。

在給不同詞新增上識別碼
在用excel表打印出來。

###程式碼實現

1. 用列表建立一個關鍵字表,java關鍵字有50個。

#保留字
key_word = ['abstract','assert','boolean','break','byte',
			'case','catch','char','class','const',
			'continue','default','do','double','else',
			'enum','extends','final','finally','float',
			'for','goto','if','implements','import',
			'instanceof','int','interface','long','native',
			'new','package','private','protected','public',
			'return','short','static','strictfp','super',
			'switch','synchronized','this','throw','throws',
			'transient','try','void','volatile','while']

2.用列表建立一個運算子表。

#運算子
operator = ['+','-','*','/','%','++','--','+=','-=','+=','/=',#算術運算子
			'==','!=','>','<','>=','<=',#關係運算符
			'&','|','^','~','<<','>>','>>>',#位運算子
			'&&','||','!',#邏輯運算子
			'=','+=','-=','*=','/=','%=','<<=','>>=','&=','^=','|=',#賦值運算子
			'?:']#條件運算子

3. 用列表建立一個界符表。

#界符
delimiters = ['{','}','[',']','(',')','.',',',':',';']

####4.預處理
用正則表示式把註釋去掉,在把多餘的空行去掉

#預處理
def filterResource(file,new_file):
	f2 = open(new_file,'w+')
	txt  =  ''.join(open(file,'r').readlines())
	deal_txt = re.sub(r'\/\*[\s\S]*\*\/|\/\/.*','',txt) 
	for line in deal_txt.split('\n'):
			line = line.strip()
			line = line.replace('\\t','')
			line = line.replace('\\n','')
			if not line:
				continue
			else:
				f2.write(line+'\n')
	f2.close()
	return sys.path[0]+'\\'+ new_file

####5.逐行掃描
按照剛剛的思路進行判斷,把每一行的單詞,新增到word_line列表中,最後在把每一行新增到token列表中。

def Scan(file):
	lines = open(file,'r').readlines()
	for line in lines:
		word = ''
		word_line = []
		i = 0
		while i <len(line):
			word +=line[i]
			if line[i]==' ' or  line[i] in delimiters or line[i] in operator:
				if word[0].isalpha() or word[0]=='$' or word[0]=='_':
					word = word[:-1]
					if searchReserve(word):
						# 保留字
						word_line.append({word[:-1]:key_word.index(word)})
					else:
						# 識別符號
						identifier.append({word:-2})
						word_line.append({word:-2})
				# 常數
				elif word[:-1].isdigit():
					word_line.append({word:-1})
				#else:
					#error_word.append(word)
				# 字元是界符
				if line[i] in delimiters:
					word_line.append({line[i]:len(key_word)+delimiters.index(line[i])})
				# 字元是運算子
				elif line[i] in operator:
					s = line[i] +line[i+1]
					if s in operator:
						word_line.append({s:len(key_word)+len(delimiters)+operator.index(s)})
						i +=1
					else:
						word_line.append({line[i]:len(key_word)+len(delimiters)+operator.index(line[i])})
				word = ''
			i+=1
		token.append(word_line)

####6.根據單詞返回是什麼型別
按照保留字–界符–運算子–常數的順序來當識別碼。常數識別碼是-1,識別符號識別碼是-2

def check(number):
	hanzi = ''
	q = len(key_word)
	w = len(delimiters)
	e = len(operator)
	if 0<number<=q:
		hanzi = '保留字'
	elif q<number <= q+w:
		hanzi = '界符'
	elif q+w<number <=q+w+e:
		hanzi = '運算子'
	elif number == -1:
		hanzi ='常數'
	elif number == -2:
		hanzi ='識別符號'
	return hanzi

####8. 用thinker寫一個簡單的介面
匯入

from tkinter import * 
from tkinter.filedialog import askdirectory,askopenfilename
	root = Tk()
	root.title('詞法分析')
	root.resizable(0, 0)
	path = StringVar() 
	Label(root,text = "目標路徑:").grid(row = 0, column = 0) 
	Entry(root, textvariable = path).grid(row = 0, column = 1) 
	Button(root, text = "路徑選擇", command = openfiles).grid(row = 0, column = 2)
	Button(root,text='詞法分析',command= open_excel).grid(row = 0,column = 3)
	root.mainloop()

開啟檔案

def openfiles():
	fname = askopenfilename(title='開啟檔案', filetypes=[('All Files', '*')])
	path.set(fname)

簡單的介面

9.匯入到excel表中

需要安裝包xwings

pip install xwings

匯入

import xlwings as xw

把token裡的單詞,按照 單詞 ---- 識別碼 —型別 列印到excel表中

def open_excel():
	# 預處理
	row,col=0,0
	if path.get()!='':

		txt = java_analysis.filterResource(path.get(),new_file)
		print(txt)
		#掃描
		java_analysis.Scan(txt)
		app = xw.App(visible=True,add_book=False)
		wb =app.books.open(sys.path[0]+'\\'+'test.xlsx')
		sheet = wb.sheets.active
		sheet.clear() 
		print(java_analysis.token)
		for i in range(len(java_analysis.token)):
			sheet[row,0].value = '第'+str(i+1)+'行'
			row +=1
			for word in java_analysis.token[i]:
				for k,w in word.items():
					sheet[row,3].value = k
					sheet[row,5].value = w
					sheet[row,7].value = java_analysis.check(w)
				row +=1
		sheet.autofit()#整個sheet自動調整
		#wb.save()

最後就像這樣效果

######程式碼很爛,不過也算是大致明白詞法分析器了。