-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
Conversation
702f741
to
2bad75c
Compare
2bad75c
to
81490b2
Compare
81490b2
to
5711354
Compare
5711354
to
808b10e
Compare
808b10e
to
4791772
Compare
ext/pdo/pdo_stmt.c
Outdated
zval_ptr_dtor(return_value); | ||
RETVAL_FALSE; |
There was a problem hiding this comment.
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.
4791772
to
83b8a92
Compare
There was a problem hiding this 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
ext/pdo/pdo_stmt.c
Outdated
} | ||
} else if (default_fetch_mode == PDO_FETCH_CLASS) { | ||
if (stmt->fetch.cls.ctor_args != NULL) { | ||
zend_hash_release(stmt->fetch.cls.ctor_args); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be:
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
There was a problem hiding this comment.
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
1a63e7b
to
1c52e37
Compare
There was a problem hiding this 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.
08342ff
to
441f9de
Compare
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: