-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[RFC] Follow-up on doctrine/collections
Order enum
#11313
Comments
|
Anybody who was using
But the enum isn't working yet:
This can be overcome by using
|
@ThomasLandauer using @derrabus in doctrine/collections#389 (comment), I suggested we give the ORM a chance to upgrade, but I failed to make my point, so let me elaborate. What makes that upgrade so special that we should change the way we do things? I think the main difference with other PRs where we add an API and immediately deprecate the other API is that we expect the users of |
It's a bit unfortunate that the ORM uses constants from a different package in their public API. For ORM 2.19, we could add replacement constants to the ORM codebase. Supporting the |
Also, we have to be careful: Collections is not the only abstraction that we're dealing with here. When talking about the query builder, we're probably closer to the Persistence abstraction which also declares orderings as strings at the moment: It would be a bit weird if the query builder and the repository used different abstractions for ordering stuff. |
I wouldn't switch, I'd support both for a while to give users time to adjust their code. Should be easy enough to accept That said, the current situation leaves people with either a deprecation (which is very annoying in PhpUnit) or very ugly code in the form of something like this:
...where previously this much shorter and more readable version was usable:
Then either the deprecation should go (because you can't fix the deprecation in an acceptable way in 2.x) or the functions requiring a string should also accept the enum, as I just suggested. |
...thus forcing a double migration on all of us, migrating to |
I mean, we could un-deprecate the constants, which basically means that Collections 3 would ship two constants it has no use for. I could live with that. |
Preferably the constants would remain gone in 3 as you're otherwise going to be stuck with them sort of forever. I would just like a better migration path than we have now. For example (without really looking into the current code) we could consider introducing the This would interlock the major versions of Collections and ORM, but I doubt that's really a bad thing (ORM 3.x only works with major X or higher, ORM 2.x only works with major Y or lower). Alternatively I don't really see why we wouldn't support the enums in 2.x, it can't be that much work to support both...? |
I think, I can live with the maintenance burden of two unused constants, really.
Then don't use the constants for the query builder or metadata mapping. Use strings, as it is officially documented. The constants are part of the Collections package, meant for use with the The "migration path" that you're discussing is actually a workaround for people that have used those constants in an undocumented way, outside of their scope. By keeping the constants around, we would give people who want to remain on ORM 2 (for what reason ever) the possibility keep everything as it is. Why's that a problem? |
Fair enough, I forgot about that perspective and indeed this will likely not affect that many people 😄 |
@greg0ire sorry for taking long to respond, I was on vacations :) You can take ODM out of equation for two reasons:
So feel free to do whatever is best for ORM here :) |
To chime in here: while it might be outside their scope, it is not undocumented. See https://www.doctrine-project.org/projects/doctrine-orm/en/3.0/reference/working-with-associations.html#filtering-collections, where the constant is used in the official documentation. edit: after submitting this, I see it is actually a Criteria method, and not an ORM method... It is confusing, caused by all those untyped strings 😄 I would love to see either the enum to be supported, or an additional enum in the ORM namespace itself. |
Just my two cent, but I agree with this point. So far I solved the "deprecated" issue by using again the string value
|
Hello, not a contributor, just someone who uses the package here (combined with Symfony) :) I've just manually changed 200+ files from Criteria:: to Order::, because Criteria:: told me to do that, only to end up getting the errors as described above. This makes me a bit annoyed. After reading the replies I understand what the issue is (keeping things seperated). I'd like to know what the long term solution is?
I like using the const, as less strings is more better IMO, but Im not gonna do this job twice. Has any decision been made to just update the AddOrderBy method? Its one line extra ( Could someone please shed some light on this? |
You can do that.
I would advise against that.
That would be the usage as we've always documented it: https://www.doctrine-project.org/projects/doctrine-orm/en/3.2/reference/query-builder.html#high-level-api-methods As I've written earlier, you've used constants from the collections package outside of their scope.
I don't share that sentiment, tbh. But if you prefer constants, you can of course just create your own constants within your codebase and simply use those.
Not likely to happen.
… and a breaking change for anyone who overrides the query builder. |
Yes, we can do that, if that helps. Would it make sense to duplicate them on |
The things with consts is that it makes programming a bit more robust. You type At the very least I agree with the other replies that the deprecation notice could use a clearification, avoiding people to make the same mistake :) But in my case, I'll update it all to the strings (or my own consts), thanks for the reply :) |
… Criteria::orderBy method call. Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment)
… Criteria::orderBy method call. Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment)
… Criteria::orderBy method call. Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment)
… Criteria::orderBy method call, and remove usage of Criteria::ASC and Criteria::DESC where not recommended Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment)
… Criteria::orderBy method call, and remove usage of Criteria::ASC and Criteria::DESC where not recommended Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment)
… `Criteria::orderBy` method calls (#336) * Refactor the OrderByKeyToClassConstRector to use the new enum only in Criteria::orderBy method call, and remove usage of Criteria::ASC and Criteria::DESC where not recommended Relates to: - doctrine/collections#389; - doctrine/orm#11313 (comment) * Add check for first class callable in CriteriaOrderingRector * Refactor condition check in `CriteriaOrderingConstantsDeprecationRector` Simplify the type-checking condition by directly verifying if the criteria object type is a super type and ensuring it returns a positive result. * Replaced `toCodeString` with `toString` to get the class name
A year later and I fell into this trap again (#11779). Let's look at finally fixing it once and for all because PHPStan and other tools are causing more issues as they gain popularity.
This is a bad idea, because you'd also need to add them to DBAL and ODM. Collections already has its own. You'd have 4 constants for the same thing, and you'd be using them intermittently as ORM works with Collections half the time. We should strive to reduce confusion, not add to it. Instead I suggest we look at the fact that The Doctrine Project is the home to several PHP libraries primarily focused on database storage and object mapping.. Filtering and ordering data is a common thing amongst those focus points. Shouldn't we just add such common things to (and yes I'm aware that DBAL nor ODM currently require |
I saw lot of works to remove/deprecate as many as possible code from doctrine/common. I thought this lib was deprecated.
and doctrine/persistence I think, https://github.com/doctrine/persistence/blob/133bb2825572ee59e506c0bb7d6c9658506619a4/src/Persistence/ObjectRepository.php#L43 |
Indeed, I'm trying hard to retire So I would say the choice is between introducing a new package just for this, or duplicating enums on each package. I agree that would add more confusion. This is not very satisfying :( |
What's wrong with putting it in I see it more as a starting point for standardizing more Doctrine common elements, like exceptions (ORM contains 31 exception classes, 10 of which in the Exception namespace, the rest all over the place, and many of them non-ORM-specific). |
You end up installing multiple class you don't need, just to use an enum.
There is already a lot of doctrine package, and maintenance works, with a limited maintainers (and time).
DbalException are meant to be in the doctrine/dbal, I don't expect a package with a lot of exception/context I don't use.
Or just keep working with 'ASC' and 'DESC' string.
|
Not much. It's only "wrong" from a naming perspective. Just like when you have a @VincentLanglet yeah, maybe we should do a full 180 on this, right now it seems like a dead-end. Let us see what other maintainers think. |
Another solution could be to have a dependency from persistence to collections. Given the install statistics, I'd say it's quite probable that people installing persistence already install collections as well. |
I would honestly be surprised if the vendor folder in any of my projects has less than 75% unused files. It's kinda the point of libraries that they install files to cover all bases, including the ones your specific project doesn't.
I think the maintenance burden of a single static 2-value enum is overseeable if it fixes recurring discussions like the one we're having right here, and not having to maintain them in 4 different projects anymore.
Yet you probably install them all the time. PSR Container. PSR Events. PSR Cache. and so on. Symfony HTTP Client Contracts defines 8 exceptions so implementations don't have to. All these packages contain just a few common interfaces, types and/or exceptions. Because it Makes Sense to abstract and reuse.
But is
Fair enough, but the fact that such namespaces/libraries can end up becoming the garbage can doesn't mean it's a bad idea to have them. Just that it's a good idea to maintain them properly. And if 4 libraries share common elements then it makes sense to bring these common elements up to a library for which common is a logical name. |
It might be logical, but it's a bit inconsistent, isn't it? On the one hand, we have small libraries, with a hopefully clear focus, and then, there would be "bag-of-stuff-that-we-could-not-be-bothered-to-properly-store". Plus, some things would be common to some libraries, but some other things could be common to other libraries.
Any comment on this solution? |
From an architectural perspective it sounds to me like "So we have this code here that we should and want to re-use in 5 packages, but we don't want to create a real dependency, so we're going to introduce a false dependency"? I'm not really seeing the problem here, the only argument against given has been "we're trying to get rid of I've presented my case, I think at this point it's more up to the maintainer's committee. |
Addendum about why I keep harking about exceptions, in a project just using ORM: /vendor/doctrine$ find -name "*Exception.php"
./dbal/src/Schema/SchemaException.php
./dbal/src/ArrayParameters/Exception.php
./dbal/src/Platforms/Exception/PlatformException.php
./dbal/src/Driver/PDO/Exception.php
./dbal/src/Driver/SQLite3/Exception.php
./dbal/src/Driver/PgSQL/Exception.php
./dbal/src/Driver/AbstractException.php
./dbal/src/Driver/Exception.php
./dbal/src/ConnectionException.php
./dbal/src/Exception/LockWaitTimeoutException.php
./dbal/src/Exception/NonUniqueFieldNameException.php
./dbal/src/Exception/InvalidArgumentException.php
./dbal/src/Exception/ReadOnlyException.php
./dbal/src/Exception/ConstraintViolationException.php
./dbal/src/Exception/ForeignKeyConstraintViolationException.php
./dbal/src/Exception/ConnectionException.php
./dbal/src/Exception/TableNotFoundException.php
./dbal/src/Exception/DatabaseObjectNotFoundException.php
./dbal/src/Exception/TableExistsException.php
./dbal/src/Exception/DeadlockException.php
./dbal/src/Exception/DriverException.php
./dbal/src/Exception/MalformedDsnException.php
./dbal/src/Exception/SyntaxErrorException.php
./dbal/src/Exception/UniqueConstraintViolationException.php
./dbal/src/Exception/DatabaseObjectExistsException.php
./dbal/src/Exception/InvalidFieldNameException.php
./dbal/src/Exception/NotNullConstraintViolationException.php
./dbal/src/Exception/ServerException.php
./dbal/src/Exception/RetryableException.php
./dbal/src/Types/Exception/TypesException.php
./dbal/src/Types/ConversionException.php
./dbal/src/Cache/CacheException.php
./dbal/src/Exception.php
./dbal/src/SQL/Parser/Exception.php
./dbal/src/Query/QueryException.php
./instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php
./instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php
./orm/src/NoResultException.php
./orm/src/Tools/Exception/MissingColumnException.php
./orm/src/Tools/ToolsException.php
./orm/src/Tools/Console/EntityManagerProvider/UnknownManagerException.php
./orm/src/Exception/PersisterException.php
./orm/src/Exception/EntityIdentityCollisionException.php
./orm/src/Exception/RepositoryException.php
./orm/src/Exception/DuplicateFieldException.php
./orm/src/Exception/ConfigurationException.php
./orm/src/Exception/MultipleSelectorsFoundException.php
./orm/src/Exception/ORMException.php
./orm/src/Exception/SchemaToolException.php
./orm/src/Exception/ManagerException.php
./orm/src/Exception/NoMatchingPropertyException.php
./orm/src/NonUniqueResultException.php
./orm/src/Internal/Hydration/HydrationException.php
./orm/src/Internal/TopologicalSort/CycleDetectedException.php
./orm/src/EntityNotFoundException.php
./orm/src/PessimisticLockException.php
./orm/src/Mapping/MappingException.php
./orm/src/ORMInvalidArgumentException.php
./orm/src/Persisters/PersisterException.php
./orm/src/Cache/LockException.php
./orm/src/Cache/Exception/CacheException.php
./orm/src/Cache/CacheException.php
./orm/src/OptimisticLockException.php
./orm/src/TransactionRequiredException.php
./orm/src/UnexpectedResultException.php
./orm/src/Query/QueryException.php
./orm/src/Query/Filter/FilterException.php
./orm/src/Query/AST/ASTException.php
./data-fixtures/src/Exception/CircularReferenceException.php
./persistence/src/Persistence/Mapping/MappingException.php I've always taught people that an Exception class only makes sense if anyone's ever going to want to catch it, and details should go in the error message. By that perspective many of the classes above can be eliminated. Did you know |
One could argue that you can move the complexity of building a meaningful message in such a class. Sometimes, a single exception can have several constructors. So while it's indeed not necessary at all, it can make sense IMO. I did make a lot of changes to exceptions in the past, but I don't claim I did a perfect job, so if you feel more changes are needed, you are welcome to send a separate RFC, or a PR. |
I don't like this solution, but for the same reason I already don't like the fact of using If PHP had a native method signature
IMHO it would have more sens if the method returned a real Collection. In doctrine/dbal, I dunno if In doctrine/orm, I see usage in
Non of this code
So I feel like we try to fit square in circle... |
😉 |
If you suggest a |
In doctrine/collections#389, I introduced a new enum:
Order
What should we use it for inside the ORM?
OrderBy
attribute: this is a clear use case where we should switch to that enum, since it has to do with collectionsQueryBuilder::orderBy() / addOrderBy()
: this one is less clear to me… when you select several entities, you don't get a collection, but a list, right?Expr\OrderBy
: I'm not sure we should do it here either.@derrabus @SenseException any thoughts?
Cc @ThomasLandauer
The text was updated successfully, but these errors were encountered: