Code Monkey home page Code Monkey logo

syrette's Issues

Improve macro errors

Currently, error handling in macros is basically just the use of .unwrap().

This has worked fine but produces unclear error messages. So it should be improved on.

One alternative is using the proc-macro-error crate.

Remove need to explicitly make injectables async compatible

The need to explicitly make injectables async compatible should be removed.

This would be simple if not for the fact that having the async crate feature enable this by default would make it have a non-additive change. More about that here.

An alternative approach to this would be to only implement AsyncInjectable when the type, dependencies and interface are Send + Sync + 'static. This however is not possible (as far as i know) as long as trivial constraints is not stabilized. And even if it becomes stabilized, using it would break the 1.62.1 MSRV.

More research needs to be done about this

Make tests not return Results

Having a test return a Result makes it a major pain the butt to find out were Errs occur. No line number is printed as it is when unwrap or expect is used.

Add specifying constructor function

Currently, constructors are expected to be functions called "new".

A flag could be added to the injectable macro that overrides this.

It would look like this

#[injectable(IFoo, constructor = create)]
impl Foo
{
    fn create(bar: TransientPtr<dyn IBar>) -> Self
    {
        Self { bar }
    }
}

Async constructors

Add support for async constructors when the async crate feature is enabled.

Add support for stack allocation of injectables

Support for stack allocation of Injectables could probably be implemented.

Stack allocation is to be possible if the interface is a concrete type.

This will require

  • Container functions like get to be able to return either a heap allocated value (like Box) or a stack allocated value.
  • The generated resolve method of Injectables to figure out whether dependencies should be used as heap or stack values
  • Very likely even more

Implement Injectable & AsyncInjectable for types implementing Default

The Injectable and AsyncInjectable traits can be implemented for all types which implement the Default trait.

This could look something like this:

impl<T: Default, DIContainerT> Injectable<DIContainerT> for T
{
    fn resolve(
        _: &DIContainerT,
        _: DependencyHistory,
    ) -> Result<TransientPtr<Self>, InjectableError>
    {
        Ok(TransientPtr::new(Self::default()))
    }
}

Add tagged bindings

This would make a type only be resolved if certain properties has specific values. Like naming it, but with arbitrary stuff.

Types could maybe a problem.

IFactory is useless

The IFactory trait is completely useless. AnyFactory can just be downcasted to CastableFactory. This would completely remove the need for the factory attribute macro.

Find a way to get rid of Linkme dependency

It would be splendid if the dependency on Linkme was gotten rid of. This would make Syrette more portable.

However, more investigating needs to be made in order to know if this is even feasible.

Remove DI container interface traits

The traits IDIContainer and IAsyncDIContainer should be removed. They were created so that DIContainer and AsyncDIContainer can be mocked but it's much more ergonomic to just replace the whole struct. I don't know why i didn't do it that way.

Example prevent-circular: Cannot resolve binding

Version: 0.4.1
Problem:

Error: BindingResolveFailed { reason: ResolveFailed { reason: BindingResolveFailed { reason: ResolveFailed { reason: BindingResolveFailed { reason: DetectedCircular { dependency_history: DependencyHistory { inner: ["creditor::Foo", "creditor::Bar", "creditor::Foo"] } }, interface: "creditor::Foo" }, affected: "creditor::Bar" }, interface: "creditor::Bar" }, affected: "creditor::Foo" }, interface: "creditor::Foo" }

How to reproduce: This is the code I copied exactly from the example (https://git.hampusmat.com/syrette/tree/examples/prevent-circular)

#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![allow(clippy::disallowed_names)]
use std::error::Error;

use syrette::di_container::blocking::prelude::*;
use syrette::injectable;
use syrette::ptr::TransientPtr;

struct Foo
{
    bar: TransientPtr<Bar>,
}

#[injectable]
impl Foo
{
    fn new(bar: TransientPtr<Bar>) -> Self
    {
        Self { bar }
    }
}

struct Bar
{
    foo: TransientPtr<Foo>,
}

#[injectable]
impl Bar
{
    fn new(foo: TransientPtr<Foo>) -> Self
    {
        Self { foo }
    }
}

fn main() -> Result<(), anyhow::Error>
{
    let mut di_container = DIContainer::new();

    di_container.bind::<Foo>().to::<Foo>()?;
    di_container.bind::<Bar>().to::<Bar>()?;

    let foo = di_container.get::<Foo>()?.transient()?;

    Ok(())
}

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.