利用抽象文法樹檢查Python中“未定義”的變數名

來源:互聯網
上載者:User

其實,Python是一種真正的動態語言,代碼中的變數名本沒有“聲明”或“定義”的說法,語言本身也沒有提供聲明或定義變數的特殊文法(global除外)。對程式員來說,這是一種好處,也是一種危險,比如像下面這段代碼:

count = total = 1
delta = 0.7
while total < 1000:
  total += delta * (count * count + delta * delta)
  dalta = delta * 1.1
  count *= dalta
print total

代碼後面的dalta是delta拼字錯誤的結果,程式可以正確運行,也可以通過pychecker工具的檢查,但其輸出顯然與預期的正確結果相差甚遠。不少人認為像Perl中的strict或Visual Basic中的Option Explicit可以協助程式員減少出現類似錯誤的幾率(儘管我自己並不這麼想),但在Python中,因為沒有顯式定義或聲明變數名的文法,這種強制檢查似乎較難下手——網上可以查到一些解決方案,但或者比較複雜,或者是用__slots__,decorator這樣的機制來解決部分問題,用起來不太方便。

也許,利用parser或compiler包提供的抽象文法樹(Abstract Syntax Tree)可以比較簡單地解決這個問題。我大致寫了一段名為strict.py的代碼。為了將自己的程式改為強制聲明變數的“安全的程式碼”,我們只需要按照strict.py的要求,用 __decl__ = "name1 name2 ..." 這樣簡單的文法在使用前預先聲明變數名即可。例如,可以在上面那段危險代碼的開頭加上:

__decl__ = "delta total count"

然後用strict.py檢查這段代碼(假設其檔案名稱為test.py):

python strict.py test.py

我們可以在運行結果中看到:

File 'test.py', line 6: name 'dalta' is not declared.

瞧,很容易就把拼字錯誤的變數名 dalta 給找出來了——因為 dalta 這個名字沒有預先“聲明”。

strict.py也可以檢查Class或Function等代碼塊內部的局部名字( __decl__ = "..." 這樣的聲明語句可以用在代碼中的任何位置),可以識別from ... import、global或函數參數表等引入的名字。像下面這樣的代碼:

__decl__ = 'name1 name2 name3'

name1 = 1
name2 = 'Jack'
name3 = name1 + 3

def foo():
  global name1
  __decl__ = 'local_name1 local_name2'
  name1 += 4
  local_name1 = 1.2
  local_name2 = 'Mike'
  undeclared = 9

strict.py可以很快找出其中的undeclared是“未聲明”的名字。

strict.py只檢查那些作為賦值目標的名字(l-value),對於讀取某個名字,調用某個函數名,通過 obj.attr 這樣的文法訪問對象的屬性或成員等等情況,strict.py沒有必要考慮——因為如果這些情況中出現了未定義的名稱,編譯或運行程式時就會報出錯誤來,不會造成潛在的危險隱患。

因為只是樣本性質的代碼,我只在Python 2.4.3的環境下測試過strict.py,也沒有做更多複雜的測試。這段代碼一定還有許多需要改進之處。先把strict.py的代碼羅列在下面吧:

strict.py
------------------------------------------------------

import sys
import compiler

declaration_flag = "__decl__"

def find_undeclared_names(ast, frames, is_decl):

    next_frames = frames

    def add_name(name):
        frames[-1][name] = True

    def find_name(name):
        return frames[-1].has_key(name)

    def get_alias(name_pair):
        if name_pair[1] is None:
            return name_pair[0]
        else:
            return name_pair[1]

    if ast.__class__.__name__ == "AssName":
        if not is_decl[0] and ast.name == declaration_flag:
            is_decl[0] = True
        elif not find_name(ast.name):
            yield ast.name, ast.lineno

    elif ast.__class__.__name__ == "Global":
        map(add_name, ast.names)

    elif ast.__class__.__name__ == "From":
        if (ast.names[0][0] == "*"):
            mod = __import__(ast.modname)
            map(add_name, filter(lambda x:not x.startswith('_'), dir(mod)))
        else:
            map(add_name, map(get_alias, ast.names))

    elif ast.__class__.__name__ == "Const":
        if is_decl[0] and ast.value.__class__.__name__ == "str":
            map(add_name, ast.value.split())
            is_decl[0] = False

    elif ast.__class__.__name__ == "Function":
        next_frames = frames + [dict(map(lambda x: (x, True), ast.argnames))]

    elif ast.__class__.__name__ == "Class":
        next_frames = frames + [{}]

    for childNode in ast.getChildNodes():
        for x in find_undeclared_names(childNode, next_frames, is_decl):
            yield x

if __name__ == "__main__":
    if len(sys.argv) != 2:
        print "Usage: python strict.py <python-source-file>"
    else:
        for name, line_no in /
                find_undeclared_names(compiler.parseFile(sys.argv[1]),
                                      [{}],
                                      [False]):
            print "File '%s', line %d: name '%s' is not declared." % /
                  (sys.argv[1], line_no, name)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.