Skip to content

Yodii is a DI engine in .Net that aim to support more dynamic scenarii than classical DI approach.

Notifications You must be signed in to change notification settings

Invenietis/yodii

Repository files navigation

Yodii overview

#At a glance

Yodii is yet another Dependency Injection initiative. But different :-).

This project is (one of) the result of our work on the Civikey platform: it is based on the Civikey kernel (in terms of ideas as well as - some of the - original code) and once fully operational, Civikey will be powered by Yodii.

To understand Yodii you need a basic understanding of what Dependency Injection is and how it is implemented by today’s frameworks (Castle Windsor, Unity, NInject, Spring.Net, Autofac, etc.). Do not hesitate to read "Dependency Injection. NET" for more information about dependency injection in general and in the context of .Net in particular.

Yodii differs from all those classical approaches (and also from Microsoft Extension Framework – MEF – that is itself quite different from the others) and is somewhat closer to OSGi framework in terms of goals.


In (very) short, Yodii is a “runtime engine” for Plugins that rely on Services implemented by other Plugins, all of them supporting to be dynamically started, stopped or disabled.


#Who is it for?

We believe that Yodii can be used for a lot of desktop .Net applications (both classical .Net ones and Windows Pro tablets applications). We also believe that the way we modeled the engine and its runtime status, resolved dependencies and, more generally, designed the whole system, may be adapted to other platforms.

Architects (and developers) that have already met the requirement for a “System” or an “Application” to be more “dynamically composed” by different “Modules”, know how such objective is easy to describe… and difficult to achieve. Yodii aims to offer them a solid (yet simple) foundation for a modular application.

#Main ideas ##Basic Yodii principles are: The short list below defines the key point of what Yodii is about. It also exposes what we consider to be “welcomed limitations”, the kind of restrictions that offer more (at the end) than they take away (at first glance).

  • Services are abstractions that are defined by an interface that extends IDynamicService interface marker.
  • A Service can extend another Service (think IKeyboardServicePremium that specializes IKeyboardService).
    • Of course, starting IKeyboardServicePremium actually starts IKeyboardService.
  • Plugins are implemented by a concrete Class that supports a IPlugin interface (that supports the 2 phases start/stop and the compensation mechanism).
  • Services and Plugins are identified by the full name of the Type (namespace and type name).
  • A Plugin can implement at most one Service.
  • A Plugin implementation can use (reference) 0 or more Services (in order to do its job).
  • The relationship between a Plugin and a Service it wants to use (the referenced Service) describes the constraint that must be fulfiled for the Plugin to run:
    • Running (the default): the referenced Service must be running.
    • Runnable: the referenced Service must be startable, be able to run at any moment.
    • RunnableRecommended: like Runnable but states that it is better if the referenced Service runs.
    • Optional: the referenced Service can run or not (even not be available at all).
    • OptionalRecommended: like Optional but states that it is better if the referenced Service runs.
  • At any time, no more than one implementation of a given Service can be running.

Yoddi engine is in charge of computing and maintaining the best configuration of what must be running or stopped, while the Host handles the impacts by starting/stopping/disabling the Plugins accordingly.

##More advanced aspects are:

  • The runtime supports (and enforces) requirements about Services and/or Plugin statuses throug a Configuration (like Plugin A must not Run, B must be Runnable, and Service S must be Running).
  • Configuration can be dynamically changed and, when accepted, is guaranteed to be honored.
  • The runtime exposes at any time for each Plugin or Service:
    • A running status that is one among Disabled, Stopped, Running or RunningLocked.
    • Capabilities that describe possible and impossible actions.
  • Plugin or Service can be started (when Stopped) or stopped (when Running) by any actor at any time (the code of a Plugin or the user acting on the system).
  • Plugin code is lightly isolated from the Services it uses thanks to dynamically generated proxies. Such Service proxies enable:
    • Logging capability of any Plugin/Service interactions (dynamically enabled at runtime).
    • Error protection by intercepting exceptions (dynamically enabled at runtime).
    • Easy to use handling of optional Plugin-to-Service requirement runtime behavior: an event exposes the Service status changes and enables the Plugin to react accordingly.
    • Transparent handling of cycling dependencies (we consider this as being a requirement to actually support “Programming against Abstraction”).
    • “Hot swapping” of the implementation of a Service by another Plugin.

##Implementation, Choices & Frame of Works

Yodii is a VS2013 solution. It targets .Net framework 4.5 but should compile against other frameworks. We use quite standard C# coding conventions (with minor differences): this Visual Studio settings should be used to define them. NUnit is used for the unit tests, NuGet for package management.

Yodii is split into 4 core assemblies:

  • Yodii.Model that exposes the abstractions. It only depends on CK.Core.
  • Yodii.Engine that implements the logic. It depends on Yodii.Model and CK.Core.
  • Yodii.Host that is in charge of instanciating the Plugins and managing their two-steps start/stop process. It depends on Yodii.Model, CK.Core and CK.Reflection.
  • Yodii.Discoverer that supports Plugins and Services discovering from assemblies. It depends on Yodii.Model, CK.Core and Mono.Cecil.

Yodii does not use multiple threads nor does it support any kind of multi-threaded architecture. This is a deliberate choice: the engine runs in a deterministic world and produces deterministic results. Plugins may nonetheless use multiple threads provided that calls to the engine are serialized.

Yodii.Lab.exe is a WPF application to easily test and play with the engine.

#Current Project Status Project started on March 2013, the 15th.

###March 8th, 2015 (0.0.3):

  • Engine, Host and Discoverer are fully operational.
  • Lab is functional. Still has some graph issues with overlap removal. Can display, save, load, and add/remove/edit components and configuration. Engine integration is mostly complete: You can start the Engine and play around with components while it's running.

Any help is appreciated.

About

Yodii is a DI engine in .Net that aim to support more dynamic scenarii than classical DI approach.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages