Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix reloader after PC update #229

Merged
merged 1 commit into from
Mar 17, 2024
Merged

Conversation

kaste
Copy link
Contributor

@kaste kaste commented Mar 7, 2024

Fixes #228

Since the Package Control update to v4 our reloader is broken. E.g. PackageManager()._is_dependency(pkg_name) throws as it's not there anymore. (Note the leading _ telling us to not use this method.)

For now, copy the reloader from AutomaticPackageReloaderGitSavvy as it seems "newer" and works at least locally.

@kaste
Copy link
Contributor Author

kaste commented Mar 7, 2024

Let's see if the tests pass as it works locally at least.

@kaste
Copy link
Contributor Author

kaste commented Mar 7, 2024

Okay, would have been nice but that breaks it for ST3. (macOS failures are unrelated.)

@kaste
Copy link
Contributor Author

kaste commented Mar 7, 2024

Well, the first commit here tried the reloader from AutomaticPackagerReloader which failed for ST3. The second commit tries the reloader from GitSavvy. This passes (except for MacOs as expected).

The GitSavvy reloader is simpler than the current (failing) version in this repo (I think), and like an order of magnitude simpler than the one on AutomaticPackageReloader. I'm not a fan of this getting more and more complicated as it is code basically nobody understands and can test thoroughly enough.

I will probably switch GitSavvy to the "new", unified and trivial simple procedure @\deathaxe proposed to me and elsewhere. (As soon as I don't need any features from the last reloader. Basically with the new approach we loose some hot reloading feature as the modules don't get replaced "in-line" anymore. This in contrast to just saving a plugin because Sublime will reload the module in-place.) However, @\deathaxe's approach wouldn't work here anyway as we need to target any package and reload it "at our will".

Since the Package Control update to v4 our reloader is broken.  E.g.
`PackageManager()._is_dependency(pkg_name)` throws as it's not there
anymore.  (Note the leading `_` telling us to not use this method.)

For now, copy the reloader from `GitSavvy` as it seems "newer" and works
at least locally.
@deathaxe deathaxe merged commit 22a4b32 into SublimeText:master Mar 17, 2024
11 of 15 checks passed
@deathaxe deathaxe mentioned this pull request Mar 17, 2024
deathaxe pushed a commit that referenced this pull request Mar 17, 2024
This commit removes `intercepting_imports`.

As the whole package is reloaded and all top-level plugins are known, removing
all sub-modules from sys.modules and re-importing the package and its top-level
plugins is all which is needed to trigger re-importing all sub-modules in
correct order.

That's basically the strategy used by various packages already.

The dummy package installation/removal is still required for ST to pickup new
command and event listener classes.

Solved issue:

GitSavvy's reloader from PR #229 destroys a reloaded package's namespace 
module by clearing its __path__ or __spec__.module_search_locations.

As a result it was no longer possible to import modules from sub directories, 
which caused test modules not to be importable any more.

Thus "reload_package_on_testing": true caused all test cases to be vanished.
@kaste kaste deleted the fix-reloader branch April 16, 2024 18:01
kaste added a commit to SublimeLinter/SublimeLinter that referenced this pull request May 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AttributeError: 'PackageManager' object has no attribute '_is_dependency'
2 participants