27
27
NOT_PROJECT_ERROR_MESSAGE ,
28
28
NOT_WORKSPACE_ERROR_MESSAGE ,
29
29
NOT_WORKSPACE_OR_PROJECT_ERROR_MESSAGE ,
30
- ensure_loadable_path ,
31
30
exit_with_error ,
32
31
generate_missing_dagster_components_in_local_venv_error_message ,
33
- get_path_for_module ,
34
32
get_toml_value ,
35
33
get_venv_executable ,
36
34
has_toml_value ,
37
- is_package_installed ,
38
35
pushd ,
39
36
resolve_local_venv ,
40
37
strip_activated_venv_from_env_vars ,
@@ -217,7 +214,7 @@ def get_cache_key(self, data_type: Union[CachableDataType, str]) -> tuple[str, s
217
214
218
215
def get_cache_key_for_module (self , module_name : str ) -> tuple [str , str , str ]:
219
216
if module_name .startswith (self .root_module_name ):
220
- path = self .get_path_for_module (module_name )
217
+ path = self .get_path_for_local_module (module_name )
221
218
env_hash = hash_paths ([path ], includes = ["*.py" ])
222
219
path_parts = [str (part ) for part in path .parts if part != "/" ]
223
220
return ("_" .join (path_parts ), env_hash , "local_component_registry" )
@@ -306,7 +303,7 @@ def components_module_name(self) -> str:
306
303
def components_path (self ) -> Path :
307
304
if not self .is_project :
308
305
raise DgError ("`components_path` is only available in a Dagster project context" )
309
- return self .get_path_for_module (self .components_module_name )
306
+ return self .get_path_for_local_module (self .components_module_name )
310
307
311
308
def get_component_instance_names (self ) -> Iterable [str ]:
312
309
return [str (instance_path .name ) for instance_path in self .components_path .iterdir ()]
@@ -327,7 +324,7 @@ def definitions_module_name(self) -> str:
327
324
328
325
@cached_property
329
326
def definitions_path (self ) -> Path :
330
- return self .get_path_for_module (self .definitions_module_name )
327
+ return self .get_path_for_local_module (self .definitions_module_name )
331
328
332
329
# ########################
333
330
# ##### COMPONENT LIBRARY METHODS
@@ -353,7 +350,7 @@ def default_components_library_module(self) -> str:
353
350
def default_components_library_path (self ) -> Path :
354
351
if not self .is_component_library :
355
352
raise DgError ("`components_lib_path` is only available in a component library context" )
356
- return self .get_path_for_module (self .default_components_library_module )
353
+ return self .get_path_for_local_module (self .default_components_library_module )
357
354
358
355
@cached_property
359
356
def _dagster_components_entry_points (self ) -> Mapping [str , str ]:
@@ -450,16 +447,20 @@ def environment_desc(self) -> str:
450
447
def pyproject_toml_path (self ) -> Path :
451
448
return self .root_path / "pyproject.toml"
452
449
453
- def get_path_for_module (self , module_name : str ) -> Path :
454
- with ensure_loadable_path (self .root_path ):
455
- parts = module_name .split ("." )
456
- for i in range (len (parts )):
457
- leading_module_name = "." .join (parts [: i + 1 ])
458
- if not is_package_installed (leading_module_name ):
459
- raise DgError (
460
- f"Module `{ leading_module_name } ` is not installed in the current environment."
461
- )
462
- return Path (get_path_for_module (module_name ))
450
+ def get_path_for_local_module (self , module_name : str ) -> Path :
451
+ if not self .is_project and not self .is_component_library :
452
+ raise DgError (
453
+ "`get_path_for_local_module` is only available in a project or component library context"
454
+ )
455
+ if not module_name .startswith (self .root_module_name ):
456
+ raise DgError (f"Module `{ module_name } ` is not part of the current project." )
457
+ relative_path = Path (* module_name .split ("." ))
458
+ if (self .root_path / relative_path ).exists ():
459
+ return self .root_path / relative_path
460
+ elif (self .root_path / relative_path ).with_suffix (".py" ).exists ():
461
+ return (self .root_path / relative_path ).with_suffix (".py" )
462
+ else :
463
+ raise DgError (f"Cannot find module `{ module_name } ` in the current project." )
463
464
464
465
465
466
# ########################
0 commit comments