11
11
import pyblish .util
12
12
13
13
from .. import api , schema
14
- from ..lib import logger
14
+ from ..lib import find_submodule , logger
15
15
from ..pipeline import AVALON_CONTAINER_ID
16
16
from . import lib , ops
17
17
18
18
self = sys .modules [__name__ ]
19
19
self ._events = dict () # Registered Blender callbacks
20
20
self ._parent = None # Main window
21
- self ._ignore_lock = False
22
21
23
22
AVALON_CONTAINERS = "AVALON_CONTAINERS"
24
23
AVALON_PROPERTY = 'avalon'
@@ -92,18 +91,6 @@ def _register_events():
92
91
logger .info ("Installed event callback for 'taskChanged'..." )
93
92
94
93
95
- def find_host_config (config : ModuleType ) -> Optional [ModuleType ]:
96
- """Find the config for the current host (Blender)."""
97
-
98
- config_name = f"{ config .__name__ } .blender"
99
- try :
100
- return importlib .import_module (config_name )
101
- except ImportError as exc :
102
- if str (exc ) != f"No module named '{ config_name } '" :
103
- raise
104
- return None
105
-
106
-
107
94
def install (config : ModuleType ):
108
95
"""Install Blender-specific functionality for Avalon.
109
96
@@ -118,10 +105,6 @@ def install(config: ModuleType):
118
105
119
106
pyblish .api .register_host ("blender" )
120
107
121
- host_config = find_host_config (config )
122
- if hasattr (host_config , "install" ):
123
- host_config .install ()
124
-
125
108
126
109
def uninstall (config : ModuleType ):
127
110
"""Uninstall Blender-specific functionality of avalon-core.
@@ -132,10 +115,6 @@ def uninstall(config: ModuleType):
132
115
config: configuration module
133
116
"""
134
117
135
- host_config = find_host_config (config )
136
- if hasattr (config , "uninstall" ):
137
- host_config .uninstall ()
138
-
139
118
if not IS_HEADLESS :
140
119
ops .unregister ()
141
120
@@ -364,13 +343,8 @@ def ls() -> Iterator:
364
343
365
344
containers = _ls ()
366
345
367
- has_metadata_collector = False
368
- config = find_host_config (api .registered_config ())
369
- if config is None :
370
- logger .error ("Could not find host config for Blender" )
371
- return tuple ()
372
- if hasattr (config , "collect_container_metadata" ):
373
- has_metadata_collector = True
346
+ config = find_submodule (api .registered_config (), "blender" )
347
+ has_metadata_collector = hasattr (config , "collect_container_metadata" )
374
348
375
349
for container in containers :
376
350
data = parse_container (container )
0 commit comments