Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib64/python3.6/site-packages/subscription_manager/ |
Upload File : |
from __future__ import print_function, division, absolute_import # Copyright (c) 2013 Red Hat, Inc. # # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 # along with this software; if not, see # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. # # Red Hat trademarks are not licensed under GPLv2. No permission is # granted to use or replicate Red Hat trademarks that are incorporated # in this software or its documentation. # import subscription_manager.injection as inj from subscription_manager.cache import ProductStatusCache, \ EntitlementStatusCache, OverrideStatusCache, ProfileManager, \ InstalledProductsManager, PoolTypeCache, ReleaseStatusCache, \ RhsmIconCache, ContentAccessCache, PoolStatusCache, \ SyspurposeComplianceStatusCache, SupportedResourcesCache, \ AvailableEntitlementsCache, ContentAccessModeCache, \ CurrentOwnerCache, SyspurposeValidFieldsCache from subscription_manager.cert_sorter import CertSorter from subscription_manager.certdirectory import EntitlementDirectory from subscription_manager.certdirectory import ProductDirectory from subscription_manager.facts import Facts from subscription_manager.identity import Identity from subscription_manager.validity import ValidProductDateRangeCalculator from subscription_manager.cp_provider import CPProvider from subscription_manager.plugins import PluginManager from subscription_manager.lock import ActionLock def init_dep_injection(): """ Initializes the default behaviour for all supported features. This needs to be called from any entry-point into subscription manager. """ # Set up consumer identity as a singleton so we don't constantly re-load # it from disk. Call reload when anything changes and all references will be # updated. inj.provide(inj.IDENTITY, Identity, singleton=True) inj.provide(inj.PRODUCT_DATE_RANGE_CALCULATOR, ValidProductDateRangeCalculator) inj.provide(inj.ENT_DIR, EntitlementDirectory, singleton=True) inj.provide(inj.PROD_DIR, ProductDirectory, singleton=True) # FIXME: find a way to handle exceptions when looking for # attributes of inj (can happen if yum has old inj module, # but runs a new version of injectioninit...) inj.provide(inj.ENTITLEMENT_STATUS_CACHE, EntitlementStatusCache, singleton=True) inj.provide(inj.SYSTEMPURPOSE_COMPLIANCE_STATUS_CACHE, SyspurposeComplianceStatusCache, singleton=True) inj.provide(inj.RHSM_ICON_CACHE, RhsmIconCache, singleton=True) inj.provide(inj.CONTENT_ACCESS_MODE_CACHE, ContentAccessModeCache, singleton=True) inj.provide(inj.CURRENT_OWNER_CACHE, CurrentOwnerCache, singleton=True) inj.provide(inj.SYSPURPOSE_VALID_FIELDS_CACHE, SyspurposeValidFieldsCache) inj.provide(inj.SUPPORTED_RESOURCES_CACHE, SupportedResourcesCache, singleton=True) inj.provide(inj.AVAILABLE_ENTITLEMENT_CACHE, AvailableEntitlementsCache, singleton=True) inj.provide(inj.PROD_STATUS_CACHE, ProductStatusCache, singleton=True) inj.provide(inj.OVERRIDE_STATUS_CACHE, OverrideStatusCache, singleton=True) inj.provide(inj.RELEASE_STATUS_CACHE, ReleaseStatusCache, singleton=False) inj.provide(inj.CONTENT_ACCESS_CACHE, ContentAccessCache, singleton=True) inj.provide(inj.PROFILE_MANAGER, ProfileManager, singleton=True) inj.provide(inj.INSTALLED_PRODUCTS_MANAGER, InstalledProductsManager, singleton=True) inj.provide(inj.CP_PROVIDER, CPProvider, singleton=True) inj.provide(inj.CERT_SORTER, CertSorter, singleton=True) # Set up plugin manager as a singleton. # FIXME: should we aggressively catch exceptions here? If we can't # create a PluginManager we should probably raise an exception all the way up inj.provide(inj.PLUGIN_MANAGER, PluginManager, singleton=True) inj.provide(inj.POOL_STATUS_CACHE, PoolStatusCache, singleton=True) inj.provide(inj.POOLTYPE_CACHE, PoolTypeCache, singleton=True) inj.provide(inj.ACTION_LOCK, ActionLock) # see what happens with non singleton, callable inj.provide(inj.FACTS, Facts)