MediaWiki  master
docs/injection.txt File Reference

Functions

injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency 
injection (DI) refers to a pattern on object oriented programming that tries to improve modularity by reducing strong coupling between classes.In practical terms
 
Further assume MyExt::onFoo
needs service which is already
known to 
MediaWikiServices (if not, see above).*Create a non-static doFoo($x) method in MyExtHooks that has the same signature as onFoo($x).Move the code from onFoo() into doFoo()
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning 
of (MW version 1.27)
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per $wgServiceWiringFiles
lists includes ServiceWiring
which defines all default
service and specifies how they
depend on each 
other ("wiring").When a new service is added to MediaWiki core
 

Variables

injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by 
$wgServiceWiringFiles
 
Further assume MyExt::onFoo
needs service 
Bar
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per 
default
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per $wgServiceWiringFiles
lists includes ServiceWiring
which defines all default
service and specifies how they
depend on each an instantiator
function that will create the
appropriate default instance
for that service must be added
to ServiceWiring php This
makes the service available
through the generic getService()
method on the service locator
returned by MediaWikiServices 
Eventually
 
the only code that
instantiates Foo are
implementations of 
FooFactory
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback 
function
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency 
graph
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per $wgServiceWiringFiles
lists includes ServiceWiring
which defines all default
service 
implementations
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct 
instantiation
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow 
interfaces
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency 
MediaWikiServices
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of 
objects
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the 
outside
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per $wgServiceWiringFiles
lists includes ServiceWiring 
php
 
injection txt This is an
overview of how MediaWiki
makes use of dependency
injection The design described
here grew from the discussion
of RFC T384 The term
dependency this means that
anything an object needs to
operate should be injected
from the the object itself
should only know narrow no
concrete implementation of the
logic it relies on The
requirement to inject
everything typically results
in an architecture that based
on two main types of and
essentially stateless service
objects that use other service
objects to operate on the
value objects As of the
beginning MediaWiki is only
starting to use the DI
approach Much of the code
still relies on global state
or direct resulting in a
highly cyclical dependency
which acts as the top level
factory for services in
MediaWiki which can be used to
gain access to default
instances of various services
MediaWikiServices however also
allows new services to be
defined and default services
to be redefined Services are
defined or redefined by
providing a callback the
instantiator that will return
a new instance of the service
When it will create an
instance of MediaWikiServices
and populate it with the
services defined in the files
listed by thereby
bootstrapping the DI framework
Per $wgServiceWiringFiles
lists includes ServiceWiring
which defines all default
service and specifies how they
depend on each an instantiator
function that will create the
appropriate default instance
for that service must be added
to ServiceWiring php This
makes the service available
through the generic getService()
method on the service locator
returned by MediaWikiServices
the only code that
instantiates Foo is the
instantiator in ServiceWiring
php *As an intermediate 
step
 

Function Documentation

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency injection ( DI  )
Further assume MyExt::onFoo needs service which is already known to MediaWikiServices ( if  not,
see  above 
)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning of ( MW version 1.  27)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring which defines all default service and specifies how they depend on each other ( "wiring"  )
new

Variable Documentation

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by $wgServiceWiringFiles

Definition at line 35 of file injection.txt.

Further assume MyExt::onFoo needs service Bar

Definition at line 214 of file injection.txt.

Referenced by SideBarTest::testTrickyPipe().

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per default

Definition at line 35 of file injection.txt.

Eventually

Definition at line 43 of file injection.txt.

the only code that instantiates Foo are implementations of FooFactory

Definition at line 164 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator function

Definition at line 30 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency graph
Initial value:
== Overview ==
The heart of the DI in MediaWiki is the central service locator
#define the
table suitable for use with IDatabase::select()
null for the local wiki Added in
Definition: hooks.txt:1435
The MediaWiki class is the helper class for the index.php entry point.
Definition: MediaWiki.php:28
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning of(MW version 1.27)
Some quick notes on the file repository architecture Functionality is
Definition: README:3

Definition at line 23 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring which defines all default service implementations

Definition at line 35 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct instantiation

Definition at line 20 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow interfaces

Definition at line 10 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of objects

Definition at line 10 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the outside

Definition at line 10 of file injection.txt.

injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
the only code that instantiates Foo are implementations of and the only code that instantiates FooFactory is the instantiator in ServiceWiring php *As an intermediate step

Definition at line 43 of file injection.txt.