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 loading files section for plugins #10065

Merged
merged 1 commit into from
Nov 10, 2021

Conversation

nicolas-grekas
Copy link
Contributor

Trying to help move #10024 forward.

@nicolas-grekas nicolas-grekas changed the title Update xdebug-handler to latest Fix loading files section for plugins Aug 19, 2021
@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

See #10024 (comment) tho :)

But yeah, while the situation with updates isn't ideal and may lead to broken processes, it's maybe better than the current situation.. I am not sure really.

@nicolas-grekas
Copy link
Contributor Author

nicolas-grekas commented Aug 19, 2021

I read that, but I miss reasons why to understand this feeling you express in that comment :)

@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

Well.. there is #10024 (comment) showing an example scenario.

Another scenario that could break is like:

  • Package A has func.php autoloaded, declaring a bunch of functions.
  • It gets autoloaded, then updated in the same process to a new version which renamed to functions.php
  • when autoloading it again, functions.php is now included, and include_once won't save you there, and you get a fatal because of redefined function..

Plus the fact that these files were never loaded during composer runs, and now they would be, and that may trigger all sorts of unforeseen effects.

So I'm not 100% against, but it is not without risks, and I'm not sure it's worth it.

@jderusse
Copy link
Contributor

Another scenario that could break is like:

  • Package A has func.php autoloaded, declaring a bunch of functions.
  • It gets autoloaded, then updated in the same process to a new version which renamed to functions.php
  • when autoloading it again, functions.php is now included, and include_once won't save you there, and you get a fatal because of redefined function..

don't we have the same issue with class autoloader? when a plugin use a class that is updated?

@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

Not really because the class is already in memory and it won't be loaded again. Sure you may have problems if the code changed massively and is not compatible anymore, but that's something we really cannot fix. Plugins should thus ideally be rather self-contained as much as possible.

@jderusse
Copy link
Contributor

sounds like the same edge case.. one could changes code of a class, adds methods, changes interface signature...

If it worth it for classes, I believe it is the same for functions/polyfills

Plus the fact that these files were never loaded during composer runs, and now they would be, and that may trigger all sorts of unforeseen effects.

Indeed, this is the major risk of this change.

@nicolas-grekas
Copy link
Contributor Author

nicolas-grekas commented Aug 19, 2021

It gets autoloaded, then updated in the same process to a new version which renamed to functions.php

Maybe plugins shouldn't be allowed to have a "files" section, but their dependencies should?
The linked issue is quite annoying to say the least. It almost kills the concept of polyfills, in the generic sense.
This risk for updates is just a fatal error that can be worked around by restarting the process (maybe after deleting vendor/), isn't it? I feel like this is an acceptable tradeoff.

Indeed, this is the major risk of this change.

I don't think it is: those files are autoloaded for regular runs without such issues.

@Seldaek Seldaek added this to the 2.2 milestone Aug 19, 2021
@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

Ok, maybe we can try it out for 2.2, but I think it's too risky to smuggle this as a bugfix.

@nicolas-grekas nicolas-grekas changed the base branch from 1.10 to master August 19, 2021 13:40
@nicolas-grekas
Copy link
Contributor Author

Works for me, PR rebased.

@helhum
Copy link
Contributor

helhum commented Aug 20, 2021

What worries me more with such change aren't polyfill packages for which the files are included, but the fact that literally anything can be done in these inclusion files, as there is no specification for that. While one could of course include side effects in class files as well, doing so (IIRC) violates the PSR-4 specification.

But we indeed will not find out without trying how much will break. Hopefully we're lucky.

@nicolas-grekas
Copy link
Contributor Author

literally anything can be done in these inclusion files

This is true, but this is not specific to plugins. Regular auloaders already load those files. The plugin's autoloader has nothing specific to care about on this topic.

@helhum
Copy link
Contributor

helhum commented Aug 22, 2021

literally anything can be done in these inclusion files

This is true, but this is not specific to plugins. Regular auloaders already load those files. The plugin's autoloader has nothing specific to care about on this topic.

There is quite a difference between runtime inclusion of the autoload file and building a temporary autoloader on the fly during Composer build time.

One example Jordi gave before is renaming the inclusion file and declaring the same symbols during update.

In previous Composer versions composer updates failed likely, when a plug-in was updated with incompatible classes. Now the update process is much more likely to fail for any dependent package changing autoload includes.

Anyway. We'll see where this goes. Maybe it'll be fine

@mvorisek
Copy link
Contributor

mvorisek commented Sep 9, 2021

I belive this is a bug and files autoload should work everywhere. Nice example are php polyfill scripts or other global config/declarations.

So 🚀 from my side. If execution of plugins can be easily detected, please post the condition here so developers who did not want files autoload feature in their scripts can use it.

@Seldaek Seldaek merged commit 8553c6d into composer:main Nov 10, 2021
@Seldaek
Copy link
Member

Seldaek commented Nov 10, 2021

Thanks!

@barryvdh
Copy link
Contributor

Is this causing the issues in #10277 ?
I'm getting various autoload errors on Laravel and Magento2 projects.

@barryvdh
Copy link
Contributor

Magento2 uses the file autoloader for module registration, but that seems to rely on having the normal namespaced autoloading available.

@Seldaek
Copy link
Member

Seldaek commented Nov 12, 2021

@barryvdh yes most likely, please try with the latest snapshot it was just fixed in #10279

@barryvdh
Copy link
Contributor

barryvdh commented Nov 12, 2021

This fixed my issue with Laravel, but not with Magento 2 unfortunately.

$ composer --version
Composer version 2.2-dev (2.2-dev+0662fa2662b6bb7d683aaaf89e4ec3dfb5e833f6) 2021-11-12 08:44:34
$ composer update
PHP Fatal error:  Uncaught Error: Class 'Magento\Framework\Component\ComponentRegistrar' not found in /var/www/project/app/code/MageB2B/Staff/registration.php:9
Stack trace:
#0 /var/www/project/app/etc/NonComposerComponentRegistration.php(29): require_once()
#1 [internal function]: Magento\NonComposerComponentRegistration\{closure}()
#2 /var/www/project/app/etc/NonComposerComponentRegistration.php(31): array_map()
#3 /var/www/project/app/etc/NonComposerComponentRegistration.php(34): Magento\NonComposerComponentRegistration\{closure}()
#4 phar:///usr/local/bin/composer/src/Composer/Autoload/AutoloadGenerator.php(1419): require('/var/www/project...')
#5 phar:///usr/local/bin/composer/src/Composer/Plugin/PluginManager.php(206): Composer\Autoload\composerRequire()
#6 phar:///usr/local/bin/composer/src/Composer/Plugin/PluginManager.php(425): Composer\Plugin\PluginManager->registerPackage()
#7 phar:///usr/local/bin/composer/src/Composer/Plugin/PluginManager.php(87): Composer\Plugin\PluginManager->loadRepository()
#8 phar:///usr/local/bin in /var/www/project/app/code/MageB2B/Staff/registration.php on line 9

@Seldaek
Copy link
Member

Seldaek commented Nov 12, 2021

@barryvdh please report an issue with more details how one can reproduce this. I'm assuming it's an issue with a magento package/plugin not requiring all its dependencies though..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants