Component References

  • by Anastas Fonotov

Introduction

Developing systems out of loosely-coupled components significantly reduces complexity, improves testing, and increases developer productivity. The Pip.Services Toolkit offers a flexible and simple set of primitives for referencing components that is symmetrically implemented in all of the supported programming languages.

The Locator Pattern

Developing loosely-coupled components has recently become very popular. There exist great implementations of the Inversion of Control pattern, which allows components to be linked to one another. In Java, the Spring framework is often used, and in .NET - unity. However, all of these implementations are tailored to the language they were initially made for. Furthermore, they are usually based upon Dependency Injection, which relies on runtime reflection. Since the Pip.Services Toolkit strives to provide symmetrical code across all of the languages it supports, its Inversion of Control mechanism was designed with a few distinctive features in mind.

The main distinction is that our implementation of Inversion of Control uses the Locator Pattern. The main concept behind this pattern is that, instead of injecting dependencies through constructors and attributes, the component receives a special object that is responsible for “finding” all of the necessary services. This approach provides developers with more flexibility and control, doesn’t require reflection, and can be implemented in any programming language.

The IReferences Interface

The IReferences interface can be used to pass a so-called References object to a component. This References object can be used by the component to retrieve any and all required dependencies. IReferences is defined as follows:

interface IReferences {
	put(locator: any, component: any);
	remove(locator: any): any;
	removeAll(locator: any): any[];
	getAllLocators(): any[];
	getAll(): any[];
	getOptional<T>(locator: any): T[];
	getRequired<T>(locator: any): T[];
	getOneOptional<T>(locator: any): T;
	getOneRequired<T>(locator: any): T;
	find<T>(locator: any, required: boolean): T[];
}


Not available
Not available
Not available
See: [IReferences](../../../toolkit_api/python/commponents/refer/ireferences/), [References](../../../toolkit_api/python/commponents/refer/references/)
from abc import ABC
from typing import Any, List

class IReferences(ABC):

    def put(self, locator: Any = None, reference: Any = None):
        raise NotImplementedError('Method from interface definition')

    def remove(self, locator: Any) -> Any:
        raise NotImplementedError('Method from interface definition')

    def remove_all(self, locator: Any) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

    def get_all_locators(self) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

    def get_all(self) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

    def get_optional(self, locator: Any) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

    def get_required(self, locator: Any) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

    def get_one_optional(self, locator: Any) -> Any:
        raise NotImplementedError('Method from interface definition')

    def get_one_required(self, locator: Any) -> Any:
        raise NotImplementedError('Method from interface definition')

    def get_one_before(self, reference, locator) -> Any:
        raise NotImplementedError('Method from interface definition')

    def find(self, locator: Any, required: bool) -> List[Any]:
        raise NotImplementedError('Method from interface definition')

Not available

The “locator” parameters are special keys that are used to search for necessary dependencies. Technically, any primitive value can be a locator - a number, string, or even a complex object (as long as it supports the “equals” operation). The put method is used to add a component and its locator/key to the list of dependencies. The rest of the methods are used for extracting dependencies. For example, the get_required method can be used for extracting essential dependencies, as an exception will be raised if no matches are found. The get_one_optional method, on the other hand, can be used for optional dependencies - it will simply return None if no matching dependencies are found.

The IReferenceable & IUnreferenceable Interfaces

A component must implement the IReferenceable interface to be able to receive dependencies. Dependencies are set in the component’s setReferences method, which is called with a link to a References object (described in the previous section).

interface IUnreferenceable {
 	unsetReferences(): void;
}


