Go+Python雙語言混合開發(fā)
Go代碼-“ CheckSignatures”功能
我不會在這里分解所有Go源代碼 慕課底部評,如果您好奇地看到所有這些,請查看此源代碼文件。
現(xiàn)在要看的代碼的重要部分是CheckSignatures
函數(shù)的定義。
CheckSignatures函數(shù)定義
// CheckSignatures calculates sha1 signatures for files in rootDir and compare// them with signatures found at "sha1sum.txt" in the same directory. It'll// return an error if one of the signatures don't matchfunc CheckSignatures(rootDir string) error {
此函數(shù)將為每個文件啟動一個goroutine,以檢查所計算的給定文件的sha1簽名是否與“ sha1sum.txt”中的簽名相匹配。如果一個或多個文件不匹配,該函數(shù)將返回錯誤。
將Go代碼導(dǎo)出到共享庫
隨著GO代碼編寫和測試的完成,我們可以繼續(xù)將其導(dǎo)出到共享庫。
我們將按照以下步驟將Go源代碼編譯成共享庫,以便Python可以調(diào)用它:
導(dǎo)入
C
包(又名cgo)在我們需要公開的每個函數(shù)上使用
//export
指令具有空
main
功能
標簽: