You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Sergey Bondarenko (JIRA)" <ji...@apache.org> on 2016/10/07 14:51:21 UTC

[jira] [Updated] (FELIX-5371) ComponentDescriptorIO.java relies on XML tags order

     [ https://issues.apache.org/jira/browse/FELIX-5371?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Bondarenko updated FELIX-5371:
-------------------------------------
    Description: 
The parser relies implicitly on an order of tags in a component descriptor XML.
https://github.com/apache/felix/blob/1efe76fff7f4dcc5da5aa450ee8e7a774c874256/tools/org.apache.felix.scr.generator/src/main/java/org/apache/felix/scrplugin/xml/ComponentDescriptorIO.java#L546
{code}
                } else if (localName.equals(IMPLEMENTATION)) {
                    ...
                    this.currentClass = new ClassDescription(cl, "classpath:" + className);
                    ...
                } else if (localName.equals(SERVICE)) {

                    this.currentService = new ServiceDescription(null);
                    this.currentClass.add(this.currentService);
{code}

This chunk of code expects <implementation> tag to happen before <service> tag. If the order is reversed, then parsing files with NullPointerException when trying to call "add" on an uninitialized variable.

  was:
The parser relies implicitly on an order of tags in a component descriptor XML.
https://github.com/apache/felix/blob/1efe76fff7f4dcc5da5aa450ee8e7a774c874256/tools/org.apache.felix.scr.generator/src/main/java/org/apache/felix/scrplugin/xml/ComponentDescriptorIO.java#L546

                } else if (localName.equals(IMPLEMENTATION)) {
                    ...
                    this.currentClass = new ClassDescription(cl, "classpath:" + className);
                    ...
                } else if (localName.equals(SERVICE)) {

                    this.currentService = new ServiceDescription(null);
                    this.currentClass.add(this.currentService);

This chunk of code expects <implementation> tag to happen before <service> tag. If the order is reversed, then parsing files with NullPointerException when trying to call "add" on an uninitialized variable.


> ComponentDescriptorIO.java relies on XML tags order
> ---------------------------------------------------
>
>                 Key: FELIX-5371
>                 URL: https://issues.apache.org/jira/browse/FELIX-5371
>             Project: Felix
>          Issue Type: Bug
>          Components: SCR Tooling
>    Affects Versions: scr generator 1.14.0
>            Reporter: Sergey Bondarenko
>            Priority: Critical
>
> The parser relies implicitly on an order of tags in a component descriptor XML.
> https://github.com/apache/felix/blob/1efe76fff7f4dcc5da5aa450ee8e7a774c874256/tools/org.apache.felix.scr.generator/src/main/java/org/apache/felix/scrplugin/xml/ComponentDescriptorIO.java#L546
> {code}
>                 } else if (localName.equals(IMPLEMENTATION)) {
>                     ...
>                     this.currentClass = new ClassDescription(cl, "classpath:" + className);
>                     ...
>                 } else if (localName.equals(SERVICE)) {
>                     this.currentService = new ServiceDescription(null);
>                     this.currentClass.add(this.currentService);
> {code}
> This chunk of code expects <implementation> tag to happen before <service> tag. If the order is reversed, then parsing files with NullPointerException when trying to call "add" on an uninitialized variable.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)