Not available
Not available
Not available
See: [IReferenceable](../../../toolkit_api/python/components/refer/ireferenceable/) ```python class IUnreferenceable(ABC):
def unset_references(self):
    raise NotImplementedError('Method from interface definition')

Not available

Dependencies can be set and removed either manually, or automatically by the component container. The setting of dependencies should be performed right after component creation and configuration, and their deletion - after stopping all active processes and right before destroying the component. For more information, see the Component Lifecycle.

Example of Dependency Setting

Let’s take a look at a simple example of setting dependencies between components using the Pip.Services Toolkit’s References pattern. Suppose we have 2 services, Worker1 and Worker2, which are defined as follows:

class Worker1 {
    private _defaultName: string;

    constructor(name) {
        this._defaultName = name || "Default name1";
    }

    public do(level, message) {
        console.log('Write to ${this._defaultName}.${level} message: ${message}');
    }
}

class Worker2 {
    private _defaultName: string;
  
    constructor(name) {
        this._defaultName = name || "Default name2";
    }

    public do(level, message) {
        console.log('Write to ${this._defaultName}.${level} message: ${message}');
    }
}

Not available
Not available
Not available
class Worker1:
    def __init(self, name):
        self._default_name = name or "Default name1"
  
    def do(self, level, message):
        print(f'Write to {self._default_name}.${level} message: ${message}')
  

class Worker2: 
	def __init(self, name):
         self._default_name = name or "Default name2"
  
	def do(self, level, message):
         print(f'Write to {self._default_name}.${level} message: ${message}')
Not available

Now let’s add a SimpleService component with a greeting() method. This method will perform just one simple operation - output a message that was generated by one of the Worker controllers. This component will be implementing the IReferenceable interface, and its set_references method will receive and set a reference to the Worker controller via the 111 locator. We can also implement IUnreferenceable and use the unset_references method to delete the previously set reference.

import { IReferenceable, IUnreferenceable } from "pip-services4-components-node";
import { LogLevel } from "pip-services4-observability-node";

class SimpleController implements IReferenceable, IUnreferenceable {
  private _worker: any;
  
  constructor() {}

  public setReferences(references) {
      this._worker = references.getOneRequired(111)
  }
  public unsetReferences() {
      this._worker = null;
  }
  public greeting(name) {
      this._worker.do(LogLevel.Debug,  "Hello, " + (name) + "!");
  }
}
Not available
Not available
Not available

See: IUnreferenceable

from pip_services4_components.refer import IReferenceable, IUnreferenceable

class SimpleService(IReferenceable, IUnreferenceable):
  
  def set_references(self, references):
    self._worker = self._references.get_one_required(111)
  
  def unset_references(self):
    self._worker = None
  
  def greeting(self, name):
    self._worker.do(LogLevel.Info,  "Hello, " + (name) + "!")
Not available

We will be using the References class to pass dependencies into our components. This class is defined in the Commons module and implements the IReferenceable interface. We can use the References.from_tuples method to populate our list of dependencies using locator-reference pairs.

let references = References.fromTuples(
  111, new Worker1(null),
  222, new Worker2(null)
);

let controller = new SimpleController();
controller.setReferences(references);
controller.greeting("world");
controller.unsetReferences();
controller = null;
Not available
Not available
Not available
from pip_services4_components.refer import References

references = References.from_tuples(
	111, Worker1(),
	222, Worker2()
)

controller = SimpleService()
controller.set_references(references)
controller.greeting("world")
controller.unset_references()
controller = None

Not available

Component Descriptors

Using simple values as locators (keys) can be sufficient for dependency extraction in certain simple cases. However, when working with complex systems, you may come across a case where there are a multitude of dependencies, and you need to create complex configurations in accordance with various criteria.
For such complex cases, the Pip.Services Toolkit includes a special locator that is called a Descriptor. Descriptor locators allow dependencies to be found using complete or partial Descriptor matches. A Descriptor consists of the following 5 fields:

  1. Group - logical group of objects. Usually, this is the name of the library or microservice. E.g. “pip-services”.
  2. Type - logical type or object interface that presumes some general functionality. E.g. “logger”.
  3. Kind - specific implementation of the logical type. E.g. (for logger components) “null”, “console”, “elasticsearch”, “fluentd”, etc.
  4. Name - unique object name. E.g. “logger1” or “logger2”.
  5. Version - object’s interface version. This is mainly used for finding compatible dependencies. E.g. “1.0”.

The Descriptor class’s definition is as follows:

class Descriptor {
	private _group: string;
	private _type: string;
	private _kind: string;
	private _name: string;
	private _version: string;
	public getGroup(): string;
	public getType(): string;
	public getKind(): string;
	public getName(): string;
	public getVersion(): string;
	private matchField(field1: string, field2: string): boolean;
	public match(descriptor: Descriptor): boolean;
	private exactMatchField(field1: string, field2: string): boolean;
	public exactMatch(descriptor: Descriptor): boolean;
	public isComplete(): boolean;

public equals(value: any): boolean;
	public toString(): string;
	public static fromString(value: String): Descriptor;
}


Not available
Not available
Not available

See: Descriptor

class Descriptor:

    def __init__(self, group: Optional[str], type: Optional[str], kind: Optional[str], name: Optional[str]):
        # ...

    def get_group(self) -> str:
        # ...

    def get_type(self) -> str:
        # ...

    def get_kind(self) -> str:
        # ...

    def get_name(self) -> str:
        # ...

    def get_version(self) -> str:
        # ...

    def __match_field(self, field1: str, field2: str) -> bool:
        # ...

    def match(self, descriptor: 'Descriptor') -> bool:
        # ...

    def __exact_match_field(self, field1: str, field2: str) -> bool:
        # ...

    def exact_match(self, descriptor: 'Descriptor') -> bool:
        # ...

    def is_complete(self) -> bool:
        # ...

    def equals(self, value: Any) -> bool:
        # ...

    def to_string(self) -> str:
        # ...

    def __eq__(self, other):
        # ...

    def __ne__(self, other):
        # ...

    def __str__(self):
        # ...

    @staticmethod
    def from_string(value: str) -> Optional['Descriptor']:
		# ...

Not available

This way, we can define more than one logger in the system

pip-services:logger:console:logger1:1.0
pip-services:logger:elasticsearch:logger2:1.0
my-library:logger:mylog:logger3:1.0

The use of Descriptors also adds flexibility to the dependency searching process. Instead of having to find a complete match, we can indicate which Descriptor fields we want matched, and which can be skipped during comparison. If we want a field to be skipped during comparison, we simply set its value to ‘*’. For example, we can retrieve all of the logger currently registered in the system:

*:logger:*:*:1.0

Or just loggers that output to the console:

*:logger:console:*:1.0

Likewise, just the logger named “logger2”:

*:logger:*:logger2:1.0

And even all dependencies from a library called “my_library”:

my_library:*:*:*:*

Returning to our “worker” example, we could use Descriptors in the following manner:

class SimpleController implements IReferenceable, IUnreferenceable {
  ...
      public setReferences(references) {
          this._worker = this._references.getOneRequired(
              new Descriptor("*", "worker", "worker1", "*", "1.0")
          );
      }
  ...
  }
  
let references = References.fromTuples(
    new Descriptor("sample", "worker", "worker1", "111", "1.0"), new Worker1("name1"),
    new Descriptor("sample", "worker", "worker2", "222", "1.0"), new Worker2("name1")
);

let controller = new SimpleController();
controller.setReferences(references);
controller.greeting("world");
controller.unsetReferences();
controller = null;
Not available
Not available
Not available
from pip_services4_components.refer import IReferenceable, References, Descriptor

class SimpleService(IReferenceable, IUnreferenceable):
    
	#...
    def set_references(self, references):
        self._worker = self._references.get_one_required(
    	    Descriptor("*", "worker", "worker1", "*", "1.0")
        )
  
	#...

references = References.from_tuples(
	Descriptor("sample", "worker", "worker1", "111", "1.0"), Worker1(),
	Descriptor("sample", "worker", "worker2", "222", "1.0"), Worker2()
)
service = SimpleService()
service.set_references(references)
service.greeting("world")
service.unset_references();
service = None
Not available

The Dependency Resolver

In complex systems, which often contain a number of components of the same type, it can be impossible to select a dependency from the list using just a set of predefined rules (descriptors). That’s where the DependencyResolver helper class steps in. This class allows for dependency extraction using flexible configurations. When a DependencyResolver is created, a set of dependency names and corresponding default descriptors are defined inside it. Afterwards, these descriptors can be changed in the configuration’s “dependencies” section (see the Component Configuration for more info on the specifics of component configuration). The DependencyResolver class:

class DependencyResolver implements IReferenceable, IReconfigurable {
	private _dependencies: any = {};
	private _references: IReferences;
public configure(config: ConfigParams): void;
	public setReferences(references: IReferences): void;
	public put(name: string, locator: any): void;
	private locate(name: string): any;
	public getOptional<T>(name: string): T[];
	public getRequired<T>(name: string): T[];
	public getOneOptional<T>(name: string): T;
	public getOneRequired<T>(name: string): T;
	public find<T>(name: string, required: boolean): T[];
	public static fromTuples(...tuples: any[]): DependencyResolver;
}


Not available
Not available
Not available

See: DependencyResolver

class DependencyResolver(IReconfigurable, IReferenceable):

    def __init__(self, config: ConfigParams = None, references: IReferences = None):
        ...

    def configure(self, config: ConfigParams):
        ...

    def set_references(self, references: IReferences):
        ...

    def put(self, name: str, locator: Any):
        ...

    def __locate(self, name: str) -> Any:
        ...

    def get_optional(self, name: str) -> List[Any]:
        ...

    def get_required(self, name: str) -> List[Any]:
        ...

    def get_one_optional(self, name: str) -> Any:
        ...

    def get_one_required(self, name: str) -> Any:
        ...

    def find(self, name: str, required: bool) -> Optional[List[Any]]:
        ...

    @staticmethod
    def from_tuples(*tuples: Any) -> 'DependencyResolver':
        ...



Not available

Below is the final version of our “worker” example, which now utilizes the DependencyResolver. By default, the SimpleService is capable of working with either of the worker controllers. However, once we configure SimpleService and, in turn, the DependencyResolver - the component is re-configured to work with just Worker1.

class SimpleController implements IConfigurable, IReferenceable, IUnreferenceable {
  private _worker: any;
  
  private _depedencyResolver = DependencyResolver.fromTuples(
      "worker", new Descriptor("*","worker","*","*","1.0")
  );

  public configure(config) {
    this._depedencyResolver.configure(config);
  }

  public setReferences(references) {
    this._depedencyResolver.setReferences(references);
    this._worker = this._depedencyResolver.getOneRequired("worker");
  }

  public unsetReferences() {
    this._depedencyResolver = new DependencyResolver();
  }
...
}

let references = References.fromTuples(
  new Descriptor("sample", "worker", "worker1", "111", "1.0"), new Worker1("name1"),
  new Descriptor("sample", "worker", "worker2", "222", "1.0"), new Worker2("name1")
);

let config = ConfigParams.fromTuples(
  "dependencies.worker", "*:worker:worker1:111:1.0"
);

let controller = new SimpleController();
controller.configure(config);
controller.setReferences(references);
controller.greeting("world");
controller.unsetReferences();
controller = null;
Not available
Not available
Not available
class SimpleService(IConfigurable, IReferenceable, IUnreferenceable):
	_depedency_resolver = DependencyResolver.from_tuples(
    	"worker", Descriptor("*", "worker", "*", "*", "1.0")
  	)

  	def configure(self, config):
    	self._depedency_resolver.configure(config)
  
  	def set_references(self, references):
    	self._depedency_resolver.set_references(references)
    	self._worker = self._depedency_resolver.get_one_required("worker")
  
  	def unset_references():
    	self._dependency_resolver = DependencyResolver()
  
	#...

references = References.from_tuples(
	Descriptor("sample", "worker", "worker1", "111", "1.0"), Worker1(),
	Descriptor("sample", "worker", "worker2", "222", "1.0"), Worker2()
)
config = ConfigParams.from_tuples(
	"dependencies.worker", "*:worker:worker1:111:1.0"
)
service = SimpleService()
service.configure(config)
service.setReferences(references)
service.greeting("world")
service.unset_references()
service = None


Not available

When creating such a configuration for a container, the configuration file might look something like the example below (see the Component Configuration for more details):

- descriptor: "sample-references:worker:worker1:*:1.0"
  default_name: "Worker1"

- descriptor: "sample-references:worker:worker2:*:1.0"
  default_name: "Worker2"

- descriptor: "sample-references:service:default:default:1.0"
  default_name: "Sample"
  dependencies:
    workers: "sample-references:worker:worker2:*:1.0"

The Referencer

The Referencer helper class can be used as well for setting and removing dependencies:

class Referencer {
	public static setReferencesForOne(references: IReferences, component: any): void;
	public static setReferences(references: IReferences, components: any[]): void;
	public static unsetReferencesForOne(component: any): void;
	public static unsetReferences(components: any[]): void;
}


Not available
Not available
Not available

See: Referencer

class Reference(object):

    def __init__(self, locator: Any, component: Any):
        #...

    def match(self, locator: Any) -> bool:
        E...

    def get_component(self) -> Any:
        #...

    def get_locator(self) -> Any:
        #...

Not available

See Also