cosmos72 / gomacro

Interactive Go interpreter and debugger with REPL, Eval, generics and Lisp-like macros

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can not import go rod

opened this issue · comments

On Linux it works for me:

// Welcome to gomacro. Type :help for help, :copy for copyright and license.
// This is free software with ABSOLUTELY NO WARRANTY.
gomacro> import "github.com/go-rod/rod"
// debug: running "go get github.com/go-rod/rod" ...
go: downloading github.com/go-rod/rod v0.106.5
go: downloading github.com/ysmood/goob v0.4.0
go: downloading github.com/ysmood/gson v0.7.1
go: downloading github.com/ysmood/leakless v0.7.0
go: added github.com/go-rod/rod v0.106.5
go: added github.com/ysmood/goob v0.4.0
go: added github.com/ysmood/gson v0.7.1
go: added github.com/ysmood/leakless v0.7.0
// debug: running "go mod tidy" ...
go: downloading github.com/ysmood/gotrace v0.6.0
go: downloading github.com/ysmood/got v0.28.2
// debug: compiling "/home/max/go/src/gomacro.imports/github.com/go-rod/rod/rod.go" ...
gomacro> rod
{rod "github.com/go-rod/rod", 17 binds, 35 types}       // *fast.Import

Which errors are you getting (and on what OS and Go version) ?

how about import steath and "github.com/go-rod/rod/lib/launcher"

Importing either one works, but they cannot be both imported together in gomacro:

// Welcome to gomacro. Type :help for help, :copy for copyright and license.
// This is free software with ABSOLUTELY NO WARRANTY.
gomacro> import "github.com/go-rod/stealth"
// debug: running "go get github.com/go-rod/stealth" ...
go: downloading github.com/go-rod/stealth v0.4.5
go: downloading github.com/go-rod/rod v0.102.1
go: downloading github.com/ysmood/goob v0.3.1
go: downloading github.com/ysmood/gson v0.6.4
go: added github.com/go-rod/rod v0.102.1
go: added github.com/go-rod/stealth v0.4.5
go: added github.com/ysmood/goob v0.3.1
go: added github.com/ysmood/gson v0.6.4
go: added github.com/ysmood/leakless v0.7.0
// debug: running "go mod tidy" ...
go: downloading github.com/ysmood/got v0.15.1
go: downloading github.com/ysmood/gotrace v0.2.2
// debug: compiling "/home/max/go/src/gomacro.imports/github.com/go-rod/stealth/stealth.go" ...
gomacro> stealth
{stealth "github.com/go-rod/stealth", 4 binds, 0 types} // *fast.Import

gomacro> import "github.com/go-rod/rod/lib/launcher"
// debug: running "go get github.com/go-rod/rod/lib/launcher" ...
go: downloading github.com/go-rod/rod v0.106.8
go: added github.com/go-rod/rod v0.106.8
go: added github.com/ysmood/gson v0.7.1
go: added github.com/ysmood/leakless v0.7.0
// debug: running "go mod tidy" ...
go: downloading github.com/ysmood/got v0.29.1
// debug: compiling "/home/max/go/src/gomacro.imports/github.com/go-rod/rod/lib/launcher/launcher.go" ...
error loading plugin "/home/max/go/src/gomacro.imports/github.com/go-rod/rod/lib/launcher/launcher.so": plugin.Open("/home/max/go/src/gomacro.imports/github.com/go-rod/rod/lib/launcher/launcher"): plugin was built with a different version of package github.com/ysmood/gson

The reason can be deduced by the debug messages:

  • github.com/go-rod/stealth depends on github.com/ysmood/gson v0.6.4
  • github.com/go-rod/rod/lib/launcher depends on github.com/ysmood/gson v0.7.1

and gomacro is not smart enough to resolve such version conflict.

I have improved the behavior when importing multiple packages that depend on different versions of the same package - as for your github.com/go-rod/stealth and github.com/go-rod/rod/lib/launcher above:

Starting from commit f985fc7, if you import multiple packages in a single declaration - as for example

import (
    "github.com/go-rod/stealth"
    "github.com/go-rod/rod/lib/launcher"
)

then a single plugin will be prepared, compiled and loaded, using go mod tidy to resolve any dependency version conflict.