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

Added configuration for default context #556

Merged
merged 8 commits into from
Mar 29, 2017

Conversation

edefimov
Copy link
Contributor

@edefimov edefimov commented Mar 21, 2017

This PR adds functionality for setting up default context parameters for serializer via configuration:

jms_serializer:
  default_context:
    serialization:
      serialize_null: false
      version: ~ 
      attributes: {}
      groups: ['Default']
    deserialization:
      serialize_null: false
      version: ~ 
      attributes: {}
      groups: ['Default']

Also this PR fixes deprecation warnings in tests.

@goetas
Copy link
Collaborator

goetas commented Mar 21, 2017

Thanks a lot for the PR, will review this week. And possibly add it to the next release

Copy link
Collaborator

@goetas goetas left a 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')
Copy link
Collaborator

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?

Copy link
Collaborator

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?

Copy link
Contributor Author

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.

Copy link
Collaborator

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)) {
Copy link
Collaborator

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.

Copy link
Contributor Author

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.

Copy link
Collaborator

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()
Copy link
Collaborator

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)) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

@@ -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" />
Copy link
Collaborator

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

Copy link
Contributor Author

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.

Copy link
Collaborator

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)
Copy link
Collaborator

@goetas goetas Mar 22, 2017

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?

Copy link
Contributor Author

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.

Copy link
Collaborator

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

@goetas
Copy link
Collaborator

goetas commented Mar 23, 2017

@edefimov What do you think about changes in edefimov#1 ?

I have implemented:

  • service reference by id,
  • context default are set by the serializer, not by the bundle logic.
  • removed multi argument constructor adding some setters on the factory

@goetas goetas added this to the v1.4 milestone Mar 24, 2017
@edefimov
Copy link
Contributor Author

@goetas , could you check this item, it seems to me, that in validation section the correct check is interface_exists, not the class_exists

@goetas
Copy link
Collaborator

goetas commented Mar 28, 2017

why ddc7e85 ? can not understand its propouse and touches many different things in the same comment
got it

@goetas
Copy link
Collaborator

goetas commented Mar 28, 2017

Will have a closer look in the next days, but looks ready to be merged. Thanks!

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