-
-
Notifications
You must be signed in to change notification settings - Fork 312
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
Added configuration for default context #556
Conversation
Thanks a lot for the PR, will review this week. And possibly add it to the next release |
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.
Great feature!
Sorry for being picky in the review, let me know what do you think about it?
private function addContextSection(NodeBuilder $builder) | ||
{ | ||
$builder | ||
->arrayNode('context') |
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.
you should name this differently since we have both, "serialization" and "deserialization" context.
I suggest default_serialization_context
. What do you think?
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.
Are you going to implement it also for the default_deserialization_context
?
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.
I supposed to use the same context for both serialization and deserialization purposes. But the idea with separate contexts is, of course, more flexible. So yes, I think I'll split them.
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.
If you like you can also create default_context
, default_serialization_context
and default_serialization_context
. Where is possible to define only default_context
. Up to you
throw new InvalidArgumentException('Version must be a string.'); | ||
} | ||
|
||
if (!preg_match('#\d+\.\d+\.\d+#', $value)) { |
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.
I will avoid this extra regex... just becase version schemes change often.
In a project in the past I've worked, versions were just one digit.
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.
Under the hood comparison uses version_compare
php function. Ok, we can avoid this, but some version string could have no meaning.
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.
I saw, but I prefer to not force a versioning scheme by design. prefer to leave it, so if version_compare
changes behavior, do not have to update configurations
$builder | ||
->arrayNode('context') | ||
->addDefaultsIfNotSet() | ||
->children() |
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.
what about having also just id
, to specify just a service id as context factory? and when specified, the rest of options are just ignored
It will be super flexible.
I understand this is an extra requirement that can be implemented later, so this is just a suggestion...
if (!$rs = @mkdir($dir, 0777, true)) { | ||
throw new RuntimeException(sprintf('Could not create cache directory "%s".', $dir)); | ||
} | ||
if (!is_dir($dir) && !@mkdir($dir, 0777, true) && !is_dir($dir)) { |
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.
👍
Resources/config/services.xml
Outdated
@@ -185,10 +184,10 @@ | |||
<argument type="constant">NULL</argument> <!-- expression evaluator --> | |||
|
|||
<call method="setSerializationContextFactory"> | |||
<argument type="service" id="jms_serializer.serialization_context_factory" /> | |||
<argument type="service" id="jms_serializer.context_factory" /> |
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.
I will keep here two duplicate instances... having the same class, but two different services.
serialization_context_factory and deserialization_context_factory
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.
What for? This will save couple of bytes in ram.
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.
you will need it since you have serialization context and deserialization context (that might have different configurations), you will need two different instances
* | ||
* @param array $config Context configuration | ||
*/ | ||
public function __construct(array $config) |
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.
never liked "magic" arrays of configurations... to buggy and you always have to read the implementation to know what happens.
why not put into this class properties as groups
, version
, serialize_nulls
..., with getters and setters, and configure them via dependency injection component?
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.
Not a problem. I've got used to write some "magic" configuration arrays with reference to actual configuration. And hiding this array inside the constructor we guarantee that nothing could change actual values from outside.
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.
a factory is meant to be configured. what should not change is the context.
you can configure the service via JMSSerializerExtension
@edefimov What do you think about changes in edefimov#1 ? I have implemented:
|
Edefimov context config
ab8dadf
to
ddc7e85
Compare
|
Will have a closer look in the next days, but looks ready to be merged. Thanks! |
This PR adds functionality for setting up default context parameters for serializer via configuration:
Also this PR fixes deprecation warnings in tests.