summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/vendor/jetpack-autoloader/class-container.php')
-rw-r--r--plugins/jetpack/vendor/jetpack-autoloader/class-container.php150
1 files changed, 150 insertions, 0 deletions
diff --git a/plugins/jetpack/vendor/jetpack-autoloader/class-container.php b/plugins/jetpack/vendor/jetpack-autoloader/class-container.php
new file mode 100644
index 00000000..4a16e48f
--- /dev/null
+++ b/plugins/jetpack/vendor/jetpack-autoloader/class-container.php
@@ -0,0 +1,150 @@
+<?php
+/**
+ * This file was automatically generated by automattic/jetpack-autoloader.
+ *
+ * @package automattic/jetpack-autoloader
+ */
+
+namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5;
+
+ // phpcs:ignore
+
+/**
+ * This class manages the files and dependencies of the autoloader.
+ */
+class Container {
+
+ /**
+ * Since each autoloader's class files exist within their own namespace we need a map to
+ * convert between the local class and a shared key. Note that no version checking is
+ * performed on these dependencies and the first autoloader to register will be the
+ * one that is utilized.
+ */
+ const SHARED_DEPENDENCY_KEYS = array(
+ Hook_Manager::class => 'Hook_Manager',
+ );
+
+ /**
+ * A map of all the dependencies we've registered with the container and created.
+ *
+ * @var array
+ */
+ protected $dependencies;
+
+ /**
+ * The constructor.
+ */
+ public function __construct() {
+ $this->dependencies = array();
+
+ $this->register_shared_dependencies();
+ $this->register_dependencies();
+ $this->initialize_globals();
+ }
+
+ /**
+ * Gets a dependency out of the container.
+ *
+ * @param string $class The class to fetch.
+ *
+ * @return mixed
+ * @throws \InvalidArgumentException When a class that isn't registered with the container is fetched.
+ */
+ public function get( $class ) {
+ if ( ! isset( $this->dependencies[ $class ] ) ) {
+ throw new \InvalidArgumentException( "Class '$class' is not registered with the container." );
+ }
+
+ return $this->dependencies[ $class ];
+ }
+
+ /**
+ * Registers all of the dependencies that are shared between all instances of the autoloader.
+ */
+ private function register_shared_dependencies() {
+ global $jetpack_autoloader_container_shared;
+ if ( ! isset( $jetpack_autoloader_container_shared ) ) {
+ $jetpack_autoloader_container_shared = array();
+ }
+
+ $key = self::SHARED_DEPENDENCY_KEYS[ Hook_Manager::class ];
+ if ( ! isset( $jetpack_autoloader_container_shared[ $key ] ) ) {
+ require_once __DIR__ . '/class-hook-manager.php';
+ $jetpack_autoloader_container_shared[ $key ] = new Hook_Manager();
+ }
+ $this->dependencies[ Hook_Manager::class ] = &$jetpack_autoloader_container_shared[ $key ];
+ }
+
+ /**
+ * Registers all of the dependencies with the container.
+ */
+ private function register_dependencies() {
+ require_once __DIR__ . '/class-path-processor.php';
+ $this->dependencies[ Path_Processor::class ] = new Path_Processor();
+
+ require_once __DIR__ . '/class-plugin-locator.php';
+ $this->dependencies[ Plugin_Locator::class ] = new Plugin_Locator(
+ $this->get( Path_Processor::class )
+ );
+
+ require_once __DIR__ . '/class-version-selector.php';
+ $this->dependencies[ Version_Selector::class ] = new Version_Selector();
+
+ require_once __DIR__ . '/class-autoloader-locator.php';
+ $this->dependencies[ Autoloader_Locator::class ] = new Autoloader_Locator(
+ $this->get( Version_Selector::class )
+ );
+
+ require_once __DIR__ . '/class-php-autoloader.php';
+ $this->dependencies[ PHP_Autoloader::class ] = new PHP_Autoloader();
+
+ require_once __DIR__ . '/class-manifest-reader.php';
+ $this->dependencies[ Manifest_Reader::class ] = new Manifest_Reader(
+ $this->get( Version_Selector::class )
+ );
+
+ require_once __DIR__ . '/class-plugins-handler.php';
+ $this->dependencies[ Plugins_Handler::class ] = new Plugins_Handler(
+ $this->get( Plugin_Locator::class ),
+ $this->get( Path_Processor::class )
+ );
+
+ require_once __DIR__ . '/class-autoloader-handler.php';
+ $this->dependencies[ Autoloader_Handler::class ] = new Autoloader_Handler(
+ $this->get( PHP_Autoloader::class ),
+ $this->get( Hook_Manager::class ),
+ $this->get( Manifest_Reader::class ),
+ $this->get( Version_Selector::class )
+ );
+
+ require_once __DIR__ . '/class-latest-autoloader-guard.php';
+ $this->dependencies[ Latest_Autoloader_Guard::class ] = new Latest_Autoloader_Guard(
+ $this->get( Plugins_Handler::class ),
+ $this->get( Autoloader_Handler::class ),
+ $this->get( Autoloader_Locator::class )
+ );
+
+ // Register any classes that we will use elsewhere.
+ require_once __DIR__ . '/class-version-loader.php';
+ require_once __DIR__ . '/class-shutdown-handler.php';
+ }
+
+ /**
+ * Initializes any of the globals needed by the autoloader.
+ */
+ private function initialize_globals() {
+ /*
+ * This global was retired in version 2.9. The value is set to 'false' to maintain
+ * compatibility with older versions of the autoloader.
+ */
+ global $jetpack_autoloader_including_latest;
+ $jetpack_autoloader_including_latest = false;
+
+ // Not all plugins can be found using the locator. In cases where a plugin loads the autoloader
+ // but was not discoverable, we will record them in this array to track them as "active".
+ global $jetpack_autoloader_activating_plugins_paths;
+ if ( ! isset( $jetpack_autoloader_activating_plugins_paths ) ) {
+ $jetpack_autoloader_activating_plugins_paths = array();
+ }
+ }
+}