-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
Autoload-based automatic registration of service dependencies #282
Comments
Solving your problem needs either ignoring files which use not autoloadable classes by configuration on your side or using static reflection and ignoring incomplete classes on Nette side. Registering class as a service because some service relies on it is unreliable. It could work, but only with non-abstract classes. Even requiring interface instead of its implementation would break that magic. Context-specific dependencies like ORM entities would probably pass automatic registration, but who wants entities registered as services? Btw, RobotLoader in SearchExtension is used just to find classes in a folder, not for actual autoloading. Problem is on php level - loading php files requires php to resolve references (e.g. extending phpunit test case), which triggers all autoloaders (composer in your case) and fails on missing class. That's why static reflection would be needed if solved on Nette side. |
The search extension does not really allow ignoring files:
Good point, but I would expect most of abstract classes/interfaces will have more than one implementation and then the
Right, but again I am interested in this specifically as an opposition to
Yes, I am aware, which is why I specifically tried to talk about registration, not loading. The extension I propose would just replace the in-advance file system search with looking at dependencies of explicitly registered services (transitively). And instead of file system path prefix, it would be limited by PHP namespace prefix.
I am not really sure if this is something Nette should be expected to solve. After all, having a Nette app and a library with optional dependencies in the same But either way, it is orthogonal to this proposal. Here I am mostly interested in getting rid of Another benefit to this would be that it would make the container smaller than the equivalent use of |
I will add to SearchExtension the option to exclude files as well, I thought it was there a long time ago.
That's not true. Composer's role and capability is not to provide a list of all classes in an application. |
Yes, but I would argue most apps will know the list of classes statically so getting a list of classes only matters in two cases (AFAICT):
|
And how are you going to find out that there is only one implementation and what is its class name without a list of all the classes? |
If I want to have some class usable for auto-wiring, it needs to be registered in the container, otherwise auto-wiring will throw a
MissingServiceException
– I assume this is to prevent accidentally trying to create a random object in the container, which could hide that a class actually needs the object instantiated in a different way.Currently, my options are either:
services
block, which is annoying, orsearch
extension.The latter is based on
RobotLoader
, which, in addition to repeating the work already done by Composer in most modern projects, can cause issues when some of the classes are not loadable.For instance, barista is a Nette-based tool and it currently uses the
search
extension to locate services in thesrc/
directory. But thesrc/
directory also contains some helper classes, including one that depends onPHPUnit
– even though the tool itself does not depend on PHPUnit so it might not be installed. When that is indeed the case, the search extension causes it to be loaded by callingclass_exists
, crashing the autoloader due to a missing PHPUnit class in the process.Since this app is not actually needed in the first place and is only attempted to be registered due to it being in the
src/
directory, I propose adding another extension for automatic registration of dependencies in addition tosearch
that, instead of a directory, would look at the dependencies of explicitly registered services and try to register them, if they are not registered already. The interface could look something like the following:Would that be possible to implement? My main worry would be that the container also supports runtime auto-wiring of classes that are not registered. Dependency trees of those would not be available to the compiler. But that does not seem to be the case if I am looking at
DI\Autowiring
correctly. And even if it were, we could just have ignored those.The text was updated successfully, but these errors were encountered: