Hello Marcus,
We are sorry for any frustration the handling of your contribution may have caused. When we make changes in the product, we often face the decision between a small fix and a larger fix that may introduce more structure. Usually we make these decisions very carefully, taking into account factors such as backwards compatiblity of our API, behavioral compatibility of non-API extension points, complexity of implementation, benefits of introducing new concepts, etc.
In the case we have discussed here, we are talking about extension points of the process engine that are not part of the public API. That means, these hooking points are not guaranteed to remain backwards compatible, are not as extensively tested, and we do not guarantee a particular, documented behavior. In this light, all solutions discussed in this ticket are generally valid. In order to decide for the best solution, we must take the factors mentioned above into account.
In the case of BPMN parse listeners, the principle we want to maintain is that the parse listener has the "last say" on a parsed element. That means, in the first step the Camunda parser does its thing and then a parse listener can modify the parsed element. The Camunda parser should then no longer overwrite any of that.
This was previously not the case for start events, but is now thanks to your pull request https://github.com/camunda/camunda-bpm-platform/pull/496. However, we decided against the bigger implementation provided in https://github.com/camunda/camunda-bpm-platform/pull/444, because it somewhat violates this principle. With the proposed change of PR 444, at the time of invoking the parse listener, the form handler would not yet be fully initialized (since #parseConfiguration is not yet called).
We see two use cases for parse listeners here:
- The use case discussed in this ticket: Replacing the form handler and then have the #parseConfiguration method be called by the parser.
- A parse listener that wants to modify a form handler defined in a BPMN model.
In our opinion, these two use cases collide. Use case 2 requires that the form handler is already fully initialized at the time when the parse listener is invoked, if the parse listener depends on the configuration in the BPMN. In consequence, we preferred to keep the existing behavior to avoid breaking such use cases and to stick with the above-mentioned principle.
All that said, we agree that form handling, as well as the parse listener and the parser itself have room for improvement. They are software components that have grown over the years, and being non-API code, have had not such a strong conceptual foundation as other parts of our software have. We are open for suggestions and want to encourage you to raise them. Even if we do not immediately go for a bigger change, it is important for us to be aware of your use cases. For example, if we gather evidence that this is relevant for more people, we would be more confident in making bigger changes, or could even consider creating an API feature with a more solid design and the corresponding guarantees.
I hope our position is understandable. Please let us know if you have further questions or remarks. Once more, we are sorry for any disappointments you have experienced.
Best regards,
Yana & Thorben
Hi Marcus,
Due to inactivity, I am closing the ticket and the respective PR.
Please feel free to reopen it in case of questions or you want to continue to work on.
Best regards,
Yana