Go 1.8 的 plugin 使用

vway發表於2019-02-16

Go 1.8 為我們提供了一個建立共享庫的新工具,稱為 Plugins!讓我們來建立和使用一個外掛。 目前的外掛只能在 Linux 和 Darwin (1.8 正式版因為 Bug 已移除支援)上工作。

安裝 1.8 beta1, 不做說明.

建立一個外掛方法到 aplugin.go:

package main

func Add(x, y int) int {
    return x+y
}

func Subtract(x, y int) int {
    return x-y
}

然後構建外掛:

執行下面命令構建外掛:

go build -buildmode=plugin

構建指定檔案外掛 aplugin.go 到 aplugin.so:

go build -buildmode=plugin -o aplugin.so aplugin.go

載入外掛:

p, _ := plugin.Open("./aplugin.so")
//p, err := plugin.Open("./aplugin.so")

call 外掛:

add, _ := p.Lookup("Add")
sub, _ := p.Lookup("Subtract")

使用外掛:

sum := add.(func(int, int) int)(11, 2)
fmt.Println(sum)
subt := sub.(func(int, int) int)(11, 2)
fmt.Println(subt)

另外原始碼測試中有:

go build -buildmode=c-shared

應該可以支援 c 語言構建外掛

相關文章