Giter Site home page Giter Site logo

Anonymous Invocation about do HOT 9 CLOSED

samber avatar samber commented on July 20, 2024
Anonymous Invocation

from do.

Comments (9)

samber avatar samber commented on July 20, 2024

Hi @hiendaovinh

Please check examples: https://github.com/samber/do/blob/master/examples/interface/main.go

from do.

hiendaovinh avatar hiendaovinh commented on July 20, 2024

Well, I don't think the example works exactly like the proverbs.
The provider returns interface: https://github.com/samber/do/blob/master/examples/interface/car.go#L18

from do.

samber avatar samber commented on July 20, 2024

Can you write a quick demo of the API you expect?

from do.

hiendaovinh avatar hiendaovinh commented on July 20, 2024

Hi, what I am expecting is that

type carImplem struct {
	Engine Engine
	Wheels []*Wheel
}

func (c *carImplem) Start() {
	println("vroooom")
}

// Provide a concrete type
// at main.go
do.Provide(injector, &carImplem{
	Engine: engine,
	Wheels: wheels,
})

// A thousand years later
// at my-service.go
type Car interface {
	Start()
}
car := do.MustInvoke[Car](injector)

I tried to follow https://github.com/golang/go/wiki/CodeReviewComments#interfaces although I understand that with do's generic resolving, it's currently impossible.

from do.

samber avatar samber commented on July 20, 2024

Why not using do.ProvideNamed and do.InvokeNamed ?

from do.

hiendaovinh avatar hiendaovinh commented on July 20, 2024

It won't work either because of the type hinting.
E.g. I will provide/resolve named wheels

func NewWheel() *Wheel {
        return &Wheel{}
}

// main.go
do.ProvideNamedValue(injector, "wheel-1", NewWheel())
do.ProvideNamedValue(injector, "wheel-2", NewWheel())
do.ProvideNamedValue(injector, "wheel-3", NewWheel())
do.ProvideNamedValue(injector, "wheel-4", NewWheel())

// car.go
type IWheel interface {}
wheels := []IWheel{
        do.MustInvokeNamed[IWheel](i, "wheel-1"),
        do.MustInvokeNamed[IWheel](i, "wheel-2"),
        do.MustInvokeNamed[IWheel](i, "wheel-3"),
        do.MustInvokeNamed[IWheel](i, "wheel-4"),
}

Output:

panic: DI: could not find service `wheel-1`, available services: `*main.Car`, `*main.Engine`, `wheel-1`, `wheel-2`, `wheel-3`, `wheel-4`

from do.

hiendaovinh avatar hiendaovinh commented on July 20, 2024

It doesn't depend on the invokers, it depends on the provider. Unlike Java or PHP, Go interfaces generally belong in the package that uses values of the interface type. Which means that the provider will return implementation while the consumer will specify their expected interface.

from do.

zhulik avatar zhulik commented on July 20, 2024

I'd be also happy to be able to invoke services by interfaces. We could have something like do.MustInvokeBy which accepts an interface as a type parameter, goes through all registered services and returns the first which implements the given interface. WDYT?

I know it will be slower than MustInvoke or MustInvokeNamed, but I believe it's quiet ok if it's not called regularly and registered service list is not so long

The implementation could look somewhat like

func InvokeBy[T any](i *Injector) (res T, e error) {
	_i := getInjectorOrDefault(i)

	e = fmt.Errorf("not found")

	_i.forEach(func(name string, service any) {
		if v, ok := service.(T); ok {
			res = v
			e = nil
		}
	})
	return
}

func MustInvokeBy[T any](i *Injector) T {
	s, err := InvokeBy[T](i)
	must(err)
	return s
}

from do.

samber avatar samber commented on July 20, 2024

Hi there,

I made a proposal in do@v2 -> #45

do.As[*carImplem, Car](injector)

// or

do.InvokeAs[Car](injector)

from do.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.