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

ext/pdo: Refactor PDO::FETCH_CLASS to not rely on a FCI and use a HashTable for ctor_arg #17427

Merged
merged 2 commits into from
Jan 30, 2025

Conversation

Girgias
Copy link
Member

@Girgias Girgias commented Jan 10, 2025

Commits should be reviewed in order.

This removes the last usage of zend_fcall_info_args_ex() and basically supersedes #9725, which would allow merging #9723.

This also aligns the behaviour of the ctor_arguments to be have like CUFA.

Some follow-up ideas:

  • Deprecate the automatic wrapping of by-ref arguments for the constructor
  • Figure out how to remove the various dummy fields to reduce the size of the struct

@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch 3 times, most recently from 702f741 to 2bad75c Compare January 15, 2025 19:01
@Girgias Girgias marked this pull request as ready for review January 15, 2025 20:00
@Girgias Girgias requested a review from nielsdos January 15, 2025 20:00
@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 2bad75c to 81490b2 Compare January 16, 2025 12:46
@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 81490b2 to 5711354 Compare January 17, 2025 18:44
@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 5711354 to 808b10e Compare January 17, 2025 18:45
@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 808b10e to 4791772 Compare January 21, 2025 05:24
zval_ptr_dtor(return_value);
RETVAL_FALSE;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay let's just make it consistently not use it then as it's a big refactor anyway it seems like a good opportunity to do so.

Copy link
Member

@nielsdos nielsdos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor comments left, including a request to update UPGRADING

}
} else if (default_fetch_mode == PDO_FETCH_CLASS) {
if (stmt->fetch.cls.ctor_args != NULL) {
zend_hash_release(stmt->fetch.cls.ctor_args);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be:

Suggested change
zend_hash_release(stmt->fetch.cls.ctor_args);
zend_array_release(stmt->fetch.cls.ctor_args);

as they're real arrays, not storing any persistent or non-zval stuff

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also: can ctor_args be cyclic? If so, then this is not enough

@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 1a63e7b to 1c52e37 Compare January 27, 2025 00:32
Copy link
Member

@nielsdos nielsdos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost there

…hTable for ctor_arg

To call the constructor we now only store the CE and a HashTable for the arguments.
This reduces the size of the _pdo_stmt_t struct from 320 bytes to 232 bytes.
Moreover, this now means that the constructor argument array follows the usual CUFA semantics.
This change is a BC break, as string keys now act like named arguments.
Moreover, the automatic wrapping of by-value arguments for by-ref parameters has been dropped, and the usual E_WARNING is now emitted in those cases.

The do_fetch() is heavily refactored to simplify the execution flow, which also makes it easier to understand.
Additionally we add a new bitflag in_fetch to prevent modification of the fetch flags by userland when PDO is fetching from the DB.
@Girgias Girgias force-pushed the pdo-stmt-remove-fci-usage branch from 08342ff to 441f9de Compare January 30, 2025 18:48
@Girgias Girgias merged commit 3ff7758 into php:master Jan 30, 2025
8 of 9 checks passed
@Girgias Girgias deleted the pdo-stmt-remove-fci-usage branch January 30, 2025 18:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants